-- MariaDB dump 10.19  Distrib 10.6.16-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: cach0166_wp840
-- ------------------------------------------------------
-- Server version	10.6.16-MariaDB

/*!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 */;

--
-- Table structure for table `wpj7_EWD_OTP_Customers`
--

DROP TABLE IF EXISTS `wpj7_EWD_OTP_Customers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_EWD_OTP_Customers` (
  `Customer_ID` mediumint(9) NOT NULL AUTO_INCREMENT,
  `Customer_Number` text NOT NULL,
  `Customer_Name` text NOT NULL,
  `Sales_Rep_ID` mediumint(9) NOT NULL DEFAULT 0,
  `Customer_WP_ID` mediumint(9) NOT NULL DEFAULT 0,
  `Customer_FEUP_ID` mediumint(9) NOT NULL DEFAULT 0,
  `Customer_Email` text NOT NULL,
  `Customer_Created` datetime DEFAULT '1999-01-01 00:00:00',
  UNIQUE KEY `id` (`Customer_ID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_EWD_OTP_Customers`
--

LOCK TABLES `wpj7_EWD_OTP_Customers` WRITE;
/*!40000 ALTER TABLE `wpj7_EWD_OTP_Customers` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpj7_EWD_OTP_Customers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_EWD_OTP_Fields_Meta`
--

DROP TABLE IF EXISTS `wpj7_EWD_OTP_Fields_Meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_EWD_OTP_Fields_Meta` (
  `Meta_ID` mediumint(9) NOT NULL AUTO_INCREMENT,
  `Field_ID` mediumint(9) DEFAULT 0,
  `Order_ID` mediumint(9) DEFAULT 0,
  `Customer_ID` mediumint(9) DEFAULT 0,
  `Sales_Rep_ID` mediumint(9) DEFAULT 0,
  `Meta_Value` text NOT NULL,
  UNIQUE KEY `id` (`Meta_ID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_EWD_OTP_Fields_Meta`
--

LOCK TABLES `wpj7_EWD_OTP_Fields_Meta` WRITE;
/*!40000 ALTER TABLE `wpj7_EWD_OTP_Fields_Meta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpj7_EWD_OTP_Fields_Meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_EWD_OTP_Order_Statuses`
--

DROP TABLE IF EXISTS `wpj7_EWD_OTP_Order_Statuses`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_EWD_OTP_Order_Statuses` (
  `Order_Status_ID` mediumint(9) NOT NULL AUTO_INCREMENT,
  `Order_ID` mediumint(9) NOT NULL DEFAULT 0,
  `Order_Status` text NOT NULL,
  `Order_Location` text NOT NULL,
  `Order_Internal_Status` text NOT NULL,
  `Order_Status_Created` datetime DEFAULT '1999-01-01 00:00:00',
  UNIQUE KEY `id` (`Order_Status_ID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_EWD_OTP_Order_Statuses`
--

LOCK TABLES `wpj7_EWD_OTP_Order_Statuses` WRITE;
/*!40000 ALTER TABLE `wpj7_EWD_OTP_Order_Statuses` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpj7_EWD_OTP_Order_Statuses` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_EWD_OTP_Orders`
--

DROP TABLE IF EXISTS `wpj7_EWD_OTP_Orders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_EWD_OTP_Orders` (
  `Order_ID` mediumint(9) NOT NULL AUTO_INCREMENT,
  `Order_Name` text NOT NULL,
  `Order_Number` text NOT NULL,
  `Order_Status` text NOT NULL,
  `Order_External_Status` text NOT NULL,
  `Order_Location` text NOT NULL,
  `Order_Notes_Public` text NOT NULL,
  `Order_Notes_Private` text NOT NULL,
  `Order_Customer_Notes` text NOT NULL,
  `Order_Email` text NOT NULL,
  `Sales_Rep_ID` mediumint(9) NOT NULL DEFAULT 0,
  `Customer_ID` mediumint(9) NOT NULL DEFAULT 0,
  `WooCommerce_ID` mediumint(9) NOT NULL DEFAULT 0,
  `Zendesk_ID` mediumint(9) NOT NULL DEFAULT 0,
  `Order_Status_Updated` datetime DEFAULT '1999-01-01 00:00:00',
  `Order_Display` text NOT NULL,
  `Order_Payment_Price` text NOT NULL,
  `Order_Payment_Completed` text NOT NULL,
  `Order_PayPal_Receipt_Number` text NOT NULL,
  `Order_View_Count` mediumint(9) NOT NULL DEFAULT 0,
  `Order_Tracking_Link_Clicked` text NOT NULL,
  `Order_Tracking_Link_Code` text NOT NULL,
  UNIQUE KEY `id` (`Order_ID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_EWD_OTP_Orders`
--

LOCK TABLES `wpj7_EWD_OTP_Orders` WRITE;
/*!40000 ALTER TABLE `wpj7_EWD_OTP_Orders` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpj7_EWD_OTP_Orders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_EWD_OTP_Sales_Reps`
--

DROP TABLE IF EXISTS `wpj7_EWD_OTP_Sales_Reps`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_EWD_OTP_Sales_Reps` (
  `Sales_Rep_ID` mediumint(9) NOT NULL AUTO_INCREMENT,
  `Sales_Rep_Number` text NOT NULL,
  `Sales_Rep_First_Name` text NOT NULL,
  `Sales_Rep_Last_Name` text NOT NULL,
  `Sales_Rep_Email` text NOT NULL,
  `Sales_Rep_WP_ID` mediumint(9) NOT NULL DEFAULT 0,
  `Sales_Rep_Created` datetime DEFAULT '1999-01-01 00:00:00',
  UNIQUE KEY `id` (`Sales_Rep_ID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_EWD_OTP_Sales_Reps`
--

LOCK TABLES `wpj7_EWD_OTP_Sales_Reps` WRITE;
/*!40000 ALTER TABLE `wpj7_EWD_OTP_Sales_Reps` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpj7_EWD_OTP_Sales_Reps` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_actionscheduler_actions`
--

DROP TABLE IF EXISTS `wpj7_actionscheduler_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_actionscheduler_actions` (
  `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `hook` varchar(191) NOT NULL,
  `status` varchar(20) NOT NULL,
  `scheduled_date_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  `scheduled_date_local` datetime DEFAULT '0000-00-00 00:00:00',
  `args` varchar(191) DEFAULT NULL,
  `schedule` longtext DEFAULT NULL,
  `group_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `attempts` int(11) NOT NULL DEFAULT 0,
  `last_attempt_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  `last_attempt_local` datetime DEFAULT '0000-00-00 00:00:00',
  `claim_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `extended_args` varchar(8000) DEFAULT NULL,
  `priority` tinyint(3) unsigned NOT NULL DEFAULT 10,
  PRIMARY KEY (`action_id`),
  KEY `hook` (`hook`),
  KEY `status` (`status`),
  KEY `scheduled_date_gmt` (`scheduled_date_gmt`),
  KEY `args` (`args`),
  KEY `group_id` (`group_id`),
  KEY `last_attempt_gmt` (`last_attempt_gmt`),
  KEY `claim_id_status_scheduled_date_gmt` (`claim_id`,`status`,`scheduled_date_gmt`)
) ENGINE=InnoDB AUTO_INCREMENT=75359 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_actionscheduler_actions`
--

LOCK TABLES `wpj7_actionscheduler_actions` WRITE;
/*!40000 ALTER TABLE `wpj7_actionscheduler_actions` DISABLE KEYS */;
INSERT INTO `wpj7_actionscheduler_actions` VALUES (95,'woocommerce_run_on_woocommerce_admin_updated','failed','2022-12-07 22:40:07','2022-12-07 16:40:07','[\"Automattic\\\\WooCommerce\\\\Admin\\\\RemoteInboxNotifications\\\\RemoteInboxNotificationsEngine\",\"run_on_woocommerce_admin_updated\"]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1670452807;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1670452807;}',6,1,'2022-12-07 22:40:19','2022-12-07 16:40:19',0,NULL,10),(136,'woocommerce_run_on_woocommerce_admin_updated','failed','2022-12-14 18:33:01','2022-12-14 12:33:01','[\"Automattic\\\\WooCommerce\\\\Admin\\\\RemoteInboxNotifications\\\\RemoteInboxNotificationsEngine\",\"run_on_woocommerce_admin_updated\"]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1671042781;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1671042781;}',6,1,'2022-12-14 18:33:30','2022-12-14 12:33:30',0,NULL,10),(13919,'woocommerce_run_on_woocommerce_admin_updated','failed','2023-02-19 19:39:36','2023-02-19 13:39:36','[\"Automattic\\\\WooCommerce\\\\Admin\\\\RemoteInboxNotifications\\\\RemoteInboxNotificationsEngine\",\"run_on_woocommerce_admin_updated\"]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1676835576;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1676835576;}',6,1,'2023-02-19 19:39:36','2023-02-19 13:39:36',0,NULL,10),(14003,'woocommerce_run_on_woocommerce_admin_updated','failed','2023-03-01 16:09:58','2023-03-01 10:09:58','[\"Automattic\\\\WooCommerce\\\\Admin\\\\RemoteInboxNotifications\\\\RemoteInboxNotificationsEngine\",\"run_on_woocommerce_admin_updated\"]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1677686998;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1677686998;}',6,1,'2023-03-01 16:09:58','2023-03-01 10:09:58',0,NULL,10),(15473,'woocommerce_run_on_woocommerce_admin_updated','failed','2023-03-14 16:56:48','2023-03-14 11:56:48','[\"Automattic\\\\WooCommerce\\\\Admin\\\\RemoteInboxNotifications\\\\RemoteInboxNotificationsEngine\",\"run_on_woocommerce_admin_updated\"]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1678813008;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1678813008;}',6,1,'2023-03-14 16:57:23','2023-03-14 11:57:23',0,NULL,10),(15723,'woocommerce_run_on_woocommerce_admin_updated','failed','2023-03-25 19:14:20','2023-03-25 14:14:20','[\"Automattic\\\\WooCommerce\\\\Admin\\\\RemoteInboxNotifications\\\\RemoteInboxNotificationsEngine\",\"run_on_woocommerce_admin_updated\"]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1679771660;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1679771660;}',6,1,'2023-03-25 19:14:24','2023-03-25 14:14:24',0,NULL,10),(16289,'woocommerce_run_on_woocommerce_admin_updated','failed','2023-04-14 17:20:54','2023-04-14 12:20:54','[\"Automattic\\\\WooCommerce\\\\Admin\\\\RemoteInboxNotifications\\\\RemoteInboxNotificationsEngine\",\"run_on_woocommerce_admin_updated\"]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1681492854;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1681492854;}',6,1,'2023-04-14 17:20:55','2023-04-14 12:20:55',0,NULL,10),(16358,'woocommerce_run_on_woocommerce_admin_updated','failed','2023-04-27 14:58:33','2023-04-27 09:58:33','[\"Automattic\\\\WooCommerce\\\\Admin\\\\RemoteInboxNotifications\\\\RemoteInboxNotificationsEngine\",\"run_on_woocommerce_admin_updated\"]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1682607513;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1682607513;}',6,1,'2023-04-27 15:05:11','2023-04-27 10:05:11',0,NULL,10),(16426,'woocommerce_run_on_woocommerce_admin_updated','failed','2023-05-10 15:10:56','2023-05-10 10:10:56','[\"Automattic\\\\WooCommerce\\\\Admin\\\\RemoteInboxNotifications\\\\RemoteInboxNotificationsEngine\",\"run_on_woocommerce_admin_updated\"]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1683731456;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1683731456;}',6,1,'2023-05-10 15:18:59','2023-05-10 10:18:59',0,NULL,10),(17039,'woocommerce_run_on_woocommerce_admin_updated','failed','2023-05-30 15:46:27','2023-05-30 10:46:27','[\"Automattic\\\\WooCommerce\\\\Admin\\\\RemoteInboxNotifications\\\\RemoteInboxNotificationsEngine\",\"run_on_woocommerce_admin_updated\"]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1685461587;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1685461587;}',6,1,'2023-05-30 15:46:28','2023-05-30 10:46:28',0,NULL,10),(17096,'woocommerce_run_on_woocommerce_admin_updated','failed','2023-06-01 15:58:30','2023-06-01 10:58:30','[\"Automattic\\\\WooCommerce\\\\Admin\\\\RemoteInboxNotifications\\\\RemoteInboxNotificationsEngine\",\"run_on_woocommerce_admin_updated\"]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1685635110;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1685635110;}',6,1,'2023-06-01 16:06:57','2023-06-01 11:06:57',0,NULL,10),(29969,'action_scheduler/migration_hook','failed','2023-07-05 18:14:19','2023-07-05 13:14:19','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1688580859;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1688580859;}',1,1,'2023-07-05 18:14:25','2023-07-05 13:14:25',0,NULL,10),(65273,'action_scheduler/migration_hook','failed','2023-11-11 21:10:51','2023-11-11 22:10:51','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1699737051;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1699737051;}',1,1,'2023-11-11 21:11:08','2023-11-11 22:11:08',0,NULL,10),(65275,'ast_insert_shipping_provider','failed','2023-11-12 00:38:13','2023-11-12 01:38:13','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1699749493;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1699749493;}',10,1,'2023-11-12 00:38:14','2023-11-12 01:38:14',0,NULL,10),(65350,'action_scheduler/migration_hook','failed','2023-11-18 22:12:59','2023-11-18 23:12:59','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1700345579;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1700345579;}',1,1,'2023-11-18 22:13:59','2023-11-18 23:13:59',0,NULL,10),(75288,'cartflows_ca_send_report_summary_email','complete','2023-12-25 16:12:49','2023-12-25 17:12:49','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1703520769;s:18:\"\0*\0first_timestamp\";i:1702303200;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1703520769;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',10,1,'2023-12-25 16:50:30','2023-12-25 17:50:30',0,NULL,10),(75293,'parcelpanel_update_courier_list','failed','2024-01-19 15:22:53','2024-01-19 16:22:53','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1705677773;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1705677773;}',7,1,'2024-01-19 16:43:35','2024-01-19 17:43:35',0,NULL,10),(75294,'woocommerce_cleanup_draft_orders','complete','2023-12-22 10:06:32','2023-12-22 11:06:32','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1703239592;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1703239592;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2023-12-22 10:06:41','2023-12-22 11:06:41',0,NULL,10),(75295,'woocommerce_cleanup_draft_orders','complete','2023-12-23 10:06:41','2023-12-23 11:06:41','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1703326001;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1703326001;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2023-12-23 10:06:41','2023-12-23 11:06:41',0,NULL,10),(75296,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-12-23 03:31:09','2023-12-23 04:31:09','[10207,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1703302269;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1703302269;}',2,1,'2023-12-23 03:31:11','2023-12-23 04:31:11',0,NULL,10),(75297,'woocommerce_deliver_webhook_async','complete','2023-12-23 03:31:08','2023-12-23 04:31:08','{\"webhook_id\":25,\"arg\":10207}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1703302268;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1703302268;}',8,1,'2023-12-23 03:31:11','2023-12-23 04:31:11',0,NULL,10),(75298,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-12-23 03:31:23','2023-12-23 04:31:23','[10207,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1703302283;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1703302283;}',2,1,'2023-12-23 03:33:45','2023-12-23 04:33:45',0,NULL,10),(75299,'rocket_preload_job_load_initial_sitemap','failed','2023-12-23 04:06:06','2023-12-23 04:06:06','[]','O:28:\"ActionScheduler_NullSchedule\":0:{}',11,1,'2023-12-23 04:06:07','2023-12-23 05:06:07',0,NULL,10),(75300,'rocket_preload_job_check_finished','complete','2023-12-23 04:07:11','2023-12-23 05:07:11','[1703304371]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1703304431;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1703304431;}',11,1,'2023-12-23 04:07:42','2023-12-23 05:07:42',0,NULL,10),(75301,'action_scheduler/migration_hook','complete','2023-12-23 04:07:35','2023-12-23 05:07:35','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1703304455;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1703304455;}',1,1,'2023-12-23 04:07:42','2023-12-23 05:07:42',0,NULL,10),(75302,'woocommerce_cleanup_draft_orders','complete','2023-12-24 10:06:41','2023-12-24 11:06:41','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1703412401;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1703412401;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2023-12-24 10:07:30','2023-12-24 11:07:30',0,NULL,10),(75303,'rocket_preload_job_check_finished','complete','2023-12-23 16:41:49','2023-12-23 17:41:49','[1703349649]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1703349709;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1703349709;}',11,1,'2023-12-23 16:43:19','2023-12-23 17:43:19',0,NULL,10),(75304,'rocket_preload_job_check_finished','complete','2023-12-23 18:48:02','2023-12-23 19:48:02','[1703357222]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1703357282;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1703357282;}',11,1,'2023-12-23 18:48:07','2023-12-23 19:48:07',0,NULL,10),(75305,'rocket_preload_job_check_finished','complete','2023-12-23 18:49:14','2023-12-23 19:49:14','[1703357294]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1703357354;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1703357354;}',11,1,'2023-12-23 18:49:21','2023-12-23 19:49:21',0,NULL,10),(75306,'rocket_preload_job_check_finished','complete','2023-12-23 18:51:07','2023-12-23 19:51:07','[1703357407]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1703357467;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1703357467;}',11,1,'2023-12-23 18:52:08','2023-12-23 19:52:08',0,NULL,10),(75307,'action_scheduler/migration_hook','complete','2023-12-23 18:52:04','2023-12-23 19:52:04','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1703357524;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1703357524;}',1,1,'2023-12-23 18:52:08','2023-12-23 19:52:08',0,NULL,10),(75308,'action_scheduler/migration_hook','failed','2023-12-23 18:53:08','2023-12-23 19:53:08','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1703357588;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1703357588;}',1,1,'2023-12-23 18:53:19','2023-12-23 19:53:19',0,NULL,10),(75309,'rocket_preload_job_check_finished','complete','2023-12-23 18:54:02','2023-12-23 19:54:02','[1703357582]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1703357642;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1703357642;}',11,1,'2023-12-23 18:54:20','2023-12-23 19:54:20',0,NULL,10),(75310,'woocommerce_deliver_webhook_async','complete','2023-12-23 18:53:02','2023-12-23 19:53:02','{\"webhook_id\":25,\"arg\":10212}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1703357582;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1703357582;}',8,1,'2023-12-23 18:53:19','2023-12-23 19:53:19',0,NULL,10),(75311,'rocket_preload_job_check_finished','complete','2023-12-23 18:57:56','2023-12-23 19:57:56','[1703357816]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1703357876;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1703357876;}',11,1,'2023-12-23 19:21:27','2023-12-23 20:21:27',0,NULL,10),(75312,'woocommerce_cleanup_draft_orders','complete','2023-12-25 10:07:30','2023-12-25 11:07:30','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1703498850;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1703498850;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2023-12-25 13:26:15','2023-12-25 14:26:15',0,NULL,10),(75313,'woocommerce_cleanup_draft_orders','complete','2023-12-26 13:26:15','2023-12-26 14:26:15','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1703597175;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1703597175;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2023-12-26 15:22:25','2023-12-26 16:22:25',0,NULL,10),(75314,'cartflows_ca_send_report_summary_email','complete','2024-01-01 16:50:30','2024-01-01 17:50:30','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1704127830;s:18:\"\0*\0first_timestamp\";i:1702303200;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1704127830;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',10,1,'2024-01-01 16:51:32','2024-01-01 17:51:32',0,NULL,10),(75315,'woocommerce_cleanup_draft_orders','complete','2023-12-27 15:22:25','2023-12-27 16:22:25','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1703690545;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1703690545;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2023-12-27 16:53:40','2023-12-27 17:53:40',0,NULL,10),(75316,'woocommerce_cleanup_draft_orders','complete','2023-12-28 16:53:40','2023-12-28 17:53:40','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1703782420;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1703782420;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2023-12-28 16:57:05','2023-12-28 17:57:05',0,NULL,10),(75317,'woocommerce_cleanup_draft_orders','complete','2023-12-29 16:57:05','2023-12-29 17:57:05','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1703869025;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1703869025;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2023-12-29 16:57:47','2023-12-29 17:57:47',0,NULL,10),(75318,'woocommerce_cleanup_draft_orders','complete','2023-12-30 16:57:47','2023-12-30 17:57:47','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1703955467;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1703955467;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2023-12-31 01:17:32','2023-12-31 02:17:32',0,NULL,10),(75319,'woocommerce_cleanup_draft_orders','complete','2024-01-01 01:17:32','2024-01-01 02:17:32','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1704071852;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1704071852;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2024-01-01 04:53:26','2024-01-01 05:53:26',0,NULL,10),(75320,'woocommerce_cleanup_draft_orders','complete','2024-01-02 04:53:26','2024-01-02 05:53:26','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1704171206;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1704171206;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2024-01-02 05:24:27','2024-01-02 06:24:27',0,NULL,10),(75321,'cartflows_ca_send_report_summary_email','complete','2024-01-08 16:51:32','2024-01-08 17:51:32','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1704732692;s:18:\"\0*\0first_timestamp\";i:1702303200;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1704732692;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',10,1,'2024-01-09 09:27:56','2024-01-09 10:27:56',0,NULL,10),(75322,'woocommerce_cleanup_draft_orders','complete','2024-01-03 05:24:27','2024-01-03 06:24:27','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1704259467;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1704259467;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2024-01-03 08:41:38','2024-01-03 09:41:38',0,NULL,10),(75323,'rocket_preload_job_check_finished','complete','2024-01-02 22:29:19','2024-01-02 23:29:19','[1704234499]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1704234559;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1704234559;}',11,1,'2024-01-02 22:31:05','2024-01-02 23:31:05',0,NULL,10),(75324,'woocommerce_deliver_webhook_async','complete','2024-01-02 22:28:22','2024-01-02 23:28:22','{\"webhook_id\":25,\"arg\":10215}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1704234502;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1704234502;}',8,1,'2024-01-02 22:31:05','2024-01-02 23:31:05',0,NULL,10),(75325,'action_scheduler/migration_hook','complete','2024-01-03 00:17:45','2024-01-03 01:17:45','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1704241065;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1704241065;}',1,1,'2024-01-03 00:23:29','2024-01-03 01:23:29',0,NULL,10),(75326,'action_scheduler/migration_hook','canceled','2024-01-03 00:17:45','2024-01-03 01:17:45','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1704241065;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1704241065;}',1,0,'2024-01-03 00:23:29','2024-01-03 01:23:29',0,NULL,10),(75327,'rocket_preload_job_check_finished','complete','2024-01-03 00:18:03','2024-01-03 01:18:03','[1704241023]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1704241083;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1704241083;}',11,1,'2024-01-03 00:23:29','2024-01-03 01:23:29',0,NULL,10),(75328,'woocommerce_cleanup_draft_orders','complete','2024-01-04 08:41:38','2024-01-04 09:41:38','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1704357698;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1704357698;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2024-01-04 10:06:57','2024-01-04 11:06:57',0,NULL,10),(75329,'woocommerce_cleanup_draft_orders','complete','2024-01-05 10:06:57','2024-01-05 11:06:57','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1704449217;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1704449217;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2024-01-05 13:28:26','2024-01-05 14:28:26',0,NULL,10),(75330,'woocommerce_cleanup_draft_orders','complete','2024-01-06 13:28:26','2024-01-06 14:28:26','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1704547706;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1704547706;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2024-01-06 13:44:09','2024-01-06 14:44:09',0,NULL,10),(75331,'rocket_preload_job_check_finished','complete','2024-01-05 15:26:59','2024-01-05 16:26:59','[1704468359]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1704468419;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1704468419;}',11,1,'2024-01-05 15:27:01','2024-01-05 16:27:01',0,NULL,10),(75332,'rocket_preload_job_check_finished','complete','2024-01-05 15:36:14','2024-01-05 16:36:14','[1704468914]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1704468974;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1704468974;}',11,1,'2024-01-05 15:40:59','2024-01-05 16:40:59',0,NULL,10),(75333,'rocket_preload_job_check_finished','complete','2024-01-06 10:04:38','2024-01-06 11:04:38','[1704535418]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1704535478;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1704535478;}',11,1,'2024-01-06 10:28:08','2024-01-06 11:28:08',0,NULL,10),(75334,'woocommerce_cleanup_draft_orders','complete','2024-01-07 13:44:09','2024-01-07 14:44:09','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1704635049;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1704635049;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2024-01-07 15:22:04','2024-01-07 16:22:04',0,NULL,10),(75335,'woocommerce_cleanup_draft_orders','complete','2024-01-08 15:22:04','2024-01-08 16:22:04','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1704727324;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1704727324;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2024-01-08 15:26:55','2024-01-08 16:26:55',0,NULL,10),(75336,'action_scheduler/migration_hook','complete','2024-01-07 22:31:35','2024-01-07 23:31:35','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1704666695;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1704666695;}',1,1,'2024-01-07 22:31:51','2024-01-07 23:31:51',0,NULL,10),(75337,'rocket_preload_job_check_finished','complete','2024-01-07 22:32:42','2024-01-07 23:32:42','[1704666702]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1704666762;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1704666762;}',11,1,'2024-01-07 22:32:54','2024-01-07 23:32:54',0,NULL,10),(75338,'action_scheduler/migration_hook','complete','2024-01-07 22:35:31','2024-01-07 23:35:31','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1704666931;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1704666931;}',1,1,'2024-01-07 22:35:55','2024-01-07 23:35:55',0,NULL,10),(75339,'rocket_preload_job_check_finished','complete','2024-01-07 22:35:57','2024-01-07 23:35:57','[1704666897]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1704666957;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1704666957;}',11,1,'2024-01-07 22:36:57','2024-01-07 23:36:57',0,NULL,10),(75340,'woocommerce_cleanup_draft_orders','complete','2024-01-09 15:26:55','2024-01-09 16:26:55','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1704814015;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1704814015;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2024-01-09 17:36:02','2024-01-09 18:36:02',0,NULL,10),(75341,'cartflows_ca_send_report_summary_email','complete','2024-01-16 09:27:56','2024-01-16 10:27:56','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1705397276;s:18:\"\0*\0first_timestamp\";i:1702303200;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1705397276;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',10,1,'2024-01-16 10:10:23','2024-01-16 11:10:23',0,NULL,10),(75342,'woocommerce_cleanup_draft_orders','complete','2024-01-10 17:36:02','2024-01-10 18:36:02','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1704908162;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1704908162;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2024-01-10 22:56:49','2024-01-10 23:56:49',0,NULL,10),(75343,'woocommerce_cleanup_draft_orders','complete','2024-01-11 22:56:49','2024-01-11 23:56:49','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1705013809;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1705013809;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2024-01-12 02:34:17','2024-01-12 03:34:17',0,NULL,10),(75344,'woocommerce_cleanup_draft_orders','complete','2024-01-13 02:34:17','2024-01-13 03:34:17','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1705113257;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1705113257;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2024-01-13 02:57:36','2024-01-13 03:57:36',0,NULL,10),(75345,'woocommerce_cleanup_draft_orders','complete','2024-01-14 02:57:36','2024-01-14 03:57:36','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1705201056;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1705201056;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2024-01-14 09:48:39','2024-01-14 10:48:39',0,NULL,10),(75346,'rocket_preload_job_check_finished','complete','2024-01-13 04:17:34','2024-01-13 05:17:34','[1705119394]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1705119454;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1705119454;}',11,1,'2024-01-13 04:22:18','2024-01-13 05:22:18',0,NULL,10),(75347,'woocommerce_cleanup_draft_orders','complete','2024-01-15 09:48:39','2024-01-15 10:48:39','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1705312119;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1705312119;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2024-01-15 10:06:12','2024-01-15 11:06:12',0,NULL,10),(75348,'woocommerce_cleanup_draft_orders','complete','2024-01-16 10:06:12','2024-01-16 11:06:12','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1705399572;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1705399572;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2024-01-16 10:10:23','2024-01-16 11:10:23',0,NULL,10),(75349,'cartflows_ca_send_report_summary_email','pending','2024-01-23 10:10:23','2024-01-23 11:10:23','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1706004623;s:18:\"\0*\0first_timestamp\";i:1702303200;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1706004623;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',10,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL,10),(75350,'woocommerce_cleanup_draft_orders','complete','2024-01-17 10:10:23','2024-01-17 11:10:23','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1705486223;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1705486223;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2024-01-17 13:27:20','2024-01-17 14:27:20',0,NULL,10),(75351,'woocommerce_cleanup_draft_orders','complete','2024-01-18 13:27:20','2024-01-18 14:27:20','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1705584440;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1705584440;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2024-01-18 17:23:34','2024-01-18 18:23:34',0,NULL,10),(75352,'woocommerce_run_on_woocommerce_admin_updated','complete','2024-01-18 17:22:02','2024-01-18 18:22:02','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1705598522;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1705598522;}',6,1,'2024-01-18 17:23:34','2024-01-18 18:23:34',0,NULL,10),(75353,'woocommerce_cleanup_draft_orders','complete','2024-01-19 17:23:34','2024-01-19 18:23:34','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1705685014;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1705685014;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2024-01-19 22:22:39','2024-01-19 23:22:39',0,NULL,10),(75354,'woocommerce_cleanup_draft_orders','complete','2024-01-20 22:22:39','2024-01-20 23:22:39','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1705789359;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1705789359;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2024-01-21 01:18:38','2024-01-21 02:18:38',0,NULL,10),(75355,'woocommerce_cleanup_draft_orders','complete','2024-01-22 01:18:38','2024-01-22 02:18:38','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1705886318;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1705886318;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2024-01-22 01:18:55','2024-01-22 02:18:55',0,NULL,10),(75356,'rocket_preload_job_check_finished','complete','2024-01-22 00:59:42','2024-01-22 01:59:42','[1705885122]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1705885182;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1705885182;}',11,1,'2024-01-22 01:00:21','2024-01-22 02:00:21',0,NULL,10),(75357,'woocommerce_deliver_webhook_async','complete','2024-01-22 00:58:42','2024-01-22 01:58:42','{\"webhook_id\":25,\"arg\":10224}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1705885122;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1705885122;}',8,1,'2024-01-22 00:59:01','2024-01-22 01:59:01',0,NULL,10),(75358,'woocommerce_cleanup_draft_orders','pending','2024-01-23 01:18:55','2024-01-23 02:18:55','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1705972735;s:18:\"\0*\0first_timestamp\";i:1669163127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1705972735;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL,10);
/*!40000 ALTER TABLE `wpj7_actionscheduler_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_actionscheduler_claims`
--

DROP TABLE IF EXISTS `wpj7_actionscheduler_claims`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_actionscheduler_claims` (
  `claim_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `date_created_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`claim_id`),
  KEY `date_created_gmt` (`date_created_gmt`)
) ENGINE=InnoDB AUTO_INCREMENT=5462 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_actionscheduler_claims`
--

LOCK TABLES `wpj7_actionscheduler_claims` WRITE;
/*!40000 ALTER TABLE `wpj7_actionscheduler_claims` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpj7_actionscheduler_claims` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_actionscheduler_groups`
--

DROP TABLE IF EXISTS `wpj7_actionscheduler_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_actionscheduler_groups` (
  `group_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `slug` varchar(255) NOT NULL,
  PRIMARY KEY (`group_id`),
  KEY `slug` (`slug`(191))
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_actionscheduler_groups`
--

LOCK TABLES `wpj7_actionscheduler_groups` WRITE;
/*!40000 ALTER TABLE `wpj7_actionscheduler_groups` DISABLE KEYS */;
INSERT INTO `wpj7_actionscheduler_groups` VALUES (1,'action-scheduler-migration'),(2,'woocommerce-db-updates'),(3,'wc-admin-data'),(4,'TrackShip'),(5,'wc_update_product_default_cat'),(6,'woocommerce-remote-inbox-engine'),(7,'parcelpanel'),(8,'woocommerce-webhooks'),(9,'woocommerce-product-feeds'),(10,''),(11,'rocket-preload');
/*!40000 ALTER TABLE `wpj7_actionscheduler_groups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_actionscheduler_logs`
--

DROP TABLE IF EXISTS `wpj7_actionscheduler_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_actionscheduler_logs` (
  `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `action_id` bigint(20) unsigned NOT NULL,
  `message` text NOT NULL,
  `log_date_gmt` datetime DEFAULT '1999-01-01 00:00:00',
  `log_date_local` datetime DEFAULT '1999-01-01 00:00:00',
  PRIMARY KEY (`log_id`),
  KEY `action_id` (`action_id`),
  KEY `log_date_gmt` (`log_date_gmt`)
) ENGINE=InnoDB AUTO_INCREMENT=226050 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_actionscheduler_logs`
--

LOCK TABLES `wpj7_actionscheduler_logs` WRITE;
/*!40000 ALTER TABLE `wpj7_actionscheduler_logs` DISABLE KEYS */;
INSERT INTO `wpj7_actionscheduler_logs` VALUES (260,95,'action created','2022-12-07 22:40:07','2022-12-07 16:40:07'),(261,95,'action started via Async Request','2022-12-07 22:40:19','2022-12-07 16:40:19'),(262,95,'action failed via Async Request: Scheduled action for woocommerce_run_on_woocommerce_admin_updated will not be executed as no callbacks are registered.','2022-12-07 22:40:19','2022-12-07 16:40:19'),(383,136,'action created','2022-12-14 18:33:01','2022-12-14 12:33:01'),(384,136,'action started via Async Request','2022-12-14 18:33:30','2022-12-14 12:33:30'),(385,136,'action failed via Async Request: Scheduled action for woocommerce_run_on_woocommerce_admin_updated will not be executed as no callbacks are registered.','2022-12-14 18:33:30','2022-12-14 12:33:30'),(41730,13919,'action créée','2023-02-19 19:39:36','2023-02-19 13:39:36'),(41734,13919,'action started via WP Cron','2023-02-19 19:39:36','2023-02-19 13:39:36'),(41735,13919,'action failed via WP Cron: Scheduled action for woocommerce_run_on_woocommerce_admin_updated will not be executed as no callbacks are registered.','2023-02-19 19:39:36','2023-02-19 13:39:36'),(41980,14003,'action créée','2023-03-01 16:09:58','2023-03-01 10:09:58'),(41981,14003,'action started via WP Cron','2023-03-01 16:09:58','2023-03-01 10:09:58'),(41982,14003,'action failed via WP Cron: Scheduled action for woocommerce_run_on_woocommerce_admin_updated will not be executed as no callbacks are registered.','2023-03-01 16:09:58','2023-03-01 10:09:58'),(46390,15473,'action créée','2023-03-14 16:56:48','2023-03-14 11:56:48'),(46391,15473,'action lancée via Async Request','2023-03-14 16:57:23','2023-03-14 11:57:23'),(46392,15473,'échec de l’action via Async Request : L’action planifiée pour woocommerce_run_on_woocommerce_admin_updated ne sera pas exécutée car aucun rappel n’est enregistré.','2023-03-14 16:57:23','2023-03-14 11:57:23'),(47140,15723,'action created','2023-03-25 19:14:20','2023-03-25 14:14:20'),(47141,15723,'action started via WP Cron','2023-03-25 19:14:24','2023-03-25 14:14:24'),(47142,15723,'action failed via WP Cron: Scheduled action for woocommerce_run_on_woocommerce_admin_updated will not be executed as no callbacks are registered.','2023-03-25 19:14:24','2023-03-25 14:14:24'),(48838,16289,'action created','2023-04-14 17:20:54','2023-04-14 12:20:54'),(48839,16289,'action started via WP Cron','2023-04-14 17:20:55','2023-04-14 12:20:55'),(48840,16289,'action failed via WP Cron: Scheduled action for woocommerce_run_on_woocommerce_admin_updated will not be executed as no callbacks are registered.','2023-04-14 17:20:55','2023-04-14 12:20:55'),(49045,16358,'action created','2023-04-27 14:58:33','2023-04-27 09:58:33'),(49046,16358,'action started via WP Cron','2023-04-27 15:05:11','2023-04-27 10:05:11'),(49047,16358,'action failed via WP Cron: Scheduled action for woocommerce_run_on_woocommerce_admin_updated will not be executed as no callbacks are registered.','2023-04-27 15:05:11','2023-04-27 10:05:11'),(49249,16426,'action created','2023-05-10 15:10:56','2023-05-10 10:10:56'),(49250,16426,'action started via WP Cron','2023-05-10 15:18:59','2023-05-10 10:18:59'),(49251,16426,'action failed via WP Cron: Scheduled action for woocommerce_run_on_woocommerce_admin_updated will not be executed as no callbacks are registered.','2023-05-10 15:18:59','2023-05-10 10:18:59'),(51088,17039,'action created','2023-05-30 15:46:27','2023-05-30 10:46:27'),(51089,17039,'action started via WP Cron','2023-05-30 15:46:28','2023-05-30 10:46:28'),(51090,17039,'action failed via WP Cron: Scheduled action for woocommerce_run_on_woocommerce_admin_updated will not be executed as no callbacks are registered.','2023-05-30 15:46:28','2023-05-30 10:46:28'),(51259,17096,'action created','2023-06-01 15:58:30','2023-06-01 10:58:30'),(51260,17096,'action started via Async Request','2023-06-01 16:06:57','2023-06-01 11:06:57'),(51261,17096,'action failed via Async Request: Scheduled action for woocommerce_run_on_woocommerce_admin_updated will not be executed as no callbacks are registered.','2023-06-01 16:06:57','2023-06-01 11:06:57'),(89880,29969,'action created','2023-07-05 18:13:19','2023-07-05 13:13:19'),(89881,29969,'action started via WP Cron','2023-07-05 18:14:25','2023-07-05 13:14:25'),(89882,29969,'action failed via WP Cron: Scheduled action for action_scheduler/migration_hook will not be executed as no callbacks are registered.','2023-07-05 18:14:25','2023-07-05 13:14:25'),(195792,65273,'action created','2023-11-11 21:09:51','2023-11-11 22:09:51'),(195793,65273,'action started via WP Cron','2023-11-11 21:11:08','2023-11-11 22:11:08'),(195794,65273,'action failed via WP Cron: Scheduled action for action_scheduler/migration_hook will not be executed as no callbacks are registered.','2023-11-11 21:11:08','2023-11-11 22:11:08'),(195796,65275,'action created','2023-11-12 00:38:13','2023-11-12 01:38:13'),(195797,65275,'action started via WP Cron','2023-11-12 00:38:14','2023-11-12 01:38:14'),(195798,65275,'action failed via WP Cron: Scheduled action for ast_insert_shipping_provider will not be executed as no callbacks are registered.','2023-11-12 00:38:14','2023-11-12 01:38:14'),(196023,65350,'action created','2023-11-18 22:11:59','2023-11-18 23:11:59'),(196024,65350,'action started via WP Cron','2023-11-18 22:13:59','2023-11-18 23:13:59'),(196025,65350,'action failed via WP Cron: Scheduled action for action_scheduler/migration_hook will not be executed as no callbacks are registered.','2023-11-18 22:13:59','2023-11-18 23:13:59'),(225837,75288,'action created','2023-12-18 16:12:49','2023-12-18 17:12:49'),(225851,75293,'action created','2023-12-20 15:22:53','2023-12-20 16:22:53'),(225855,75294,'action created','2023-12-21 10:06:32','2023-12-21 11:06:32'),(225856,75294,'action started via WP Cron','2023-12-22 10:06:41','2023-12-22 11:06:41'),(225857,75294,'action complete via WP Cron','2023-12-22 10:06:41','2023-12-22 11:06:41'),(225858,75295,'action created','2023-12-22 10:06:41','2023-12-22 11:06:41'),(225859,75296,'action created','2023-12-23 03:31:08','2023-12-23 04:31:08'),(225860,75297,'action created','2023-12-23 03:31:08','2023-12-23 04:31:08'),(225861,75297,'action started via WP Cron','2023-12-23 03:31:09','2023-12-23 04:31:09'),(225862,75297,'action complete via WP Cron','2023-12-23 03:31:11','2023-12-23 04:31:11'),(225863,75296,'action started via WP Cron','2023-12-23 03:31:11','2023-12-23 04:31:11'),(225864,75296,'action complete via WP Cron','2023-12-23 03:31:11','2023-12-23 04:31:11'),(225865,75298,'action created','2023-12-23 03:31:22','2023-12-23 04:31:22'),(225866,75298,'action started via WP Cron','2023-12-23 03:33:45','2023-12-23 04:33:45'),(225867,75298,'action complete via WP Cron','2023-12-23 03:33:45','2023-12-23 04:33:45'),(225868,75299,'action created','2023-12-23 04:06:06','2023-12-23 05:06:06'),(225869,75299,'action started via WP Cron','2023-12-23 04:06:07','2023-12-23 05:06:07'),(225870,75299,'action failed via WP Cron: Scheduled action for rocket_preload_job_load_initial_sitemap will not be executed as no callbacks are registered.','2023-12-23 04:06:07','2023-12-23 05:06:07'),(225871,75300,'action created','2023-12-23 04:06:11','2023-12-23 05:06:11'),(225872,75301,'action created','2023-12-23 04:06:35','2023-12-23 05:06:35'),(225873,75300,'action started via WP Cron','2023-12-23 04:07:42','2023-12-23 05:07:42'),(225874,75300,'action complete via WP Cron','2023-12-23 04:07:42','2023-12-23 05:07:42'),(225875,75301,'action started via WP Cron','2023-12-23 04:07:42','2023-12-23 05:07:42'),(225876,75301,'action complete via WP Cron','2023-12-23 04:07:42','2023-12-23 05:07:42'),(225877,75295,'action started via WP Cron','2023-12-23 10:06:41','2023-12-23 11:06:41'),(225878,75295,'action complete via WP Cron','2023-12-23 10:06:41','2023-12-23 11:06:41'),(225879,75302,'action created','2023-12-23 10:06:41','2023-12-23 11:06:41'),(225880,75303,'action created','2023-12-23 16:40:49','2023-12-23 17:40:49'),(225881,75303,'action started via WP Cron','2023-12-23 16:43:19','2023-12-23 17:43:19'),(225882,75303,'action complete via WP Cron','2023-12-23 16:43:19','2023-12-23 17:43:19'),(225883,75304,'action created','2023-12-23 18:47:02','2023-12-23 19:47:02'),(225884,75304,'action started via WP Cron','2023-12-23 18:48:07','2023-12-23 19:48:07'),(225885,75304,'action complete via WP Cron','2023-12-23 18:48:07','2023-12-23 19:48:07'),(225886,75305,'action created','2023-12-23 18:48:14','2023-12-23 19:48:14'),(225887,75305,'action started via WP Cron','2023-12-23 18:49:21','2023-12-23 19:49:21'),(225888,75305,'action complete via WP Cron','2023-12-23 18:49:21','2023-12-23 19:49:21'),(225889,75306,'action created','2023-12-23 18:50:07','2023-12-23 19:50:07'),(225890,75307,'action created','2023-12-23 18:51:04','2023-12-23 19:51:04'),(225891,75306,'action started via WP Cron','2023-12-23 18:52:08','2023-12-23 19:52:08'),(225892,75306,'action complete via WP Cron','2023-12-23 18:52:08','2023-12-23 19:52:08'),(225893,75307,'action started via WP Cron','2023-12-23 18:52:08','2023-12-23 19:52:08'),(225894,75307,'action complete via WP Cron','2023-12-23 18:52:08','2023-12-23 19:52:08'),(225895,75308,'action created','2023-12-23 18:52:08','2023-12-23 19:52:08'),(225896,75309,'action created','2023-12-23 18:53:02','2023-12-23 19:53:02'),(225897,75310,'action created','2023-12-23 18:53:02','2023-12-23 19:53:02'),(225898,75310,'action started via WP Cron','2023-12-23 18:53:17','2023-12-23 19:53:17'),(225899,75310,'action complete via WP Cron','2023-12-23 18:53:19','2023-12-23 19:53:19'),(225900,75308,'action started via WP Cron','2023-12-23 18:53:19','2023-12-23 19:53:19'),(225901,75308,'action failed via WP Cron: Scheduled action for action_scheduler/migration_hook will not be executed as no callbacks are registered.','2023-12-23 18:53:19','2023-12-23 19:53:19'),(225902,75309,'action started via WP Cron','2023-12-23 18:54:20','2023-12-23 19:54:20'),(225903,75309,'action complete via WP Cron','2023-12-23 18:54:20','2023-12-23 19:54:20'),(225904,75311,'action created','2023-12-23 18:56:56','2023-12-23 19:56:56'),(225905,75311,'action started via WP Cron','2023-12-23 19:21:27','2023-12-23 20:21:27'),(225906,75311,'action complete via WP Cron','2023-12-23 19:21:27','2023-12-23 20:21:27'),(225907,75302,'action started via WP Cron','2023-12-24 10:07:30','2023-12-24 11:07:30'),(225908,75302,'action complete via WP Cron','2023-12-24 10:07:30','2023-12-24 11:07:30'),(225909,75312,'action created','2023-12-24 10:07:30','2023-12-24 11:07:30'),(225910,75312,'action started via WP Cron','2023-12-25 13:26:14','2023-12-25 14:26:14'),(225911,75312,'action complete via WP Cron','2023-12-25 13:26:15','2023-12-25 14:26:15'),(225912,75313,'action created','2023-12-25 13:26:15','2023-12-25 14:26:15'),(225913,75288,'action started via WP Cron','2023-12-25 16:50:30','2023-12-25 17:50:30'),(225914,75288,'action complete via WP Cron','2023-12-25 16:50:30','2023-12-25 17:50:30'),(225915,75314,'action created','2023-12-25 16:50:30','2023-12-25 17:50:30'),(225916,75313,'action started via WP Cron','2023-12-26 15:22:25','2023-12-26 16:22:25'),(225917,75313,'action complete via WP Cron','2023-12-26 15:22:25','2023-12-26 16:22:25'),(225918,75315,'action created','2023-12-26 15:22:25','2023-12-26 16:22:25'),(225919,75315,'action started via WP Cron','2023-12-27 16:53:40','2023-12-27 17:53:40'),(225920,75315,'action complete via WP Cron','2023-12-27 16:53:40','2023-12-27 17:53:40'),(225921,75316,'action created','2023-12-27 16:53:40','2023-12-27 17:53:40'),(225922,75316,'action started via WP Cron','2023-12-28 16:57:05','2023-12-28 17:57:05'),(225923,75316,'action complete via WP Cron','2023-12-28 16:57:05','2023-12-28 17:57:05'),(225924,75317,'action created','2023-12-28 16:57:05','2023-12-28 17:57:05'),(225925,75317,'action started via WP Cron','2023-12-29 16:57:47','2023-12-29 17:57:47'),(225926,75317,'action complete via WP Cron','2023-12-29 16:57:47','2023-12-29 17:57:47'),(225927,75318,'action created','2023-12-29 16:57:47','2023-12-29 17:57:47'),(225928,75318,'action started via WP Cron','2023-12-31 01:17:32','2023-12-31 02:17:32'),(225929,75318,'action complete via WP Cron','2023-12-31 01:17:32','2023-12-31 02:17:32'),(225930,75319,'action created','2023-12-31 01:17:32','2023-12-31 02:17:32'),(225931,75319,'action started via WP Cron','2024-01-01 04:53:26','2024-01-01 05:53:26'),(225932,75319,'action complete via WP Cron','2024-01-01 04:53:26','2024-01-01 05:53:26'),(225933,75320,'action created','2024-01-01 04:53:26','2024-01-01 05:53:26'),(225934,75314,'action started via WP Cron','2024-01-01 16:51:32','2024-01-01 17:51:32'),(225935,75314,'action complete via WP Cron','2024-01-01 16:51:32','2024-01-01 17:51:32'),(225936,75321,'action created','2024-01-01 16:51:32','2024-01-01 17:51:32'),(225937,75320,'action started via WP Cron','2024-01-02 05:24:27','2024-01-02 06:24:27'),(225938,75320,'action complete via WP Cron','2024-01-02 05:24:27','2024-01-02 06:24:27'),(225939,75322,'action created','2024-01-02 05:24:27','2024-01-02 06:24:27'),(225940,75323,'action created','2024-01-02 22:28:19','2024-01-02 23:28:19'),(225941,75324,'action created','2024-01-02 22:28:22','2024-01-02 23:28:22'),(225942,75324,'action started via WP Cron','2024-01-02 22:31:02','2024-01-02 23:31:02'),(225943,75324,'action complete via WP Cron','2024-01-02 22:31:05','2024-01-02 23:31:05'),(225944,75323,'action started via WP Cron','2024-01-02 22:31:05','2024-01-02 23:31:05'),(225945,75323,'action complete via WP Cron','2024-01-02 22:31:05','2024-01-02 23:31:05'),(225946,75325,'action created','2024-01-03 00:16:45','2024-01-03 01:16:45'),(225947,75326,'action created','2024-01-03 00:16:45','2024-01-03 01:16:45'),(225948,75327,'action created','2024-01-03 00:17:03','2024-01-03 01:17:03'),(225949,75325,'action started via WP Cron','2024-01-03 00:23:29','2024-01-03 01:23:29'),(225950,75326,'action canceled','2024-01-03 00:23:29','2024-01-03 01:23:29'),(225951,75325,'action complete via WP Cron','2024-01-03 00:23:29','2024-01-03 01:23:29'),(225952,75326,'action ignored via WP Cron','2024-01-03 00:23:29','2024-01-03 01:23:29'),(225953,75327,'action started via WP Cron','2024-01-03 00:23:29','2024-01-03 01:23:29'),(225954,75327,'action complete via WP Cron','2024-01-03 00:23:29','2024-01-03 01:23:29'),(225955,75322,'action started via WP Cron','2024-01-03 08:41:38','2024-01-03 09:41:38'),(225956,75322,'action complete via WP Cron','2024-01-03 08:41:38','2024-01-03 09:41:38'),(225957,75328,'action created','2024-01-03 08:41:38','2024-01-03 09:41:38'),(225958,75328,'action started via WP Cron','2024-01-04 10:06:57','2024-01-04 11:06:57'),(225959,75328,'action complete via WP Cron','2024-01-04 10:06:57','2024-01-04 11:06:57'),(225960,75329,'action created','2024-01-04 10:06:57','2024-01-04 11:06:57'),(225961,75329,'action started via WP Cron','2024-01-05 13:28:25','2024-01-05 14:28:25'),(225962,75329,'action complete via WP Cron','2024-01-05 13:28:26','2024-01-05 14:28:26'),(225963,75330,'action created','2024-01-05 13:28:26','2024-01-05 14:28:26'),(225964,75331,'action created','2024-01-05 15:25:59','2024-01-05 16:25:59'),(225965,75331,'action started via WP Cron','2024-01-05 15:27:01','2024-01-05 16:27:01'),(225966,75331,'action complete via WP Cron','2024-01-05 15:27:01','2024-01-05 16:27:01'),(225967,75332,'action created','2024-01-05 15:35:14','2024-01-05 16:35:14'),(225968,75332,'action started via WP Cron','2024-01-05 15:40:59','2024-01-05 16:40:59'),(225969,75332,'action complete via WP Cron','2024-01-05 15:40:59','2024-01-05 16:40:59'),(225970,75333,'action created','2024-01-06 10:03:38','2024-01-06 11:03:38'),(225971,75333,'action started via WP Cron','2024-01-06 10:28:08','2024-01-06 11:28:08'),(225972,75333,'action complete via WP Cron','2024-01-06 10:28:08','2024-01-06 11:28:08'),(225973,75330,'action started via WP Cron','2024-01-06 13:44:09','2024-01-06 14:44:09'),(225974,75330,'action complete via WP Cron','2024-01-06 13:44:09','2024-01-06 14:44:09'),(225975,75334,'action created','2024-01-06 13:44:09','2024-01-06 14:44:09'),(225976,75334,'action started via WP Cron','2024-01-07 15:22:04','2024-01-07 16:22:04'),(225977,75334,'action complete via WP Cron','2024-01-07 15:22:04','2024-01-07 16:22:04'),(225978,75335,'action created','2024-01-07 15:22:04','2024-01-07 16:22:04'),(225979,75336,'action created','2024-01-07 22:30:35','2024-01-07 23:30:35'),(225980,75337,'action created','2024-01-07 22:31:42','2024-01-07 23:31:42'),(225981,75336,'action started via WP Cron','2024-01-07 22:31:51','2024-01-07 23:31:51'),(225982,75336,'action complete via WP Cron','2024-01-07 22:31:51','2024-01-07 23:31:51'),(225983,75337,'action started via WP Cron','2024-01-07 22:32:54','2024-01-07 23:32:54'),(225984,75337,'action complete via WP Cron','2024-01-07 22:32:54','2024-01-07 23:32:54'),(225985,75338,'action created','2024-01-07 22:34:31','2024-01-07 23:34:31'),(225986,75339,'action created','2024-01-07 22:34:57','2024-01-07 23:34:57'),(225987,75338,'action started via WP Cron','2024-01-07 22:35:55','2024-01-07 23:35:55'),(225988,75338,'action complete via WP Cron','2024-01-07 22:35:55','2024-01-07 23:35:55'),(225989,75339,'action started via WP Cron','2024-01-07 22:36:57','2024-01-07 23:36:57'),(225990,75339,'action complete via WP Cron','2024-01-07 22:36:57','2024-01-07 23:36:57'),(225991,75335,'action started via WP Cron','2024-01-08 15:26:55','2024-01-08 16:26:55'),(225992,75335,'action complete via WP Cron','2024-01-08 15:26:55','2024-01-08 16:26:55'),(225993,75340,'action created','2024-01-08 15:26:55','2024-01-08 16:26:55'),(225994,75321,'action started via WP Cron','2024-01-09 09:27:56','2024-01-09 10:27:56'),(225995,75321,'action complete via WP Cron','2024-01-09 09:27:56','2024-01-09 10:27:56'),(225996,75341,'action created','2024-01-09 09:27:56','2024-01-09 10:27:56'),(225997,75340,'action started via WP Cron','2024-01-09 17:36:02','2024-01-09 18:36:02'),(225998,75340,'action complete via WP Cron','2024-01-09 17:36:02','2024-01-09 18:36:02'),(225999,75342,'action created','2024-01-09 17:36:02','2024-01-09 18:36:02'),(226000,75342,'action started via WP Cron','2024-01-10 22:56:49','2024-01-10 23:56:49'),(226001,75342,'action complete via WP Cron','2024-01-10 22:56:49','2024-01-10 23:56:49'),(226002,75343,'action created','2024-01-10 22:56:49','2024-01-10 23:56:49'),(226003,75343,'action started via WP Cron','2024-01-12 02:34:17','2024-01-12 03:34:17'),(226004,75343,'action complete via WP Cron','2024-01-12 02:34:17','2024-01-12 03:34:17'),(226005,75344,'action created','2024-01-12 02:34:17','2024-01-12 03:34:17'),(226006,75344,'action started via WP Cron','2024-01-13 02:57:36','2024-01-13 03:57:36'),(226007,75344,'action complete via WP Cron','2024-01-13 02:57:36','2024-01-13 03:57:36'),(226008,75345,'action created','2024-01-13 02:57:36','2024-01-13 03:57:36'),(226009,75346,'action created','2024-01-13 04:16:34','2024-01-13 05:16:34'),(226010,75346,'action started via WP Cron','2024-01-13 04:22:18','2024-01-13 05:22:18'),(226011,75346,'action complete via WP Cron','2024-01-13 04:22:18','2024-01-13 05:22:18'),(226012,75345,'action started via WP Cron','2024-01-14 09:48:39','2024-01-14 10:48:39'),(226013,75345,'action complete via WP Cron','2024-01-14 09:48:39','2024-01-14 10:48:39'),(226014,75347,'action created','2024-01-14 09:48:39','2024-01-14 10:48:39'),(226015,75347,'action started via WP Cron','2024-01-15 10:06:12','2024-01-15 11:06:12'),(226016,75347,'action complete via WP Cron','2024-01-15 10:06:12','2024-01-15 11:06:12'),(226017,75348,'action created','2024-01-15 10:06:12','2024-01-15 11:06:12'),(226018,75341,'action started via WP Cron','2024-01-16 10:10:22','2024-01-16 11:10:22'),(226019,75341,'action complete via WP Cron','2024-01-16 10:10:23','2024-01-16 11:10:23'),(226020,75349,'action created','2024-01-16 10:10:23','2024-01-16 11:10:23'),(226021,75348,'action started via WP Cron','2024-01-16 10:10:23','2024-01-16 11:10:23'),(226022,75348,'action complete via WP Cron','2024-01-16 10:10:23','2024-01-16 11:10:23'),(226023,75350,'action created','2024-01-16 10:10:23','2024-01-16 11:10:23'),(226024,75350,'action started via WP Cron','2024-01-17 13:27:20','2024-01-17 14:27:20'),(226025,75350,'action complete via WP Cron','2024-01-17 13:27:20','2024-01-17 14:27:20'),(226026,75351,'action created','2024-01-17 13:27:20','2024-01-17 14:27:20'),(226027,75352,'action created','2024-01-18 17:22:02','2024-01-18 18:22:02'),(226028,75351,'action started via WP Cron','2024-01-18 17:23:34','2024-01-18 18:23:34'),(226029,75351,'action complete via WP Cron','2024-01-18 17:23:34','2024-01-18 18:23:34'),(226030,75353,'action created','2024-01-18 17:23:34','2024-01-18 18:23:34'),(226031,75352,'action started via WP Cron','2024-01-18 17:23:34','2024-01-18 18:23:34'),(226032,75352,'action complete via WP Cron','2024-01-18 17:23:34','2024-01-18 18:23:34'),(226033,75293,'action started via WP Cron','2024-01-19 16:43:35','2024-01-19 17:43:35'),(226034,75293,'action failed via WP Cron: Scheduled action for parcelpanel_update_courier_list will not be executed as no callbacks are registered.','2024-01-19 16:43:35','2024-01-19 17:43:35'),(226035,75353,'action started via WP Cron','2024-01-19 22:22:39','2024-01-19 23:22:39'),(226036,75353,'action complete via WP Cron','2024-01-19 22:22:39','2024-01-19 23:22:39'),(226037,75354,'action created','2024-01-19 22:22:39','2024-01-19 23:22:39'),(226038,75354,'action started via WP Cron','2024-01-21 01:18:38','2024-01-21 02:18:38'),(226039,75354,'action complete via WP Cron','2024-01-21 01:18:38','2024-01-21 02:18:38'),(226040,75355,'action created','2024-01-21 01:18:38','2024-01-21 02:18:38'),(226041,75356,'action created','2024-01-22 00:58:42','2024-01-22 01:58:42'),(226042,75357,'action created','2024-01-22 00:58:42','2024-01-22 01:58:42'),(226043,75357,'action started via WP Cron','2024-01-22 00:58:59','2024-01-22 01:58:59'),(226044,75357,'action complete via WP Cron','2024-01-22 00:59:01','2024-01-22 01:59:01'),(226045,75356,'action started via WP Cron','2024-01-22 01:00:21','2024-01-22 02:00:21'),(226046,75356,'action complete via WP Cron','2024-01-22 01:00:21','2024-01-22 02:00:21'),(226047,75355,'action started via WP Cron','2024-01-22 01:18:55','2024-01-22 02:18:55'),(226048,75355,'action complete via WP Cron','2024-01-22 01:18:55','2024-01-22 02:18:55'),(226049,75358,'action created','2024-01-22 01:18:55','2024-01-22 02:18:55');
/*!40000 ALTER TABLE `wpj7_actionscheduler_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_adfoin_integration`
--

DROP TABLE IF EXISTS `wpj7_adfoin_integration`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_adfoin_integration` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `title` text NOT NULL,
  `form_provider` varchar(255) NOT NULL,
  `form_id` varchar(255) NOT NULL,
  `form_name` varchar(255) DEFAULT NULL,
  `action_provider` varchar(255) NOT NULL,
  `task` varchar(255) NOT NULL,
  `data` longtext DEFAULT NULL,
  `extra_data` longtext DEFAULT NULL,
  `status` int(1) NOT NULL,
  `time` timestamp NOT NULL DEFAULT current_timestamp(),
  KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_adfoin_integration`
--

LOCK TABLES `wpj7_adfoin_integration` WRITE;
/*!40000 ALTER TABLE `wpj7_adfoin_integration` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpj7_adfoin_integration` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_adfoin_log`
--

DROP TABLE IF EXISTS `wpj7_adfoin_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_adfoin_log` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `response_code` int(3) DEFAULT NULL,
  `response_message` varchar(255) DEFAULT NULL,
  `integration_id` bigint(20) DEFAULT NULL,
  `request_data` longtext DEFAULT NULL,
  `response_data` longtext DEFAULT NULL,
  `time` timestamp NOT NULL DEFAULT current_timestamp(),
  KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_adfoin_log`
--

LOCK TABLES `wpj7_adfoin_log` WRITE;
/*!40000 ALTER TABLE `wpj7_adfoin_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpj7_adfoin_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_cartflows_ca_cart_abandonment`
--

DROP TABLE IF EXISTS `wpj7_cartflows_ca_cart_abandonment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_cartflows_ca_cart_abandonment` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `checkout_id` int(11) NOT NULL,
  `email` varchar(100) DEFAULT NULL,
  `cart_contents` longtext DEFAULT NULL,
  `cart_total` decimal(10,2) DEFAULT NULL,
  `session_id` varchar(60) NOT NULL,
  `other_fields` longtext DEFAULT NULL,
  `order_status` enum('normal','abandoned','completed','lost') NOT NULL DEFAULT 'normal',
  `unsubscribed` tinyint(1) DEFAULT 0,
  `coupon_code` varchar(50) DEFAULT NULL,
  `time` datetime DEFAULT NULL,
  PRIMARY KEY (`id`,`session_id`),
  UNIQUE KEY `session_id_UNIQUE` (`session_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_cartflows_ca_cart_abandonment`
--

LOCK TABLES `wpj7_cartflows_ca_cart_abandonment` WRITE;
/*!40000 ALTER TABLE `wpj7_cartflows_ca_cart_abandonment` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpj7_cartflows_ca_cart_abandonment` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_cartflows_ca_email_history`
--

DROP TABLE IF EXISTS `wpj7_cartflows_ca_email_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_cartflows_ca_email_history` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `template_id` bigint(20) NOT NULL,
  `ca_session_id` varchar(60) DEFAULT NULL,
  `coupon_code` varchar(50) DEFAULT NULL,
  `scheduled_time` datetime DEFAULT NULL,
  `email_sent` tinyint(1) DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `template_id` (`template_id`),
  KEY `ca_session_id` (`ca_session_id`),
  CONSTRAINT `wpj7_cartflows_ca_email_history_ibfk_1` FOREIGN KEY (`template_id`) REFERENCES `wpj7_cartflows_ca_email_templates` (`id`) ON DELETE CASCADE,
  CONSTRAINT `wpj7_cartflows_ca_email_history_ibfk_2` FOREIGN KEY (`ca_session_id`) REFERENCES `wpj7_cartflows_ca_cart_abandonment` (`session_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_cartflows_ca_email_history`
--

LOCK TABLES `wpj7_cartflows_ca_email_history` WRITE;
/*!40000 ALTER TABLE `wpj7_cartflows_ca_email_history` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpj7_cartflows_ca_email_history` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_cartflows_ca_email_templates`
--

DROP TABLE IF EXISTS `wpj7_cartflows_ca_email_templates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_cartflows_ca_email_templates` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `template_name` text NOT NULL,
  `email_subject` text NOT NULL,
  `email_body` mediumtext NOT NULL,
  `is_activated` tinyint(1) NOT NULL DEFAULT 0,
  `frequency` int(11) NOT NULL,
  `frequency_unit` enum('MINUTE','HOUR','DAY') NOT NULL DEFAULT 'MINUTE',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_cartflows_ca_email_templates`
--

LOCK TABLES `wpj7_cartflows_ca_email_templates` WRITE;
/*!40000 ALTER TABLE `wpj7_cartflows_ca_email_templates` DISABLE KEYS */;
INSERT INTO `wpj7_cartflows_ca_email_templates` VALUES (1,'Email 1','Je bent iets vergeten!','Hallo, ik heb je winkelmandje gereserveerd omdat je je bestelling nog niet hebt afgerond.\r\n\r\nEr is veel vraag naar onze artikelen, dus haast je alsjeblieft, ik kan ze niet langer vasthouden.\r\n\r\n<a href=\"{{cart.checkout_url}}\" target=\"_blank\" rel=\"noopener\">Vul nu uw bestelling in</a> want onze voorraad is beperkt!\r\n\r\nElin A - {{admin.company}}\r\n<div></div>\r\n<div>{{cart.unsubscribe}}</div>',1,5,'MINUTE'),(2,'Email 2','Weet je het zeker?','Waarom uitstellen tot morgen wat je nu met een paar klikken kunt doen?\r\n\r\n<a href=\"{{cart.checkout_url}}\" target=\"_blank\" rel=\"noopener\">Klik hier om verder te gaan met uw aankoop</a>!\r\n\r\nSofia M - {{admin.company}}\r\n\r\n{{cart.unsubscribe}}',1,1,'HOUR'),(3,'Email 3','Ik heb een cadeautje voor je! 🎁','Hé, we hebben een cadeautje voor je!\r\n\r\nGeniet van 10% korting op je bestelling met de code PGCNZQ10!\r\n\r\nHaast je met <a href=\"{{cart.checkout_url}}\" target=\"_blank\" rel=\"noopener\">volledig je bestelling</a> want ik kan je winkelwagentje niet lang meer reserveren.\r\n\r\nSofia M - {{admin.company}}\r\n\r\n{{cart.unsubscribe}}',1,5,'HOUR'),(4,'Email 4','Zul je de kans echt missen?','Wacht niet tot het te laat is om iets te doen! <a href=\"{{cart.checkout_url}}\" target=\"_blank\" rel=\"noopener\">Plaats nu uw bestelling!</a>!\r\n\r\nSofia M - {{admin.company}}\r\n\r\n{{cart.unsubscribe}}',1,10,'HOUR'),(5,'Email 5','Dit is je laatste kans! Daarna is het te laat!','Dit is je laatste kans en het is te laat!\r\n\r\n<a href=\"{{cart.checkout_url}}\" target=\"_blank\" rel=\"noopener\">Plaats nu uw bestelling!</a>!\r\n\r\nElin A - {{admin.company}}\r\n\r\n{{cart.unsubscribe}}',1,1,'DAY');
/*!40000 ALTER TABLE `wpj7_cartflows_ca_email_templates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_cartflows_ca_email_templates_meta`
--

DROP TABLE IF EXISTS `wpj7_cartflows_ca_email_templates_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_cartflows_ca_email_templates_meta` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `email_template_id` bigint(20) NOT NULL,
  `meta_key` varchar(255) NOT NULL,
  `meta_value` longtext NOT NULL,
  PRIMARY KEY (`id`),
  KEY `email_template_id` (`email_template_id`),
  CONSTRAINT `wpj7_cartflows_ca_email_templates_meta_ibfk_1` FOREIGN KEY (`email_template_id`) REFERENCES `wpj7_cartflows_ca_email_templates` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=46 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_cartflows_ca_email_templates_meta`
--

LOCK TABLES `wpj7_cartflows_ca_email_templates_meta` WRITE;
/*!40000 ALTER TABLE `wpj7_cartflows_ca_email_templates_meta` DISABLE KEYS */;
INSERT INTO `wpj7_cartflows_ca_email_templates_meta` VALUES (1,1,'override_global_coupon',''),(2,1,'discount_type','percent'),(3,1,'coupon_amount','10'),(4,1,'coupon_expiry_date','0'),(5,1,'coupon_expiry_unit','hours'),(6,1,'use_woo_email_style','1'),(7,2,'override_global_coupon',''),(8,2,'discount_type','percent'),(9,2,'coupon_amount','10'),(10,2,'coupon_expiry_date','0'),(11,2,'coupon_expiry_unit','hours'),(12,2,'use_woo_email_style','1'),(13,3,'override_global_coupon',''),(14,3,'discount_type','percent'),(15,3,'coupon_amount','10'),(16,3,'coupon_expiry_date','0'),(17,3,'coupon_expiry_unit','hours'),(18,3,'use_woo_email_style','1'),(19,1,'auto_coupon',''),(20,1,'free_shipping_coupon',''),(21,1,'individual_use_only',''),(22,2,'auto_coupon',''),(23,2,'free_shipping_coupon',''),(24,2,'individual_use_only',''),(25,3,'auto_coupon',''),(26,3,'free_shipping_coupon',''),(27,3,'individual_use_only',''),(28,4,'override_global_coupon',''),(29,4,'discount_type','percent'),(30,4,'coupon_amount','10'),(31,4,'coupon_expiry_date','0'),(32,4,'coupon_expiry_unit','hours'),(33,4,'auto_coupon',''),(34,4,'free_shipping_coupon',''),(35,4,'individual_use_only',''),(36,4,'use_woo_email_style','1'),(37,5,'override_global_coupon',''),(38,5,'discount_type','percent'),(39,5,'coupon_amount','10'),(40,5,'coupon_expiry_date','0'),(41,5,'coupon_expiry_unit','hours'),(42,5,'auto_coupon',''),(43,5,'free_shipping_coupon',''),(44,5,'individual_use_only',''),(45,5,'use_woo_email_style','1');
/*!40000 ALTER TABLE `wpj7_cartflows_ca_email_templates_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_commentmeta`
--

DROP TABLE IF EXISTS `wpj7_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_commentmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_commentmeta`
--

LOCK TABLES `wpj7_commentmeta` WRITE;
/*!40000 ALTER TABLE `wpj7_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpj7_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_comments`
--

DROP TABLE IF EXISTS `wpj7_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_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)),
  KEY `woo_idx_comment_type` (`comment_type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_comments`
--

LOCK TABLES `wpj7_comments` WRITE;
/*!40000 ALTER TABLE `wpj7_comments` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpj7_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_links`
--

DROP TABLE IF EXISTS `wpj7_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) NOT NULL DEFAULT '',
  `link_name` varchar(255) NOT NULL DEFAULT '',
  `link_image` varchar(255) NOT NULL DEFAULT '',
  `link_target` varchar(25) NOT NULL DEFAULT '',
  `link_description` varchar(255) NOT NULL DEFAULT '',
  `link_visible` varchar(20) NOT NULL DEFAULT 'Y',
  `link_owner` bigint(20) unsigned NOT NULL DEFAULT 1,
  `link_rating` int(11) NOT NULL DEFAULT 0,
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) NOT NULL DEFAULT '',
  `link_notes` mediumtext NOT NULL,
  `link_rss` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_links`
--

LOCK TABLES `wpj7_links` WRITE;
/*!40000 ALTER TABLE `wpj7_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpj7_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_mainwp_action_log`
--

DROP TABLE IF EXISTS `wpj7_mainwp_action_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_mainwp_action_log` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `log_content` mediumtext NOT NULL DEFAULT '',
  `log_type` tinyint(1) DEFAULT 0,
  `log_color` tinyint(1) DEFAULT 0,
  `log_user` varchar(128) NOT NULL DEFAULT '',
  `log_timestamp` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_mainwp_action_log`
--

LOCK TABLES `wpj7_mainwp_action_log` WRITE;
/*!40000 ALTER TABLE `wpj7_mainwp_action_log` DISABLE KEYS */;
INSERT INTO `wpj7_mainwp_action_log` VALUES (1,'CRON :: stats',2,0,'DOING_CRON',1699888963),(2,'CRON :: ping childs',2,0,'DOING_CRON',1699888963),(3,'CRON :: updates check found0 websites',2,0,'DOING_CRON',1699888963),(4,' :: tryVisit :: [url=https://www.nl.teng-shop.com/] [http_status=200] [error=] [data-start]<!DOCTYPE html>\n<html lang=\"nl-NL\" class=\"loading-site no-js\">\n<head>\n	<meta charset=\"UTF-8\" />\n	<link rel=\"profile\" href=\"http://gmpg.org/xfn/11\" />\n	<link rel=\"pingback\" href=\"https://www.nl.teng-shop.com/xmlrpc.php\" />\n\n					<script>document.documentElement.className = document.documentElement.className + \' yes-js js_active js\'</script>\n				<script>(function(html){html.className = html.className.replace(/\\bno-js\\b/,\'js\')})(document.documentElement);</script>\n<meta name=\'robots\' content=\'index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1\' />\n\n<!-- Google Tag Manager for WordPress by gtm4wp.com -->\n<script data-cfasync=\"false\" data-pagespeed-no-defer>\n	var gtm4wp_datalayer_name = \"dataLayer\";\n	var dataLayer = dataLayer || [];\n	const gtm4wp_use_sku_instead = false;\n	const gtm4wp_id_prefix = \'\';\n	const gtm4wp_remarketing = false;\n	const gtm4wp_eec = true;\n	const gtm4wp_classicec = false;\n	const gtm4wp_currency = \'EUR\';\n	const gtm4wp_product_per_impression = 10;\n	const gtm4wp_needs_shipping_address = false;\n	const gtm4wp_business_vertical = \'retail\';\n	const gtm4wp_business_vertical_id = \'id\';\n</script>\n<!-- End Google Tag Manager for WordPress by gtm4wp.com --><meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" />\n	<!-- This site is optimized with the Yoast SEO plugin v21.5 - https://yoast.com/wordpress/plugins/seo/ -->\n	<title>Chinese kleding &amp; decoraties | Teng Shop</title>\n	<meta name=\"description\" content=\"Teng Shop is de perfecte plek om alle Chinese cultuur te vinden. Kom en ontdek onze Chinese kleding, accessoires, sieraden en decoraties...\" />\n	<link rel=\"canonical\" href=\"https://www.nl.teng-shop.com/\" />\n	<meta property=\"og:locale\" content=\"nl_NL\" />\n	<meta property=\"og:type\" content=\"website\" />\n	<meta property=\"og:title\" content=\"Chinese kleding &amp; decoraties | Teng Shop\" />\n	<meta property=\"og:description\" content=\"Teng Shop is de perfecte plek om alle Chinese cultuur te vinden. Kom en ontdek onze Chinese kleding, accessoires, sieraden en decoraties...\" />\n	<meta property=\"og:url\" content=\"https://www.nl.teng-shop.com/\" />\n	<meta property=\"og:site_name\" content=\"Teng Shop\" />\n	<meta property=\"article:modified_time\" content=\"2023-09-23T20:32:32+00:00\" />\n	<meta name=\"twitter:card\" content=\"summary_large_image\" />\n	<script type=\"application/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https://schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https://www.nl.teng-shop.com/\",\"url\":\"https://www.nl.teng-shop.com/\",\"name\":\"Chinese kleding & decoraties | Teng Shop\",\"isPartOf\":{\"@id\":\"https://www.nl.teng-shop.com/#website\"},\"about\":{\"@id\":\"https://www.nl.teng-shop.com/#organization\"},\"datePublished\":\"2022-12-07T22:28:14+00:00\",\"dateModified\":\"2023-09-23T20:32:32+00:00\",\"description\":\"Teng Shop is de perfecte plek om alle Chinese cultuur te vinden. Kom en ontdek onze Chinese kleding, accessoires, sieraden en decoraties...\",\"breadcrumb\":{\"@id\":\"https://www.nl.teng-shop.com/#breadcrumb\"},\"inLanguage\":\"nl-NL\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https://www.nl.teng-shop.com/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https://www.nl.teng-shop.com/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Startpagina\"}]},{\"@type\":\"WebSite\",\"@id\":\"https://www.nl.teng-shop.com/#website\",\"url\":\"https://www.nl.teng-shop.com/\",\"name\":\"Teng Shop\",\"description\":\"\",\"publisher\":{\"@id\":\"https://www.nl.teng-shop.com/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https://www.nl.teng-shop.com/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"nl-NL\"},{\"@type\":\"Organization\",\"@id\":\"https://www.nl.teng-shop.com/#organization\",\"name\":\"Teng Shop\",\"url\":\"https://www.nl.teng-shop.com/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"nl-NL\",\"@id\":\"https://www.nl.teng-shop.com/#/schema/logo/image/\",\"url\":\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/teng-shop-v2-min.png\",\"contentUrl\":\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/teng-shop-v2-min.png\",\"width\":833,\"height\":259,\"caption\":\"Teng Shop\"},\"image\":{\"@id\":\"https://www.nl.teng-shop.com/#/schema/logo/image/\"}}]}</script>\n	<!-- / Yoast SEO plugin. -->\n\n\n<link rel=\'dns-prefetch\' href=\'//static.klaviyo.com\' />\n<link rel=\'dns-prefetch\' href=\'//ajax.googleapis.com\' />\n<link rel=\'dns-prefetch\' href=\'//www.googletagmanager.com\' />\n<link rel=\'prefetch\' href=\'https://www.nl.teng-shop.com/wp-content/themes/flatsome/assets/js/flatsome.js?ver=039f9485eef603e7c53a\' />\n<link rel=\'prefetch\' href=\'https://www.nl.teng-shop.com/wp-content/themes/flatsome/assets/js/chunk.slider.js?ver=3.18.0\' />\n<link rel=\'prefetch\' href=\'https://www.nl.teng-shop.com/wp-content/themes/flatsome/assets/js/chunk.popups.js?ver=3.18.0\' />\n<link rel=\'prefetch\' href=\'https://www.nl.teng-shop.com/wp-content/themes/flatsome/assets/js/chunk.tooltips.js?ver=3.18.0\' />\n<link rel=\'prefetch\' href=\'https://www.nl.teng-shop.com/wp-content/themes/flatsome/assets/js/woocommerce.js?ver=c9fe40206165dd93147b\' />\n<link rel=\"alternate\" type=\"application/rss+xml\" title=\"Teng Shop &raquo; feed\" href=\"https://www.nl.teng-shop.com/feed/\" />\n<link rel=\"alternate\" type=\"application/rss+xml\" title=\"Teng Shop &raquo; reactiesfeed\" href=\"https://www.nl.teng-shop.com/comments/feed/\" />\n<script type=\"text/javascript\">\n/* <![CDATA[ */\nwindow._wpemojiSettings = {\"baseUrl\":\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/72x72\\/\",\"ext\":\".png\",\"svgUrl\":\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/svg\\/\",\"svgExt\":\".svg\",\"source\":{\"concatemoji\":\"https:\\/\\/www.nl.teng-shop.com\\/wp-includes\\/js\\/wp-emoji-release.min.js?ver=6.4.1\"}};\n/*! This file is auto-generated */\n!function(i,n){var o,s,e;function c(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function p(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data),r=(e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0),new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data));return t.every(function(e,t){return e===r[t]})}function u(e,t,n){switch(t){case\"flag\":return n(e,\"\\ud83c\\udff3\\ufe0f\\u200d\\u26a7\\ufe0f\",\"\\ud83c\\udff3\\ufe0f\\u200b\\u26a7\\ufe0f\")?!1:!n(e,\"\\ud83c\\uddfa\\ud83c\\uddf3\",\"\\ud83c\\uddfa\\u200b\\ud83c\\uddf3\")&&!n(e,\"\\ud83c\\udff4\\udb40\\udc67\\udb40\\udc62\\udb40\\udc65\\udb40\\udc6e\\udb40\\udc67\\udb40\\udc7f\",\"\\ud83c\\udff4\\u200b\\udb40\\udc67\\u200b\\udb40\\udc62\\u200b\\udb40\\udc65\\u200b\\udb40\\udc6e\\u200b\\udb40\\udc67\\u200b\\udb40\\udc7f\");case\"emoji\":return!n(e,\"\\ud83e\\udef1\\ud83c\\udffb\\u200d\\ud83e\\udef2\\ud83c\\udfff\",\"\\ud83e\\udef1\\ud83c\\udffb\\u200b\\ud83e\\udef2\\ud83c\\udfff\")}return!1}function f(e,t,n){var r=\"undefined\"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):i.createElement(\"canvas\"),a=r.getContext(\"2d\",{willReadFrequently:!0}),o=(a.textBaseline=\"top\",a.font=\"600 32px Arial\",{});return e.forEach(function(e){o[e]=t(a,e,n)}),o}function t(e){var t=i.createElement(\"script\");t.src=e,t.defer=!0,i.head.appendChild(t)}\"undefined\"!=typeof Promise&&(o=\"wpEmojiSettingsSupports\",s=[\"flag\",\"emoji\"],n.supports={everything:!0,everythingExceptFlag:!0},e=new Promise(function(e){i.addEventListener(\"DOMContentLoaded\",e,{once:!0})}),new Promise(function(t){var n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if(\"object\"==typeof e&&\"number\"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&\"object\"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if(\"undefined\"!=typeof Worker&&\"undefined\"!=typeof OffscreenCanvas&&\"undefined\"!=typeof URL&&URL.createObjectURL&&\"undefined\"!=typeof Blob)try{var e=\"postMessage(\"+f.toString()+\"(\"+[JSON.stringify(s),u.toString(),p.toString()].join(\",\")+\"));\",r=new Blob([e],{type:\"text/javascript\"}),a=new Worker(URL.createObjectURL(r),{name:\"wpTestEmojiSupports\"});return void(a.onmessage=function(e){c(n=e.data),a.terminate(),t(n)})}catch(e){}c(n=f(s,u,p))}t(n)}).then(function(e){for(var t in e)n.supports[t]=e[t],n.supports.everything=n.supports.everything&&n.supports[t],\"flag\"!==t&&(n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&n.supports[t]);n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&!n.supports.flag,n.DOMReady=!1,n.readyCallback=function(){n.DOMReady=!0}}).then(function(){return e}).then(function(){var e;n.supports.everything||(n.readyCallback(),(e=n.source||{}).concatemoji?t(e.concatemoji):e.wpemoji&&e.twemoji&&(t(e.twemoji),t(e.wpemoji)))}))}((window,document),window._wpemojiSettings);\n/* ]]> */\n</script>\n<style id=\'wp-emoji-styles-inline-css\' type=\'text/css\'>\n\n	img.wp-smiley, img.emoji {\n		display: inline !important;\n		border: none !important;\n		box-shadow: none !important;\n		height: 1em !important;\n		width: 1em !important;\n		margin: 0 0.07em !important;\n		vertical-align: -0.1em !important;\n		background: none !important;\n		padding: 0 !important;\n	}\n</style>\n<style id=\'wp-block-library-inline-css\' type=\'text/css\'>\n:root{--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,161;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px;--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}.has-text-align-center{text-align:center}.has-text-align-left{text-align:left}.has-text-align-right{text-align:right}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{clip:rect(1px,1px,1px,1px);word-wrap:normal!important;border:0;-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.screen-reader-text:focus{clip:auto!important;background-color:#ddd;-webkit-clip-path:none;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}\n</style>\n<link rel=\'stylesheet\' id=\'contact-form-7-css\' href=\'https://www.nl.teng-shop.com/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=5.8.2\' type=\'text/css\' media=\'all\' />\n<style id=\'woocommerce-inline-inline-css\' type=\'text/css\'>\n.woocommerce form .form-row .required { visibility: visible; }\n</style>\n<link rel=\'stylesheet\' id=\'flatsome-woocommerce-wishlist-css\' href=\'https://www.nl.teng-shop.com/wp-content/themes/flatsome/inc/integrations/wc-yith-wishlist/wishlist.css?ver=3.10.2\' type=\'text/css\' media=\'all\' />\n<link rel=\'stylesheet\' id=\'flatsome-swatches-frontend-css\' href=\'https://www.nl.teng-shop.com/wp-content/themes/flatsome/assets/css/extensions/flatsome-swatches-frontend.css?ver=3.18.0\' type=\'text/css\' media=\'all\' />\n<link rel=\'stylesheet\' id=\'flatsome-main-css\' href=\'https://www.nl.teng-shop.com/wp-content/themes/flatsome/assets/css/flatsome.css?ver=3.18.0\' type=\'text/css\' media=\'all\' />\n<style id=\'flatsome-main-inline-css\' type=\'text/css\'>\n@font-face {\n				font-family: \"fl-icons\";\n				font-display: block;\n				src: url(https://www.nl.teng-shop.com/wp-content/themes/flatsome/assets/css/icons/fl-icons.eot?v=3.18.0);\n				src:\n					url(https://www.nl.teng-shop.com/wp-content/themes/flatsome/assets/css/icons/fl-icons.eot#iefix?v=3.18.0) format(\"embedded-opentype\"),\n					url(https://www.nl.teng-shop.com/wp-content/themes/flatsome/assets/css/icons/fl-icons.woff2?v=3.18.0) format(\"woff2\"),\n					url(https://www.nl.teng-shop.com/wp-content/themes/flatsome/assets/css/icons/fl-icons.ttf?v=3.18.0) format(\"truetype\"),\n					url(https://www.nl.teng-shop.com/wp-content/themes/flatsome/assets/css/icons/fl-icons.woff?v=3.18.0) format(\"woff\"),\n					url(https://www.nl.teng-shop.com/wp-content/themes/flatsome/assets/css/icons/fl-icons.svg?v=3.18.0#fl-icons) format(\"svg\");\n			}\n</style>\n<link rel=\'stylesheet\' id=\'flatsome-shop-css\' href=\'https://www.nl.teng-shop.com/wp-content/themes/flatsome/assets/css/flatsome-shop.css?ver=3.18.0\' type=\'text/css\' media=\'all\' />\n<link rel=\'stylesheet\' id=\'flatsome-style-css\' href=\'https://www.nl.teng-shop.com/wp-content/themes/flatsome-child/style.css?ver=3.0\' type=\'text/css\' media=\'all\' />\n<script type=\"text/javascript\">\n            window._nslDOMReady = function (callback) {\n                if ( document.readyState === \"complete\" || document.readyState === \"interactive\" ) {\n                    callback();\n                } else {\n                    document.addEventListener( \"DOMContentLoaded\", callback );\n                }\n            };\n            </script><script type=\"text/javascript\" src=\"https://www.nl.teng-shop.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1\" id=\"jquery-core-js\"></script>\n<script type=\"text/javascript\" src=\"https://www.nl.teng-shop.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1\" id=\"jquery-migrate-js\"></script>\n<script type=\"text/javascript\" src=\"https://www.nl.teng-shop.com/wp-content/plugins/duracelltomi-google-tag-manager/js/gtm4wp-woocommerce-enhanced.js?ver=1.18.1\" id=\"gtm4wp-woocommerce-enhanced-js\"></script>\n\n<!-- Google Analytics snippet toegevoegd door Site Kit -->\n<script type=\"text/javascript\" src=\"https://www.googletagmanager.com/gtag/js?id=GT-M69FDJ3\" id=\"google_gtagjs-js\" async></script>\n<script type=\"text/javascript\" id=\"google_gtagjs-js-after\">\n/* <![CDATA[ */\nwindow.dataLayer = window.dataLayer || [];function gtag(){dataLayer.push(arguments);}\ngtag(\'set\', \'linker\', {\"domains\":[\"www.nl.teng-shop.com\"]} );\ngtag(\"js\", new Date());\ngtag(\"set\", \"developer_id.dZTNiMT\", true);\ngtag(\"config\", \"GT-M69FDJ3\");\n/* ]]> */\n</script>\n\n<!-- Einde Google Analytics snippet toegevoegd door Site Kit -->\n<link rel=\"https://api.w.org/\" href=\"https://www.nl.teng-shop.com/wp-json/\" /><link rel=\"alternate\" type=\"application/json\" href=\"https://www.nl.teng-shop.com/wp-json/wp/v2/pages/263\" /><link rel=\"EditURI\" type=\"application/rsd+xml\" title=\"RSD\" href=\"https://www.nl.teng-shop.com/xmlrpc.php?rsd\" />\n<meta name=\"generator\" content=\"WordPress 6.4.1\" />\n<meta name=\"generator\" content=\"WooCommerce 8.2.2\" />\n<link rel=\'shortlink\' href=\'https://www.nl.teng-shop.com/\' />\n<link rel=\"alternate\" type=\"application/json+oembed\" href=\"https://www.nl.teng-shop.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.nl.teng-shop.com%2F\" />\n<link rel=\"alternate\" type=\"text/xml+oembed\" href=\"https://www.nl.teng-shop.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.nl.teng-shop.com%2F&#038;format=xml\" />\n<meta name=\"generator\" content=\"Site Kit by Google 1.113.0\" />\n<!-- Google Tag Manager for WordPress by gtm4wp.com -->\n<!-- GTM Container placement set to automatic -->\n<script data-cfasync=\"false\" data-pagespeed-no-defer type=\"text/javascript\">\n	var dataLayer_content = {\"pagePostType\":\"frontpage\",\"pagePostType2\":\"single-page\",\"pagePostAuthor\":\"Teng Shop\"};\n	dataLayer.push( dataLayer_content );\n</script>\n<script data-cfasync=\"false\">\n(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({\'gtm.start\':\nnew Date().getTime(),event:\'gtm.js\'});var f=d.getElementsByTagName(s)[0],\nj=d.createElement(s),dl=l!=\'dataLayer\'?\'&l=\'+l:\'\';j.async=true;j.src=\n\'//www.googletagmanager.com/gtm.js?id=\'+i+dl;f.parentNode.insertBefore(j,f);\n})(window,document,\'script\',\'dataLayer\',\'GTM-NCMLJ2WS\');\n</script>\n<!-- End Google Tag Manager -->\n<!-- End Google Tag Manager for WordPress by gtm4wp.com --><style>.bg{opacity: 0; transition: opacity 1s; -webkit-transition: opacity 1s;} .bg-loaded{opacity: 1;}</style>	<noscript><style>.woocommerce-product-gallery{ opacity: 1 !important; }</style></noscript>\n	<link rel=\"icon\" href=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/cropped-teng-shop-flavicon-32x32.png\" sizes=\"32x32\" />\n<link rel=\"icon\" href=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/cropped-teng-shop-flavicon-192x192.png\" sizes=\"192x192\" />\n<link rel=\"apple-touch-icon\" href=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/cropped-teng-shop-flavicon-180x180.png\" />\n<meta name=\"msapplication-TileImage\" content=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/cropped-teng-shop-flavicon-270x270.png\" />\n<style type=\"text/css\">div.nsl-container[data-align=\"left\"] {\n    text-align: left;\n}\n\ndiv.nsl-container[data-align=\"center\"] {\n    text-align: center;\n}\n\ndiv.nsl-container[data-align=\"right\"] {\n    text-align: right;\n}\n\n\ndiv.nsl-container div.nsl-container-buttons a[data-plugin=\"nsl\"] {\n    text-decoration: none;\n    box-shadow: none;\n    border: 0;\n}\n\ndiv.nsl-container .nsl-container-buttons {\n    display: flex;\n    padding: 5px 0;\n}\n\ndiv.nsl-container.nsl-container-block .nsl-container-buttons {\n    display: inline-grid;\n    grid-template-columns: minmax(145px, auto);\n}\n\ndiv.nsl-container-block-fullwidth .nsl-container-buttons {\n    flex-flow: column;\n    align-items: center;\n}\n\ndiv.nsl-container-block-fullwidth .nsl-container-buttons a,\ndiv.nsl-container-block .nsl-container-buttons a {\n    flex: 1 1 auto;\n    display: block;\n    margin: 5px 0;\n    width: 100%;\n}\n\ndiv.nsl-container-inline {\n    margin: -5px;\n    text-align: left;\n}\n\ndiv.nsl-container-inline .nsl-container-buttons {\n    justify-content: center;\n    flex-wrap: wrap;\n}\n\ndiv.nsl-container-inline .nsl-container-buttons a {\n    margin: 5px;\n    display: inline-block;\n}\n\ndiv.nsl-container-grid .nsl-container-buttons {\n    flex-flow: row;\n    align-items: center;\n    flex-wrap: wrap;\n}\n\ndiv.nsl-container-grid .nsl-container-buttons a {\n    flex: 1 1 auto;\n    display: block;\n    margin: 5px;\n    max-width: 280px;\n    width: 100%;\n}\n\n@media only screen and (min-width: 650px) {\n    div.nsl-container-grid .nsl-container-buttons a {\n        width: auto;\n    }\n}\n\ndiv.nsl-container .nsl-button {\n    cursor: pointer;\n    vertical-align: top;\n    border-radius: 4px;\n}\n\ndiv.nsl-container .nsl-button-default {\n    color: #fff;\n    display: flex;\n}\n\ndiv.nsl-container .nsl-button-icon {\n    display: inline-block;\n}\n\ndiv.nsl-container .nsl-button-svg-container {\n    flex: 0 0 auto;\n    padding: 8px;\n    display: flex;\n    align-items: center;\n}\n\ndiv.nsl-container svg {\n    height: 24px;\n    width: 24px;\n    vertical-align: top;\n}\n\ndiv.nsl-container .nsl-button-default div.nsl-button-label-container {\n    margin: 0 24px 0 12px;\n    padding: 10px 0;\n    font-family: Helvetica, Arial, sans-serif;\n    font-size: 16px;\n    line-height: 20px;\n    letter-spacing: .25px;\n    overflow: hidden;\n    text-align: center;\n    text-overflow: clip;\n    white-space: nowrap;\n    flex: 1 1 auto;\n    -webkit-font-smoothing: antialiased;\n    -moz-osx-font-smoothing: grayscale;\n    text-transform: none;\n    display: inline-block;\n}\n\ndiv.nsl-container .nsl-button-google[data-skin=\"dark\"] .nsl-button-svg-container {\n    margin: 1px;\n    padding: 7px;\n    border-radius: 3px;\n    background: #fff;\n}\n\ndiv.nsl-container .nsl-button-google[data-skin=\"light\"] {\n    border-radius: 1px;\n    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, .25);\n    color: RGBA(0, 0, 0, 0.54);\n}\n\ndiv.nsl-container .nsl-button-apple .nsl-button-svg-container {\n    padding: 0 6px;\n}\n\ndiv.nsl-container .nsl-button-apple .nsl-button-svg-container svg {\n    height: 40px;\n    width: auto;\n}\n\ndiv.nsl-container .nsl-button-apple[data-skin=\"light\"] {\n    color: #000;\n    box-shadow: 0 0 0 1px #000;\n}\n\ndiv.nsl-container .nsl-button-facebook[data-skin=\"white\"] {\n    color: #000;\n    box-shadow: inset 0 0 0 1px #000;\n}\n\ndiv.nsl-container .nsl-button-facebook[data-skin=\"light\"] {\n    color: #1877F2;\n    box-shadow: inset 0 0 0 1px #1877F2;\n}\n\ndiv.nsl-container .nsl-button-apple div.nsl-button-label-container {\n    font-size: 17px;\n    font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\";\n}\n\ndiv.nsl-container .nsl-button-slack div.nsl-button-label-container {\n    font-size: 17px;\n    font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\";\n}\n\ndiv.nsl-container .nsl-button-slack[data-skin=\"light\"] {\n    color: #000000;\n    box-shadow: inset 0 0 0 1px #DDDDDD;\n}\n\ndiv.nsl-container .nsl-button-tiktok[data-skin=\"light\"] {\n    color: #161823;\n    box-shadow: 0 0 0 1px rgba(22, 24, 35, 0.12);\n}\n\n\ndiv.nsl-container .nsl-button-kakao {\n    color: rgba(0, 0, 0, 0.85);\n}\n\n.nsl-clear {\n    clear: both;\n}\n\n.nsl-container {\n    clear: both;\n}\n\n/*Button align start*/\n\ndiv.nsl-container-inline[data-align=\"left\"] .nsl-container-buttons {\n    justify-content: flex-start;\n}\n\ndiv.nsl-container-inline[data-align=\"center\"] .nsl-container-buttons {\n    justify-content: center;\n}\n\ndiv.nsl-container-inline[data-align=\"right\"] .nsl-container-buttons {\n    justify-content: flex-end;\n}\n\n\ndiv.nsl-container-grid[data-align=\"left\"] .nsl-container-buttons {\n    justify-content: flex-start;\n}\n\ndiv.nsl-container-grid[data-align=\"center\"] .nsl-container-buttons {\n    justify-content: center;\n}\n\ndiv.nsl-container-grid[data-align=\"right\"] .nsl-container-buttons {\n    justify-content: flex-end;\n}\n\ndiv.nsl-container-grid[data-align=\"space-around\"] .nsl-container-buttons {\n    justify-content: space-around;\n}\n\ndiv.nsl-container-grid[data-align=\"space-between\"] .nsl-container-buttons {\n    justify-content: space-between;\n}\n\n/* Button align end*/\n\n/* Redirect */\n\n#nsl-redirect-overlay {\n    display: flex;\n    flex-direction: column;\n    justify-content: center;\n    align-items: center;\n    position: fixed;\n    z-index: 1000000;\n    left: 0;\n    top: 0;\n    width: 100%;\n    height: 100%;\n    backdrop-filter: blur(1px);\n    background-color: RGBA(0, 0, 0, .32);;\n}\n\n#nsl-redirect-overlay-container {\n    display: flex;\n    flex-direction: column;\n    justify-content: center;\n    align-items: center;\n    background-color: white;\n    padding: 30px;\n    border-radius: 10px;\n}\n\n#nsl-redirect-overlay-spinner {\n    content: \'\';\n    display: block;\n    margin: 20px;\n    border: 9px solid RGBA(0, 0, 0, .6);\n    border-top: 9px solid #fff;\n    border-radius: 50%;\n    box-shadow: inset 0 0 0 1px RGBA(0, 0, 0, .6), 0 0 0 1px RGBA(0, 0, 0, .6);\n    width: 40px;\n    height: 40px;\n    animation: nsl-loader-spin 2s linear infinite;\n}\n\n@keyframes nsl-loader-spin {\n    0% {\n        transform: rotate(0deg)\n    }\n    to {\n        transform: rotate(360deg)\n    }\n}\n\n#nsl-redirect-overlay-title {\n    font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n    font-size: 18px;\n    font-weight: bold;\n    color: #3C434A;\n}\n\n#nsl-redirect-overlay-text {\n    font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;\n    text-align: center;\n    font-size: 14px;\n    color: #3C434A;\n}\n\n/* Redirect END*/</style><style id=\"custom-css\" type=\"text/css\">:root {--primary-color: #df4c18;}.tooltipster-base {--tooltip-color: #fff;--tooltip-bg-color: #000;}.off-canvas-right .mfp-content, .off-canvas-left .mfp-content {--drawer-width: 300px;}.off-canvas .mfp-content.off-canvas-cart {--drawer-width: 360px;}.container-width, .full-width .ubermenu-nav, .container, .row{max-width: 1470px}.row.row-collapse{max-width: 1440px}.row.row-small{max-width: 1462.5px}.row.row-large{max-width: 1500px}.header-main{height: 83px}#logo img{max-height: 83px}#logo{width:201px;}.header-bottom{min-height: 10px}.header-top{min-height: 20px}.transparent .header-main{height: 30px}.transparent #logo img{max-height: 30px}.has-transparent + .page-title:first-of-type,.has-transparent + #main > .page-title,.has-transparent + #main > div > .page-title,.has-transparent + #main .page-header-wrapper:first-of-type .page-title{padding-top: 110px;}.header.show-on-scroll,.stuck .header-main{height:70px!important}.stuck #logo img{max-height: 70px!important}.search-form{ width: 60%;}.header-bg-color {background-color: rgba(255,255,255,0.9)}.header-bottom {background-color: #f1f1f1}.top-bar-nav > li > a{line-height: 16px }.header-main .nav > li > a{line-height: 16px }.stuck .header-main .nav > li > a{line-height: 50px }.header-bottom-nav > li > a{line-height: 34px }@media (max-width: 549px) {.header-main{height: 70px}#logo img{max-height: 70px}}.nav-dropdown{font-size:100%}.nav-dropdown-has-arrow li.has-dropdown:after{border-bottom-color: #ffffff;}.nav .nav-dropdown{background-color: #ffffff}.header-top{background-color:#df4c18!important;}body{color: #000000}h1,h2,h3,h4,h5,h6,.heading-font{color: #000000;}@media screen and (max-width: 549px){body{font-size: 100%;}}body{font-family: Lato, sans-serif;}body {font-weight: 400;font-style: normal;}.nav > li > a {font-family: Lato, sans-serif;}.mobile-sidebar-levels-2 .nav > li > ul > li > a {font-family: Lato, sans-serif;}.nav > li > a,.mobile-sidebar-levels-2 .nav > li > ul > li > a {font-weight: 700;font-style: normal;}h1,h2,h3,h4,h5,h6,.heading-font, .off-canvas-center .nav-sidebar.nav-vertical > li > a{font-family: Lato, sans-serif;}h1,h2,h3,h4,h5,h6,.heading-font,.banner h1,.banner h2 {font-weight: 700;font-style: normal;}.alt-font{font-family: \"Dancing Script\", sans-serif;}.alt-font {font-weight: 400!important;font-style: normal!important;}.breadcrumbs{text-transform: none;}.header:not(.transparent) .header-bottom-nav.nav > li > a{color: #000000;}.header:not(.transparent) .header-bottom-nav.nav > li > a:hover,.header:not(.transparent) .header-bottom-nav.nav > li.active > a,.header:not(.transparent) .header-bottom-nav.nav > li.current > a,.header:not(.transparent) .header-bottom-nav.nav > li > a.active,.header:not(.transparent) .header-bottom-nav.nav > li > a.current{color: #df4c18;}.header-bottom-nav.nav-line-bottom > li > a:before,.header-bottom-nav.nav-line-grow > li > a:before,.header-bottom-nav.nav-line > li > a:before,.header-bottom-nav.nav-box > li > a:hover,.header-bottom-nav.nav-box > li.active > a,.header-bottom-nav.nav-pills > li > a:hover,.header-bottom-nav.nav-pills > li.active > a{color:#FFF!important;background-color: #df4c18;}.current .breadcrumb-step, [data-icon-label]:after, .button#place_order,.button.checkout,.checkout-button,.single_add_to_cart_button.button, .sticky-add-to-cart-select-options-button{background-color: #df4c18!important }.price del, .product_list_widget del, del .woocommerce-Price-amount { color: #777777; }ins .woocommerce-Price-amount { color: #000000; }@media screen and (min-width: 550px){.products .box-vertical .box-image{min-width: 768px!important;width: 768px!important;}}.page-title-small + main .product-container > .row{padding-top:0;}button[name=\'update_cart\'] { display: none; }.nav-vertical-fly-out > li + li {border-top-width: 1px; border-top-style: solid;}/* Custom CSS */.woocommerce .out-of-stock-label {background-color: #df4c18 !important; color: #ffffff !important; }.label-new.menu-item > a:after{content:\"Nieuw\";}.label-hot.menu-item > a:after{content:\"Hot\";}.label-sale.menu-item > a:after{content:\"Aanbieding\";}.label-popular.menu-item > a:after{content:\"Populair\";}</style>		<style type=\"text/css\" id=\"wp-custom-css\">\n			b, strong {\n    font-weight: bold !important;\n}\n/* style.css */\n.custom-title {\n    font-family: \'Lato\', sans-serif;\n    font-weight: 700;\n    font-size: 16px;\n    line-height: 21px;\n    color: #000000;\n}\n.footer-title {\n    font-family: \'Lato\', sans-serif;\n    font-weight: 700; /* Bold */\n    font-size: 18px;\n    line-height: 29px;\n    color: #000000; /* Vous avez écrit #00000, mais je suppose que c\'est une petite erreur de frappe et que vous vouliez #000000 */\n}\n.large-footer-title {\n    font-family: \'Lato\', sans-serif;\n    font-weight: 700; /* Bold */\n    font-size: 26px;\n    line-height: 42px;\n    color: #000000;\n}		</style>\n		<style id=\"flatsome-swatches-css\" type=\"text/css\">.variations th,.variations td {display: block;}.variations .label {display: flex;align-items: center;}.variations .label label {margin: .5em 0;}.ux-swatch-selected-value {font-weight: normal;font-size: .9em;}</style><style id=\"kirki-inline-styles\">/* latin-ext */\n@font-face {\n  font-family: \'Lato\';\n  font-style: normal;\n  font-weight: 400;\n  font-display: swap;\n  src: url(/home/customer/www/teng-shop.com/public_html/wp-content/fonts/lato/S6uyw4BMUTPHjxAwWCWtFCfQ7A.woff) format(\'woff\');\n  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;\n}\n/* latin */\n@font-face {\n  font-family: \'Lato\';\n  font-style: normal;\n  font-weight: 400;\n  font-display: swap;\n  src: url(/home/customer/www/teng-shop.com/public_html/wp-content/fonts/lato/S6uyw4BMUTPHjx4wWCWtFCc.woff) format(\'woff\');\n  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;\n}\n/* latin-ext */\n@font-face {\n  font-family: \'Lato\';\n  font-style: normal;\n  font-weight: 700;\n  font-display: swap;\n  src: url(/home/customer/www/teng-shop.com/public_html/wp-content/fonts/lato/S6u9w4BMUTPHh6UVSwaPHw3q5d0N7w.woff) format(\'woff\');\n  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;\n}\n/* latin */\n@font-face {\n  font-family: \'Lato\';\n  font-style: normal;\n  font-weight: 700;\n  font-display: swap;\n  src: url(/home/customer/www/teng-shop.com/public_html/wp-content/fonts/lato/S6u9w4BMUTPHh6UVSwiPHw3q5d0.woff) format(\'woff\');\n  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;\n}/* vietnamese */\n@font-face {\n  font-family: \'Dancing Script\';\n  font-style: normal;\n  font-weight: 400;\n  font-display: swap;\n  src: url(/home/customer/www/nl.teng-shop.com/public_html/wp-content/fonts/dancing-script/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSo3Rep6hNX6pmRMjLo.woff) format(\'woff\');\n  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;\n}\n/* latin-ext */\n@font-face {\n  font-family: \'Dancing Script\';\n  font-style: normal;\n  font-weight: 400;\n  font-display: swap;\n  src: url(/home/customer/www/nl.teng-shop.com/public_html/wp-content/fonts/dancing-script/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSo3ROp6hNX6pmRMjLo.woff) format(\'woff\');\n  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;\n}\n/* latin */\n@font-face {\n  font-family: \'Dancing Script\';\n  font-style: normal;\n  font-weight: 400;\n  font-display: swap;\n  src: url(/home/customer/www/nl.teng-shop.com/public_html/wp-content/fonts/dancing-script/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSo3Sup6hNX6pmRM.woff) format(\'woff\');\n  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;\n}</style></head>\n\n<body class=\"home page-template page-template-page-blank page-template-page-blank-php page page-id-263 theme-flatsome woocommerce-no-js nav-dropdown-has-arrow nav-dropdown-has-shadow\">\n\n\n<!-- GTM Container placement set to automatic -->\n<!-- Google Tag Manager (noscript) -->\n				<noscript><iframe src=\"https://www.googletagmanager.com/ns.html?id=GTM-NCMLJ2WS\" height=\"0\" width=\"0\" style=\"display:none;visibility:hidden\" aria-hidden=\"true\"></iframe></noscript>\n<!-- End Google Tag Manager (noscript) -->\n<a class=\"skip-link screen-reader-text\" href=\"#main\">Ga naar inhoud</a>\n\n<div id=\"wrapper\">\n\n	\n	<header id=\"header\" class=\"header has-sticky sticky-jump\">\n		<div class=\"header-wrapper\">\n			<div id=\"top-bar\" class=\"header-top nav-dark flex-has-center\">\n    <div class=\"flex-row container\">\n      <div class=\"flex-col hide-for-medium flex-left\">\n          <ul class=\"nav nav-left medium-nav-center nav-small  nav-divided\">\n                        </ul>\n      </div>\n\n      <div class=\"flex-col hide-for-medium flex-center\">\n          <ul class=\"nav nav-center nav-small  nav-divided\">\n              <li class=\"html custom html_topbar_left\"><strong class=\"uppercase\">Gratis verzending vanaf 70€ 🎁</strong></li>          </ul>\n      </div>\n\n      <div class=\"flex-col hide-for-medium flex-right\">\n         <ul class=\"nav top-bar-nav nav-right nav-small  nav-divided\">\n              <li class=\"account-item has-icon\n    \"\n>\n\n<a href=\"https://www.nl.teng-shop.com/mijn-paard/\"\n    class=\"nav-top-link nav-top-not-logged-in \"\n    data-open=\"#login-form-popup\"  >\n    <span>\n    Inloggen      </span>\n  \n</a>\n\n\n\n</li>\n          </ul>\n      </div>\n\n            <div class=\"flex-col show-for-medium flex-grow\">\n          <ul class=\"nav nav-center nav-small mobile-nav  nav-divided\">\n              <li class=\"html custom html_topbar_left\"><strong class=\"uppercase\">Gratis verzending vanaf 70€ 🎁</strong></li>          </ul>\n      </div>\n      \n    </div>\n</div>\n<div id=\"masthead\" class=\"header-main show-logo-center\">\n      <div class=\"header-inner flex-row container logo-center medium-logo-center\" role=\"navigation\">\n\n          <!-- Logo -->\n          <div id=\"logo\" class=\"flex-col logo\">\n            \n<!-- Header logo -->\n<a href=\"https://www.nl.teng-shop.com/\" title=\"Teng Shop\" rel=\"home\">\n		<img width=\"833\" height=\"259\" src=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/teng-shop-v2-min.png\" class=\"header_logo header-logo\" alt=\"Teng Shop\"/><img  width=\"833\" height=\"259\" src=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/teng-shop-v2-min.png\" class=\"header-logo-dark\" alt=\"Teng Shop\"/></a>\n          </div>\n\n          <!-- Mobile Left Elements -->\n          <div class=\"flex-col show-for-medium flex-left\">\n            <ul class=\"mobile-nav nav nav-left \">\n              <li class=\"nav-icon has-icon\">\n  		<a href=\"#\" data-open=\"#main-menu\" data-pos=\"left\" data-bg=\"main-menu-overlay\" data-color=\"\" class=\"is-small\" aria-label=\"Menu\" aria-controls=\"main-menu\" aria-expanded=\"false\">\n\n		  <i class=\"icon-menu\" ></i>\n		  		</a>\n	</li>\n            </ul>\n          </div>\n\n          <!-- Left Elements -->\n          <div class=\"flex-col hide-for-medium flex-left\n            \">\n            <ul class=\"header-nav header-nav-main nav nav-left  nav-uppercase\" >\n              <li class=\"header-search-form search-form html relative has-icon\">\n	<div class=\"header-search-form-wrapper\">\n		<div class=\"searchform-wrapper ux-search-box relative form-flat is-normal\"><form role=\"search\" method=\"get\" class=\"searchform\" action=\"https://www.nl.teng-shop.com/\">\n	<div class=\"flex-row relative\">\n						<div class=\"flex-col flex-grow\">\n			<label class=\"screen-reader-text\" for=\"woocommerce-product-search-field-0\">Zoeken naar:</label>\n			<input type=\"search\" id=\"woocommerce-product-search-field-0\" class=\"search-field mb-0\" placeholder=\"Zoeken naar...\" value=\"\" name=\"s\" />\n			<input type=\"hidden\" name=\"post_type\" value=\"product\" />\n					</div>\n		<div class=\"flex-col\">\n			<button type=\"submit\" value=\"Zoeken\" class=\"ux-search-submit submit-button secondary button  icon mb-0\" aria-label=\"Verzenden\">\n				<i class=\"icon-search\" ></i>			</button>\n		</div>\n	</div>\n	<div class=\"live-search-results text-left z-top\"></div>\n</form>\n</div>	</div>\n</li>\n            </ul>\n          </div>\n\n          <!-- Right Elements -->\n          <div class=\"flex-col hide-for-medium flex-right\">\n            <ul class=\"header-nav header-nav-main nav nav-right  nav-uppercase\">\n              <li class=\"cart-item has-icon has-dropdown\">\n<div class=\"header-button\">\n<a href=\"https://www.nl.teng-shop.com/mand/\" class=\"header-cart-link icon primary button round is-small\" title=\"Winkelwagen\" >\n\n<span class=\"header-cart-title\">\n   Winkelwagen   /      <span class=\"cart-price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&euro;</span>0.00</bdi></span></span>\n  </span>\n\n    <i class=\"icon-shopping-basket\"\n    data-icon-label=\"0\">\n  </i>\n  </a>\n</div>\n <ul class=\"nav-dropdown nav-dropdown-simple\">\n    <li class=\"html widget_shopping_cart\">\n      <div class=\"widget_shopping_cart_content\">\n        \n\n	<div class=\"ux-mini-cart-empty flex flex-row-col text-center pt pb\">\n				<div class=\"ux-mini-cart-empty-icon\">\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 17 19\" style=\"opacity: .1;height:80px;\">\n				<path d=\"M8.5 0C6.7 0 5.3 1.2 5.3 2.7v2H2.1c-.3 0-.6.3-.7.7L0 18.2c0 .4.2.8.6.8h15.7c.4 0 .7-.3.7-.7v-.1L15.6 5.4c0-.3-.3-.6-.7-.6h-3.2v-2c0-1.6-1.4-2.8-3.2-2.8zM6.7 2.7c0-.8.8-1.4 1.8-1.4s1.8.6 1.8 1.4v2H6.7v-2zm7.5 3.4 1.3 11.5h-14L2.8 6.1h2.5v1.4c0 .4.3.7.7.7.4 0 .7-.3.7-.7V6.1h3.5v1.4c0 .4.3.7.7.7s.7-.3.7-.7V6.1h2.6z\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" fill=\"#303031\"></path>\n			</svg>\n		</div>\n				<p class=\"woocommerce-mini-cart__empty-message empty\">Geen producten in de winkelwagen.</p>\n					<p class=\"return-to-shop\">\n				<a class=\"button primary wc-backward\" href=\"https://www.nl.teng-shop.com/alle-producten/\">\n					Terug naar winkel				</a>\n			</p>\n				</div>\n\n\n      </div>\n    </li>\n     </ul>\n\n</li>\n            </ul>\n          </div>\n\n          <!-- Mobile Right Elements -->\n          <div class=\"flex-col show-for-medium flex-right\">\n            <ul class=\"mobile-nav nav nav-right \">\n              <li class=\"header-search header-search-dropdown has-icon has-dropdown menu-item-has-children\">\n	<div class=\"header-button\">	<a href=\"#\" aria-label=\"Zoeken\" class=\"icon button circle is-outline is-small\"><i class=\"icon-search\" ></i></a>\n	</div>	<ul class=\"nav-dropdown nav-dropdown-simple\">\n	 	<li class=\"header-search-form search-form html relative has-icon\">\n	<div class=\"header-search-form-wrapper\">\n		<div class=\"searchform-wrapper ux-search-box relative form-flat is-normal\"><form role=\"search\" method=\"get\" class=\"searchform\" action=\"https://www.nl.teng-shop.com/\">\n	<div class=\"flex-row relative\">\n						<div class=\"flex-col flex-grow\">\n			<label class=\"screen-reader-text\" for=\"woocommerce-product-search-field-1\">Zoeken naar:</label>\n			<input type=\"search\" id=\"woocommerce-product-search-field-1\" class=\"search-field mb-0\" placeholder=\"Zoeken naar...\" value=\"\" name=\"s\" />\n			<input type=\"hidden\" name=\"post_type\" value=\"product\" />\n					</div>\n		<div class=\"flex-col\">\n			<button type=\"submit\" value=\"Zoeken\" class=\"ux-search-submit submit-button secondary button  icon mb-0\" aria-label=\"Verzenden\">\n				<i class=\"icon-search\" ></i>			</button>\n		</div>\n	</div>\n	<div class=\"live-search-results text-left z-top\"></div>\n</form>\n</div>	</div>\n</li>\n	</ul>\n</li>\n<li class=\"cart-item has-icon\">\n\n<div class=\"header-button\">\n		<a href=\"https://www.nl.teng-shop.com/mand/\" class=\"header-cart-link icon primary button round is-small off-canvas-toggle nav-top-link\" title=\"Winkelwagen\" data-open=\"#cart-popup\" data-class=\"off-canvas-cart\" data-pos=\"right\" >\n\n    <i class=\"icon-shopping-basket\"\n    data-icon-label=\"0\">\n  </i>\n  </a>\n</div>\n\n  <!-- Cart Sidebar Popup -->\n  <div id=\"cart-popup\" class=\"mfp-hide\">\n  <div class=\"cart-popup-inner inner-padding cart-popup-inner--sticky\"\">\n      <div class=\"cart-popup-title text-center\">\n          <span class=\"heading-font uppercase\">Winkelwagen</span>\n          <div class=\"is-divider\"></div>\n      </div>\n      <div class=\"widget woocommerce widget_shopping_cart\"><div class=\"widget_shopping_cart_content\"></div></div>             <div class=\"payment-icons inline-block\"><div class=\"payment-icon\"><svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"  viewBox=\"0 0 64 32\">\n<path d=\"M10.781 7.688c-0.251-1.283-1.219-1.688-2.344-1.688h-8.376l-0.061 0.405c5.749 1.469 10.469 4.595 12.595 10.501l-1.813-9.219zM13.125 19.688l-0.531-2.781c-1.096-2.907-3.752-5.594-6.752-6.813l4.219 15.939h5.469l8.157-20.032h-5.501l-5.062 13.688zM27.72 26.061l3.248-20.061h-5.187l-3.251 20.061h5.189zM41.875 5.656c-5.125 0-8.717 2.72-8.749 6.624-0.032 2.877 2.563 4.469 4.531 5.439 2.032 0.968 2.688 1.624 2.688 2.499 0 1.344-1.624 1.939-3.093 1.939-2.093 0-3.219-0.251-4.875-1.032l-0.688-0.344-0.719 4.499c1.219 0.563 3.437 1.064 5.781 1.064 5.437 0.032 8.97-2.688 9.032-6.843 0-2.282-1.405-4-4.376-5.439-1.811-0.904-2.904-1.563-2.904-2.499 0-0.843 0.936-1.72 2.968-1.72 1.688-0.029 2.936 0.314 3.875 0.752l0.469 0.248 0.717-4.344c-1.032-0.406-2.656-0.844-4.656-0.844zM55.813 6c-1.251 0-2.189 0.376-2.72 1.688l-7.688 18.374h5.437c0.877-2.467 1.096-3 1.096-3 0.592 0 5.875 0 6.624 0 0 0 0.157 0.688 0.624 3h4.813l-4.187-20.061h-4zM53.405 18.938c0 0 0.437-1.157 2.064-5.594-0.032 0.032 0.437-1.157 0.688-1.907l0.374 1.72c0.968 4.781 1.189 5.781 1.189 5.781-0.813 0-3.283 0-4.315 0z\"></path>\n</svg>\n</div><div class=\"payment-icon\"><svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"  viewBox=\"0 0 64 32\">\n<path d=\"M7.114 14.656c-1.375-0.5-2.125-0.906-2.125-1.531 0-0.531 0.437-0.812 1.188-0.812 1.437 0 2.875 0.531 3.875 1.031l0.563-3.5c-0.781-0.375-2.406-1-4.656-1-1.594 0-2.906 0.406-3.844 1.188-1 0.812-1.5 2-1.5 3.406 0 2.563 1.563 3.688 4.125 4.594 1.625 0.594 2.188 1 2.188 1.656 0 0.625-0.531 0.969-1.5 0.969-1.188 0-3.156-0.594-4.437-1.343l-0.563 3.531c1.094 0.625 3.125 1.281 5.25 1.281 1.688 0 3.063-0.406 4.031-1.157 1.063-0.843 1.594-2.062 1.594-3.656-0.001-2.625-1.595-3.719-4.188-4.657zM21.114 9.125h-3v-4.219l-4.031 0.656-0.563 3.563-1.437 0.25-0.531 3.219h1.937v6.844c0 1.781 0.469 3 1.375 3.75 0.781 0.625 1.907 0.938 3.469 0.938 1.219 0 1.937-0.219 2.468-0.344v-3.688c-0.282 0.063-0.938 0.22-1.375 0.22-0.906 0-1.313-0.5-1.313-1.563v-6.156h2.406l0.595-3.469zM30.396 9.031c-0.313-0.062-0.594-0.093-0.876-0.093-1.312 0-2.374 0.687-2.781 1.937l-0.313-1.75h-4.093v14.719h4.687v-9.563c0.594-0.719 1.437-0.968 2.563-0.968 0.25 0 0.5 0 0.812 0.062v-4.344zM33.895 2.719c-1.375 0-2.468 1.094-2.468 2.469s1.094 2.5 2.468 2.5 2.469-1.124 2.469-2.5-1.094-2.469-2.469-2.469zM36.239 23.844v-14.719h-4.687v14.719h4.687zM49.583 10.468c-0.843-1.094-2-1.625-3.469-1.625-1.343 0-2.531 0.563-3.656 1.75l-0.25-1.469h-4.125v20.155l4.688-0.781v-4.719c0.719 0.219 1.469 0.344 2.125 0.344 1.157 0 2.876-0.313 4.188-1.75 1.281-1.375 1.907-3.5 1.907-6.313 0-2.499-0.469-4.405-1.407-5.593zM45.677 19.532c-0.375 0.687-0.969 1.094-1.625 1.094-0.468 0-0.906-0.093-1.281-0.281v-7c0.812-0.844 1.531-0.938 1.781-0.938 1.188 0 1.781 1.313 1.781 3.812 0.001 1.437-0.219 2.531-0.656 3.313zM62.927 10.843c-1.032-1.312-2.563-2-4.501-2-4 0-6.468 2.938-6.468 7.688 0 2.625 0.656 4.625 1.968 5.875 1.157 1.157 2.844 1.719 5.032 1.719 2 0 3.844-0.469 5-1.251l-0.501-3.219c-1.157 0.625-2.5 0.969-4 0.969-0.906 0-1.532-0.188-1.969-0.594-0.5-0.406-0.781-1.094-0.875-2.062h7.75c0.031-0.219 0.062-1.281 0.062-1.625 0.001-2.344-0.5-4.188-1.499-5.5zM56.583 15.094c0.125-2.093 0.687-3.062 1.75-3.062s1.625 1 1.687 3.062h-3.437z\"></path>\n</svg>\n</div><div class=\"payment-icon\"><svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"  viewBox=\"0 0 64 32\">\n<path d=\"M42.667-0c-4.099 0-7.836 1.543-10.667 4.077-2.831-2.534-6.568-4.077-10.667-4.077-8.836 0-16 7.163-16 16s7.164 16 16 16c4.099 0 7.835-1.543 10.667-4.077 2.831 2.534 6.568 4.077 10.667 4.077 8.837 0 16-7.163 16-16s-7.163-16-16-16zM11.934 19.828l0.924-5.809-2.112 5.809h-1.188v-5.809l-1.056 5.809h-1.584l1.32-7.657h2.376v4.753l1.716-4.753h2.508l-1.32 7.657h-1.585zM19.327 18.244c-0.088 0.528-0.178 0.924-0.264 1.188v0.396h-1.32v-0.66c-0.353 0.528-0.924 0.792-1.716 0.792-0.442 0-0.792-0.132-1.056-0.396-0.264-0.351-0.396-0.792-0.396-1.32 0-0.792 0.218-1.364 0.66-1.716 0.614-0.44 1.364-0.66 2.244-0.66h0.66v-0.396c0-0.351-0.353-0.528-1.056-0.528-0.442 0-1.012 0.088-1.716 0.264 0.086-0.351 0.175-0.792 0.264-1.32 0.703-0.264 1.32-0.396 1.848-0.396 1.496 0 2.244 0.616 2.244 1.848 0 0.353-0.046 0.749-0.132 1.188-0.089 0.616-0.179 1.188-0.264 1.716zM24.079 15.076c-0.264-0.086-0.66-0.132-1.188-0.132s-0.792 0.177-0.792 0.528c0 0.177 0.044 0.31 0.132 0.396l0.528 0.264c0.792 0.442 1.188 1.012 1.188 1.716 0 1.409-0.838 2.112-2.508 2.112-0.792 0-1.366-0.044-1.716-0.132 0.086-0.351 0.175-0.836 0.264-1.452 0.703 0.177 1.188 0.264 1.452 0.264 0.614 0 0.924-0.175 0.924-0.528 0-0.175-0.046-0.308-0.132-0.396-0.178-0.175-0.396-0.308-0.66-0.396-0.792-0.351-1.188-0.924-1.188-1.716 0-1.407 0.792-2.112 2.376-2.112 0.792 0 1.32 0.045 1.584 0.132l-0.265 1.451zM27.512 15.208h-0.924c0 0.442-0.046 0.838-0.132 1.188 0 0.088-0.022 0.264-0.066 0.528-0.046 0.264-0.112 0.442-0.198 0.528v0.528c0 0.353 0.175 0.528 0.528 0.528 0.175 0 0.35-0.044 0.528-0.132l-0.264 1.452c-0.264 0.088-0.66 0.132-1.188 0.132-0.881 0-1.32-0.44-1.32-1.32 0-0.528 0.086-1.099 0.264-1.716l0.66-4.225h1.584l-0.132 0.924h0.792l-0.132 1.585zM32.66 17.32h-3.3c0 0.442 0.086 0.749 0.264 0.924 0.264 0.264 0.66 0.396 1.188 0.396s1.1-0.175 1.716-0.528l-0.264 1.584c-0.442 0.177-1.012 0.264-1.716 0.264-1.848 0-2.772-0.924-2.772-2.773 0-1.142 0.264-2.024 0.792-2.64 0.528-0.703 1.188-1.056 1.98-1.056 0.703 0 1.274 0.22 1.716 0.66 0.35 0.353 0.528 0.881 0.528 1.584 0.001 0.617-0.046 1.145-0.132 1.585zM35.3 16.132c-0.264 0.97-0.484 2.201-0.66 3.697h-1.716l0.132-0.396c0.35-2.463 0.614-4.4 0.792-5.809h1.584l-0.132 0.924c0.264-0.44 0.528-0.703 0.792-0.792 0.264-0.264 0.528-0.308 0.792-0.132-0.088 0.088-0.31 0.706-0.66 1.848-0.353-0.086-0.661 0.132-0.925 0.66zM41.241 19.697c-0.353 0.177-0.838 0.264-1.452 0.264-0.881 0-1.584-0.308-2.112-0.924-0.528-0.528-0.792-1.32-0.792-2.376 0-1.32 0.35-2.42 1.056-3.3 0.614-0.879 1.496-1.32 2.64-1.32 0.44 0 1.056 0.132 1.848 0.396l-0.264 1.584c-0.528-0.264-1.012-0.396-1.452-0.396-0.707 0-1.235 0.264-1.584 0.792-0.353 0.442-0.528 1.144-0.528 2.112 0 0.616 0.132 1.056 0.396 1.32 0.264 0.353 0.614 0.528 1.056 0.528 0.44 0 0.924-0.132 1.452-0.396l-0.264 1.717zM47.115 15.868c-0.046 0.264-0.066 0.484-0.066 0.66-0.088 0.442-0.178 1.035-0.264 1.782-0.088 0.749-0.178 1.254-0.264 1.518h-1.32v-0.66c-0.353 0.528-0.924 0.792-1.716 0.792-0.442 0-0.792-0.132-1.056-0.396-0.264-0.351-0.396-0.792-0.396-1.32 0-0.792 0.218-1.364 0.66-1.716 0.614-0.44 1.32-0.66 2.112-0.66h0.66c0.086-0.086 0.132-0.218 0.132-0.396 0-0.351-0.353-0.528-1.056-0.528-0.442 0-1.012 0.088-1.716 0.264 0-0.351 0.086-0.792 0.264-1.32 0.703-0.264 1.32-0.396 1.848-0.396 1.496 0 2.245 0.616 2.245 1.848 0.001 0.089-0.021 0.264-0.065 0.529zM49.69 16.132c-0.178 0.528-0.396 1.762-0.66 3.697h-1.716l0.132-0.396c0.35-1.935 0.614-3.872 0.792-5.809h1.584c0 0.353-0.046 0.66-0.132 0.924 0.264-0.44 0.528-0.703 0.792-0.792 0.35-0.175 0.614-0.218 0.792-0.132-0.353 0.442-0.574 1.056-0.66 1.848-0.353-0.086-0.66 0.132-0.925 0.66zM54.178 19.828l0.132-0.528c-0.353 0.442-0.838 0.66-1.452 0.66-0.707 0-1.188-0.218-1.452-0.66-0.442-0.614-0.66-1.232-0.66-1.848 0-1.142 0.308-2.067 0.924-2.773 0.44-0.703 1.056-1.056 1.848-1.056 0.528 0 1.056 0.264 1.584 0.792l0.264-2.244h1.716l-1.32 7.657h-1.585zM16.159 17.98c0 0.442 0.175 0.66 0.528 0.66 0.35 0 0.614-0.132 0.792-0.396 0.264-0.264 0.396-0.66 0.396-1.188h-0.397c-0.881 0-1.32 0.31-1.32 0.924zM31.076 15.076c-0.088 0-0.178-0.043-0.264-0.132h-0.264c-0.528 0-0.881 0.353-1.056 1.056h1.848v-0.396l-0.132-0.264c-0.001-0.086-0.047-0.175-0.133-0.264zM43.617 17.98c0 0.442 0.175 0.66 0.528 0.66 0.35 0 0.614-0.132 0.792-0.396 0.264-0.264 0.396-0.66 0.396-1.188h-0.396c-0.881 0-1.32 0.31-1.32 0.924zM53.782 15.076c-0.353 0-0.66 0.22-0.924 0.66-0.178 0.264-0.264 0.749-0.264 1.452 0 0.792 0.264 1.188 0.792 1.188 0.35 0 0.66-0.175 0.924-0.528 0.264-0.351 0.396-0.879 0.396-1.584-0.001-0.792-0.311-1.188-0.925-1.188z\"></path>\n</svg>\n</div><div class=\"payment-icon\"><svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"  viewBox=\"0 0 64 32\">\n<path d=\"M16.398 13.428c0.034 3.535 3.201 4.71 3.236 4.726-0.027 0.083-0.506 1.676-1.668 3.322-1.005 1.423-2.048 2.84-3.692 2.87-1.615 0.029-2.134-0.927-3.98-0.927s-2.422 0.898-3.951 0.956c-1.586 0.058-2.794-1.539-3.807-2.956-2.070-2.9-3.653-8.194-1.528-11.768 1.055-1.775 2.942-2.899 4.989-2.927 1.558-0.029 3.027 1.015 3.98 1.015s2.738-1.255 4.616-1.071c0.786 0.032 2.993 0.308 4.41 2.317-0.114 0.068-2.633 1.489-2.605 4.444zM13.363 4.749c0.842-0.987 1.409-2.362 1.254-3.729-1.213 0.047-2.682 0.783-3.552 1.77-0.78 0.874-1.464 2.273-1.279 3.613 1.353 0.101 2.735-0.666 3.577-1.654zM25.55 3.058c0.624-0.105 1.313-0.2 2.065-0.284s1.581-0.126 2.485-0.126c1.291 0 2.404 0.152 3.339 0.457s1.704 0.741 2.307 1.308c0.517 0.504 0.92 1.103 1.21 1.796s0.435 1.492 0.435 2.395c0 1.092-0.199 2.049-0.596 2.868s-0.941 1.507-1.629 2.064c-0.688 0.557-1.506 0.972-2.452 1.245s-1.979 0.41-3.098 0.41c-1.011 0-1.86-0.073-2.548-0.22v9.076h-1.517v-20.989zM27.068 13.648c0.366 0.104 0.774 0.178 1.226 0.22s0.935 0.063 1.451 0.063c1.936 0 3.436-0.441 4.501-1.323s1.597-2.174 1.597-3.876c0-0.819-0.14-1.534-0.42-2.143s-0.677-1.108-1.193-1.497c-0.516-0.388-1.129-0.683-1.839-0.882s-1.495-0.3-2.356-0.3c-0.688 0-1.28 0.027-1.774 0.079s-0.893 0.11-1.193 0.173l0.001 9.487zM49.452 20.454c0 0.61 0.010 1.219 0.032 1.828s0.086 1.197 0.194 1.765h-1.42l-0.225-2.143h-0.065c-0.194 0.294-0.441 0.588-0.742 0.882s-0.65 0.562-1.048 0.803c-0.398 0.242-0.85 0.436-1.355 0.583s-1.059 0.22-1.662 0.22c-0.753 0-1.414-0.121-1.985-0.362s-1.038-0.557-1.403-0.946c-0.366-0.389-0.64-0.836-0.822-1.339s-0.274-1.008-0.274-1.513c0-1.786 0.769-3.162 2.307-4.129s3.855-1.429 6.953-1.387v-0.41c0-0.399-0.038-0.856-0.113-1.371s-0.242-1.003-0.5-1.465c-0.258-0.462-0.645-0.851-1.161-1.166s-1.215-0.473-2.097-0.473c-0.666 0-1.328 0.1-1.983 0.299s-1.253 0.478-1.791 0.835l-0.484-1.103c0.688-0.462 1.399-0.793 2.13-0.992s1.495-0.3 2.29-0.3c1.076 0 1.952 0.178 2.63 0.536s1.21 0.819 1.597 1.387c0.387 0.567 0.651 1.202 0.791 1.906s0.21 1.402 0.21 2.096l-0.001 5.957zM47.936 15.948c-0.818-0.021-1.673 0.010-2.566 0.094s-1.715 0.268-2.468 0.552c-0.753 0.284-1.377 0.699-1.871 1.245s-0.742 1.271-0.742 2.175c0 1.072 0.312 1.859 0.935 2.364s1.323 0.757 2.097 0.757c0.624 0 1.182-0.084 1.677-0.252s0.925-0.394 1.291-0.677c0.366-0.283 0.672-0.603 0.919-0.961s0.436-0.725 0.565-1.103c0.108-0.421 0.161-0.726 0.161-0.915l0.001-3.277zM52.418 8.919l3.935 9.833c0.215 0.547 0.42 1.108 0.613 1.686s0.366 1.108 0.516 1.591h0.065c0.15-0.462 0.322-0.982 0.516-1.56s0.409-1.171 0.645-1.781l3.679-9.77h1.613l-4.484 11.094c-0.452 1.177-0.877 2.243-1.275 3.199s-0.801 1.817-1.21 2.585c-0.409 0.767-0.822 1.445-1.242 2.033s-0.887 1.103-1.404 1.544c-0.602 0.525-1.156 0.908-1.661 1.151s-0.844 0.394-1.016 0.457l-0.517-1.229c0.387-0.168 0.818-0.388 1.291-0.662s0.936-0.63 1.387-1.072c0.387-0.378 0.812-0.877 1.274-1.497s0.876-1.371 1.242-2.254c0.13-0.336 0.194-0.557 0.194-0.662 0-0.147-0.065-0.367-0.194-0.662l-5.582-14.025h1.614z\"></path>\n</svg>\n</div><div class=\"payment-icon\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 32\">\n	<path d=\"M30.479 16.275v7.365h-2.337V5.452h6.197a5.603 5.603 0 014.012 1.574 5.062 5.062 0 011.676 3.839 5.037 5.037 0 01-1.676 3.86c-1.083 1.033-2.42 1.55-4.012 1.548h-3.86v.002zm0-8.584v6.35h3.918a3.089 3.089 0 002.312-.941 3.098 3.098 0 000-4.445 3.047 3.047 0 00-2.312-.965h-3.918v.001zM45.41 10.79c1.727 0 3.09.462 4.09 1.385s1.498 2.188 1.498 3.796v7.67h-2.235v-1.727h-.102c-.968 1.422-2.254 2.133-3.86 2.133-1.371 0-2.518-.406-3.441-1.219a3.895 3.895 0 01-1.384-3.047c0-1.288.486-2.312 1.46-3.073.973-.76 2.272-1.141 3.897-1.143 1.388 0 2.53.254 3.428.762v-.534a2.662 2.662 0 00-.965-2.068 3.31 3.31 0 00-2.255-.852c-1.305 0-2.338.55-3.098 1.651l-2.058-1.296c1.132-1.625 2.807-2.438 5.025-2.438zm-3.023 9.041a1.864 1.864 0 00.775 1.524 2.85 2.85 0 001.816.61 3.725 3.725 0 002.628-1.092c.774-.728 1.161-1.583 1.161-2.564-.729-.58-1.744-.87-3.048-.87-.949 0-1.74.228-2.374.686-.64.464-.957 1.029-.957 1.706zm21.439-8.634l-7.802 17.93h-2.411l2.895-6.274-5.13-11.656h2.54l3.707 8.94h.05l3.607-8.94h2.544zM11.003 8.137a5.673 5.673 0 014.009 1.567l2.982-2.982A10.04 10.04 0 0011.004 4a10.449 10.449 0 000 20.897c2.82 0 5.193-.926 6.925-2.522l-.002-.002h.002c1.972-1.818 3.108-4.507 3.108-7.687 0-.712-.06-1.422-.18-2.124h-9.854v4.024h5.644a4.834 4.834 0 01-2.087 3.175v.002c-.937.635-2.145.998-3.557.998-2.725 0-5.038-1.837-5.865-4.313a6.26 6.26 0 010-4c.827-2.475 3.14-4.312 5.865-4.312z\"/>\n</svg>\n</div></div>  </div>\n  </div>\n\n</li>\n            </ul>\n          </div>\n\n      </div>\n\n            <div class=\"container\"><div class=\"top-divider full-width\"></div></div>\n      </div>\n<div id=\"wide-nav\" class=\"header-bottom wide-nav flex-has-center hide-for-medium\">\n    <div class=\"flex-row container\">\n\n            \n                        <div class=\"flex-col hide-for-medium flex-center\">\n                <ul class=\"nav header-nav header-bottom-nav nav-center  nav-uppercase\">\n                    <li id=\"menu-item-9260\" class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-9260 menu-item-design-default has-dropdown\"><a href=\"/collections/chinese-kleding-mannen/\" class=\"nav-top-link\" aria-expanded=\"false\" aria-haspopup=\"menu\">Man<i class=\"icon-angle-down\" ></i></a>\n<ul class=\"sub-menu nav-dropdown nav-dropdown-simple\">\n	<li id=\"menu-item-9261\" class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9261\"><a href=\"/collections/chinese-broek/\">Broek</a></li>\n	<li id=\"menu-item-9262\" class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9262\"><a href=\"/collections/chinese-jas-mannen-tangzhuang/\">Jassen</a></li>\n	<li id=\"menu-item-9263\" class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9263\"><a href=\"/collections/chinese-t-shirts/\">T-shirts</a></li>\n</ul>\n</li>\n<li id=\"menu-item-9264\" class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-9264 menu-item-design-default has-dropdown\"><a href=\"/collections/chinese-kleding-vrouwen/\" class=\"nav-top-link\" aria-expanded=\"false\" aria-haspopup=\"menu\">Vrouw<i class=\"icon-angle-down\" ></i></a>\n<ul class=\"sub-menu nav-dropdown nav-dropdown-simple\">\n	<li id=\"menu-item-9265\" class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9265\"><a href=\"/collections/chinese-jurken-qipao/\">Jurken</a></li>\n	<li id=\"menu-item-9266\" class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9266\"><a href=\"/collections/hanfu/\">Hanfu</a></li>\n	<li id=\"menu-item-9267\" class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9267\"><a href=\"/collections/chinese-jas-vrouwen/\">Jassen</a></li>\n</ul>\n</li>\n<li id=\"menu-item-9269\" class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-9269 menu-item-design-default has-dropdown\"><a href=\"/collections/chinese-versiering/\" class=\"nav-top-link\" aria-expanded=\"false\" aria-haspopup=\"menu\">Decoratie<i class=\"icon-angle-down\" ></i></a>\n<ul class=\"sub-menu nav-dropdown nav-dropdown-simple\">\n	<li id=\"menu-item-9270\" class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9270\"><a href=\"/collections/chinese-lampionnen/\">Lampionnen</a></li>\n	<li id=\"menu-item-9271\" class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9271\"><a href=\"/collections/chinese-gordijnen/\">Gordijnen</a></li>\n	<li id=\"menu-item-9272\" class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9272\"><a href=\"/collections/chinese-schilderijen/\">Schilderijen</a></li>\n	<li id=\"menu-item-9273\" class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9273\"><a href=\"/collections/chinese-beelden/\">Beelden</a></li>\n</ul>\n</li>\n<li id=\"menu-item-9274\" class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-9274 menu-item-design-default has-dropdown\"><a href=\"/collections/chinese-accessoires/\" class=\"nav-top-link\" aria-expanded=\"false\" aria-haspopup=\"menu\">Accessoires<i class=\"icon-angle-down\" ></i></a>\n<ul class=\"sub-menu nav-dropdown nav-dropdown-simple\">\n	<li id=\"menu-item-9275\" class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9275\"><a href=\"/collections/chinese-waaier/\">Waaier</a></li>\n	<li id=\"menu-item-9276\" class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9276\"><a href=\"/collections/chinese-parapluutjes/\">Paraplu&#8217;s</a></li>\n</ul>\n</li>\n<li id=\"menu-item-9277\" class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9277 menu-item-design-default\"><a href=\"/collections/chinese-eetstokjes/\" class=\"nav-top-link\">Eetstokjes</a></li>\n                </ul>\n            </div>\n            \n            \n            \n    </div>\n</div>\n\n<div class=\"header-bg-container fill\"><div class=\"header-bg-image fill\"></div><div class=\"header-bg-color fill\"></div></div>		</div>\n	</header>\n\n	\n	<main id=\"main\" class=\"\">\n\n\n<div id=\"content\" role=\"main\" class=\"content-area\">\n\n		\n			\n\n  <div class=\"banner has-hover hide-for-medium\" id=\"banner-1897357279\">\n          <div class=\"banner-inner fill\">\n        <div class=\"banner-bg fill\" >\n            <div class=\"bg fill bg-fill \"></div>\n                                    \n                    </div>\n		\n        <div class=\"banner-layers container\">\n            <div class=\"fill banner-link\"></div>            \n\n   <div id=\"text-box-1656434339\" class=\"text-box banner-layer x5 md-x5 lg-x5 y95 md-y95 lg-y95 res-text\">\n                                <div class=\"text-box-content text dark\">\n              \n              <div class=\"text-inner text-center\">\n                  \n\n<p class=\"uppercase thin-font\" style=\"text-align: left;\"><span style=\"font-size: 150%; background-color: #df4c18;\"><strong>De specialist van uw</strong></span></p>\n<h2 style=\"text-align: left;\"><span style=\"font-size: 100%; background-color: #282828;\"><strong>CHINESE INTERIEURDECORATIE EN GARDEROBE!</strong></span></h2>\n\n              </div>\n           </div>\n                            \n<style>\n#text-box-1656434339 {\n  width: 55%;\n}\n#text-box-1656434339 .text-box-content {\n  font-size: 100%;\n}\n</style>\n    </div>\n \n\n        </div>\n      </div>\n\n            \n<style>\n#banner-1897357279 {\n  padding-top: 500px;\n}\n#banner-1897357279 .bg.bg-loaded {\n  background-image: url(https://www.nl.teng-shop.com/wp-content/uploads/2022/12/chine-shop-banner.jpg);\n}\n</style>\n  </div>\n\n\n\n  <div class=\"banner has-hover show-for-medium hide-for-small\" id=\"banner-1026475995\">\n          <div class=\"banner-inner fill\">\n        <div class=\"banner-bg fill\" >\n            <div class=\"bg fill bg-fill \"></div>\n                                    \n                    </div>\n		\n        <div class=\"banner-layers container\">\n            <div class=\"fill banner-link\"></div>            \n\n   <div id=\"text-box-1080787128\" class=\"text-box banner-layer x50 md-x50 lg-x50 y50 md-y50 lg-y50 res-text\">\n                                <div class=\"text-box-content text dark\">\n              \n              <div class=\"text-inner text-center\">\n                  \n\n\n              </div>\n           </div>\n                            \n<style>\n#text-box-1080787128 {\n  width: 60%;\n}\n#text-box-1080787128 .text-box-content {\n  font-size: 100%;\n}\n@media (min-width:550px) {\n  #text-box-1080787128 {\n    width: 60%;\n  }\n}\n</style>\n    </div>\n \n\n        </div>\n      </div>\n\n            \n<style>\n#banner-1026475995 {\n  padding-top: 500px;\n}\n#banner-1026475995 .bg.bg-loaded {\n  background-image: url(https://www.nl.teng-shop.com/wp-content/uploads/2023/09/NL-min.png);\n}\n</style>\n  </div>\n\n\n\n  <div class=\"banner has-hover show-for-small\" id=\"banner-1114154081\">\n          <div class=\"banner-inner fill\">\n        <div class=\"banner-bg fill\" >\n            <div class=\"bg fill bg-fill \"></div>\n                                    \n                    </div>\n		\n        <div class=\"banner-layers container\">\n            <a class=\"fill\" href=\"https://www.nl.teng-shop.com/alle-producten/\" ><div class=\"fill banner-link\"></div></a>            \n\n   <div id=\"text-box-1749384372\" class=\"text-box banner-layer x50 md-x50 lg-x50 y50 md-y50 lg-y50 res-text\">\n                                <div class=\"text-box-content text dark\">\n              \n              <div class=\"text-inner text-center\">\n                  \n\n\n              </div>\n           </div>\n                            \n<style>\n#text-box-1749384372 {\n  width: 60%;\n}\n#text-box-1749384372 .text-box-content {\n  font-size: 100%;\n}\n@media (min-width:550px) {\n  #text-box-1749384372 {\n    width: 60%;\n  }\n}\n</style>\n    </div>\n \n\n        </div>\n      </div>\n\n            \n<style>\n#banner-1114154081 {\n  padding-top: 500px;\n}\n#banner-1114154081 .bg.bg-loaded {\n  background-image: url(https://www.nl.teng-shop.com/wp-content/uploads/2023/09/teng-shop-nl.png);\n}\n</style>\n  </div>\n\n\n	<div id=\"gap-934749070\" class=\"gap-element clearfix\" style=\"display:block; height:auto;\">\n		\n<style>\n#gap-934749070 {\n  padding-top: 40px;\n}\n</style>\n	</div>\n	\n\n<div class=\"container section-title-container\" ><h1 class=\"section-title section-title-center\"><b></b><span class=\"section-title-main\" style=\"color:rgb(0, 0, 0);\">Teng Shop</span><b></b></h1></div>\n\n	<div id=\"text-2117060866\" class=\"text\">\n		\n\n<p style=\"text-align: center;\">Jij bent een fan van <strong>Azië</strong> en je wilt je decoratie veranderen, een typische Chinese traditionele kleding dragen of jezelf uitrusten met eetstokjes? Dan ben je hier aan het juiste adres! </p>\n<p style=\"text-align: center;\">Bij <strong>Teng Shop</strong> vind je de beste Chinese decoratie, kleding en accessoires! </p>\n<p style=\"text-align: center;\">Met onze grote verscheidenheid aan traditionele producten die rechtstreeks uit China worden geïmporteerd, kun je je levensstijl en je overtuigingen voor de <strong>Chinese cultuur</strong> benadrukken.</p>\n		\n<style>\n#text-2117060866 {\n  color: rgb(0,0,0);\n}\n#text-2117060866 > * {\n  color: rgb(0,0,0);\n}\n</style>\n	</div>\n	\n	<div id=\"gap-428854125\" class=\"gap-element clearfix\" style=\"display:block; height:auto;\">\n		\n<style>\n#gap-428854125 {\n  padding-top: 40px;\n}\n</style>\n	</div>\n	\n\n\n  \n    <div class=\"row large-columns-4 medium-columns-3 small-columns-2 row-small slider row-slider slider-nav-reveal slider-nav-push\"  data-flickity-options=\'{\"imagesLoaded\": true, \"groupCells\": \"100%\", \"dragThreshold\" : 5, \"cellAlign\": \"left\",\"wrapAround\": true,\"prevNextButtons\": true,\"percentPosition\": true,\"pageDots\": false, \"rightToLeft\": false, \"autoPlay\" : false}\' >\n\n  <div class=\"product-category col\" >\n            <div class=\"col-inner\">\n              <a aria-label=\"Productcategorie bekijken Chinese Jurken / Qipao\" href=\"https://www.nl.teng-shop.com/collections/chinese-jurken-qipao/\">                <div class=\"box box-category has-hover box-default \">\n                <div class=\"box-image\" >\n                  <div class=\"\" >\n                  <img fetchpriority=\"high\" decoding=\"async\" src=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/11/chinese-dresses.jpg\" alt=\"Chinese Jurken / Qipao\" width=\"300\" height=\"300\" />                                                      </div>\n                </div>\n                <div class=\"box-text text-center dark\" style=\"background-color:rgb(223, 76, 24);\">\n                  <div class=\"box-text-inner\">\n                      <h5 class=\"uppercase header-title\">\n                              Chinese Jurken / Qipao                      </h5>\n                                            <p class=\"is-xsmall uppercase count \">\n	                      61 Producten                      </p>\n                                            \n                  </div>\n                </div>\n                </div>\n            </a>            </div>\n            </div><div class=\"product-category col\" >\n            <div class=\"col-inner\">\n              <a aria-label=\"Productcategorie bekijken Chinese Eetstokjes\" href=\"https://www.nl.teng-shop.com/collections/chinese-eetstokjes/\">                <div class=\"box box-category has-hover box-default \">\n                <div class=\"box-image\" >\n                  <div class=\"\" >\n                  <img class=\"lazy-load\" decoding=\"async\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20300%20300%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/11/chinese-chopsticks.png\" alt=\"Chinese Eetstokjes\" width=\"300\" height=\"300\" />                                                      </div>\n                </div>\n                <div class=\"box-text text-center dark\" style=\"background-color:rgb(223, 76, 24);\">\n                  <div class=\"box-text-inner\">\n                      <h5 class=\"uppercase header-title\">\n                              Chinese Eetstokjes                      </h5>\n                                            <p class=\"is-xsmall uppercase count \">\n	                      31 Producten                      </p>\n                                            \n                  </div>\n                </div>\n                </div>\n            </a>            </div>\n            </div><div class=\"product-category col\" >\n            <div class=\"col-inner\">\n              <a aria-label=\"Productcategorie bekijken Chinese Lampionnen\" href=\"https://www.nl.teng-shop.com/collections/chinese-lampionnen/\">                <div class=\"box box-category has-hover box-default \">\n                <div class=\"box-image\" >\n                  <div class=\"\" >\n                  <img class=\"lazy-load\" decoding=\"async\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20300%20300%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/11/chinese-lanterns.png\" alt=\"Chinese Lampionnen\" width=\"300\" height=\"300\" />                                                      </div>\n                </div>\n                <div class=\"box-text text-center dark\" style=\"background-color:rgb(223, 76, 24);\">\n                  <div class=\"box-text-inner\">\n                      <h5 class=\"uppercase header-title\">\n                              Chinese Lampionnen                      </h5>\n                                            <p class=\"is-xsmall uppercase count \">\n	                      75 Producten                      </p>\n                                            \n                  </div>\n                </div>\n                </div>\n            </a>            </div>\n            </div><div class=\"product-category col\" >\n            <div class=\"col-inner\">\n              <a aria-label=\"Productcategorie bekijken Hanfu\" href=\"https://www.nl.teng-shop.com/collections/hanfu/\">                <div class=\"box box-category has-hover box-default \">\n                <div class=\"box-image\" >\n                  <div class=\"\" >\n                  <img class=\"lazy-load\" decoding=\"async\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20300%20300%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/03/hanfu-768x768.jpg\" alt=\"Hanfu\" width=\"300\" height=\"300\" />                                                      </div>\n                </div>\n                <div class=\"box-text text-center dark\" style=\"background-color:rgb(223, 76, 24);\">\n                  <div class=\"box-text-inner\">\n                      <h5 class=\"uppercase header-title\">\n                              Hanfu                      </h5>\n                                            <p class=\"is-xsmall uppercase count \">\n	                      50 Producten                      </p>\n                                            \n                  </div>\n                </div>\n                </div>\n            </a>            </div>\n            </div></div>\n\n	<div id=\"gap-875080908\" class=\"gap-element clearfix\" style=\"display:block; height:auto;\">\n		\n<style>\n#gap-875080908 {\n  padding-top: 40px;\n}\n</style>\n	</div>\n	\n\n<div class=\"container section-title-container\" ><h2 class=\"section-title section-title-center\"><b></b><span class=\"section-title-main\" style=\"color:rgb(0, 0, 0);\">Chinese beelden</span><b></b></h2></div>\n\n	<div id=\"gap-1075360025\" class=\"gap-element clearfix\" style=\"display:block; height:auto;\">\n		\n<style>\n#gap-1075360025 {\n  padding-top: 40px;\n}\n</style>\n	</div>\n	\n\n	\n  \n    <div class=\"row large-columns-4 medium-columns-3 small-columns-2 row-small slider row-slider slider-nav-reveal slider-nav-push\"  data-flickity-options=\'{\"imagesLoaded\": true, \"groupCells\": \"100%\", \"dragThreshold\" : 5, \"cellAlign\": \"left\",\"wrapAround\": true,\"prevNextButtons\": true,\"percentPosition\": true,\"pageDots\": false, \"rightToLeft\": false, \"autoPlay\" : false}\' >\n\n  \n	     <div class=\"product-small col has-hover product type-product post-5981 status-publish first instock product_cat-chinese-beelden product_cat-chinese-versiering has-post-thumbnail shipping-taxable purchasable product-type-simple\">\n	<div class=\"col-inner\">\n	\n<div class=\"badge-container absolute left top z-1\">\n\n</div>\n	<div class=\"product-small box \">\n		<div class=\"box-image\">\n			<div class=\"image-fade_in_back\">\n				<a href=\"https://www.nl.teng-shop.com/product/chinees-standbeeld-yoga-kikker/\" aria-label=\"Chinees Standbeeld Yoga Kikker\">\n					<img loading=\"lazy\" decoding=\"async\" width=\"750\" height=\"750\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20750%20750%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinees-standbeeld-yoga-kikker-3.jpg\" class=\"lazy-load attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Chinees Standbeeld Yoga Kikker\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinees-standbeeld-yoga-kikker-3.jpg 750w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinees-standbeeld-yoga-kikker-3-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinees-standbeeld-yoga-kikker-3-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinees-standbeeld-yoga-kikker-3-100x100.jpg 100w\" sizes=\"(max-width: 750px) 100vw, 750px\" /><img loading=\"lazy\" decoding=\"async\" width=\"750\" height=\"750\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20750%20750%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinees-standbeeld-yoga-kikker-2.jpg\" class=\"lazy-load show-on-hover absolute fill hide-for-small back-image\" alt=\"Chinees Standbeeld Yoga Kikker\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinees-standbeeld-yoga-kikker-2.jpg 750w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinees-standbeeld-yoga-kikker-2-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinees-standbeeld-yoga-kikker-2-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinees-standbeeld-yoga-kikker-2-100x100.jpg 100w\" sizes=\"(max-width: 750px) 100vw, 750px\" />				</a>\n			</div>\n			<div class=\"image-tools is-small top right show-on-hover\">\n						<div class=\"wishlist-icon\">\n			<button class=\"wishlist-button button is-outline circle icon\" aria-label=\"Verlanglijst\">\n				<i class=\"icon-heart\" ></i>			</button>\n			<div class=\"wishlist-popup dark\">\n				\n<div\n	class=\"yith-wcwl-add-to-wishlist add-to-wishlist-5981  wishlist-fragment on-first-load\"\n	data-fragment-ref=\"5981\"\n	data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:5981,&quot;parent_product_id&quot;:5981,&quot;product_type&quot;:&quot;simple&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Bekijk de verlanglijst&quot;,&quot;already_in_wishslist_text&quot;:&quot;Het product staat al op je verlanglijstje!&quot;,&quot;product_added_text&quot;:&quot;Product toegevoegd!&quot;,&quot;heading_icon&quot;:&quot;fa-heart-o&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n>\n			\n			<!-- ADD TO WISHLIST -->\n			\n<div class=\"yith-wcwl-add-button\">\n		<a\n		href=\"?add_to_wishlist=5981&#038;_wpnonce=cdb7a006a5\"\n		class=\"add_to_wishlist single_add_to_wishlist\"\n		data-product-id=\"5981\"\n		data-product-type=\"simple\"\n		data-original-product-id=\"5981\"\n		data-title=\"Toevoegen aan verlanglijst\"\n		rel=\"nofollow\"\n	>\n		<i class=\"yith-wcwl-icon fa fa-heart-o\"></i>		<span>Toevoegen aan verlanglijst</span>\n	</a>\n</div>\n\n			<!-- COUNT TEXT -->\n			\n			</div>\n			</div>\n		</div>\n					</div>\n			<div class=\"image-tools is-small hide-for-small bottom left show-on-hover\">\n							</div>\n			<div class=\"image-tools grid-tools text-center hide-for-small bottom hover-slide-in show-on-hover\">\n							</div>\n					</div>\n\n		<div class=\"box-text box-text-products text-center grid-style-2\">\n			<div class=\"title-wrapper\"><p class=\"name product-title woocommerce-loop-product__title\"><a href=\"https://www.nl.teng-shop.com/product/chinees-standbeeld-yoga-kikker/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\">Chinees Standbeeld Yoga Kikker</a></p></div><div class=\"price-wrapper\">\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&euro;</span>28.99</bdi></span></span>\n</div>		</div>\n	</div>\n	<span class=\"gtm4wp_productdata\" style=\"display:none; visibility:hidden;\" data-gtm4wp_product_id=\"5981\" data-gtm4wp_product_internal_id=\"5981\" data-gtm4wp_product_name=\"Chinees Standbeeld Yoga Kikker\" data-gtm4wp_product_price=\"28.99\" data-gtm4wp_product_cat=\"Chinese Beelden\" data-gtm4wp_product_url=\"https://www.nl.teng-shop.com/product/chinees-standbeeld-yoga-kikker/\" data-gtm4wp_product_listposition=\"1\" data-gtm4wp_productlist_name=\"Algemeen product lijst\" data-gtm4wp_product_stocklevel=\"1000\" data-gtm4wp_product_brand=\"\"></span>	</div>\n</div><div class=\"product-small col has-hover product type-product post-5958 status-publish instock product_cat-chinese-beelden product_cat-chinese-versiering has-post-thumbnail shipping-taxable purchasable product-type-simple\">\n	<div class=\"col-inner\">\n	\n<div class=\"badge-container absolute left top z-1\">\n\n</div>\n	<div class=\"product-small box \">\n		<div class=\"box-image\">\n			<div class=\"image-fade_in_back\">\n				<a href=\"https://www.nl.teng-shop.com/product/chinese-paarden-beeld/\" aria-label=\"Chinese Paarden Beeld Xinli\">\n					<img loading=\"lazy\" decoding=\"async\" width=\"442\" height=\"442\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20442%20442%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-paarden-beeld-xinli.jpg\" class=\"lazy-load attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Chinese Paarden Beeld Xinli\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-paarden-beeld-xinli.jpg 442w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-paarden-beeld-xinli-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-paarden-beeld-xinli-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-paarden-beeld-xinli-100x100.jpg 100w\" sizes=\"(max-width: 442px) 100vw, 442px\" /><img loading=\"lazy\" decoding=\"async\" width=\"434\" height=\"450\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20434%20450%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-paarden-beeld-xinli-2.jpg\" class=\"lazy-load show-on-hover absolute fill hide-for-small back-image\" alt=\"Chinese Paarden Beeld Xinli\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-paarden-beeld-xinli-2.jpg 434w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-paarden-beeld-xinli-2-289x300.jpg 289w\" sizes=\"(max-width: 434px) 100vw, 434px\" />				</a>\n			</div>\n			<div class=\"image-tools is-small top right show-on-hover\">\n						<div class=\"wishlist-icon\">\n			<button class=\"wishlist-button button is-outline circle icon\" aria-label=\"Verlanglijst\">\n				<i class=\"icon-heart\" ></i>			</button>\n			<div class=\"wishlist-popup dark\">\n				\n<div\n	class=\"yith-wcwl-add-to-wishlist add-to-wishlist-5958  wishlist-fragment on-first-load\"\n	data-fragment-ref=\"5958\"\n	data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:5958,&quot;parent_product_id&quot;:5958,&quot;product_type&quot;:&quot;simple&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Bekijk de verlanglijst&quot;,&quot;already_in_wishslist_text&quot;:&quot;Het product staat al op je verlanglijstje!&quot;,&quot;product_added_text&quot;:&quot;Product toegevoegd!&quot;,&quot;heading_icon&quot;:&quot;fa-heart-o&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n>\n			\n			<!-- ADD TO WISHLIST -->\n			\n<div class=\"yith-wcwl-add-button\">\n		<a\n		href=\"?add_to_wishlist=5958&#038;_wpnonce=cdb7a006a5\"\n		class=\"add_to_wishlist single_add_to_wishlist\"\n		data-product-id=\"5958\"\n		data-product-type=\"simple\"\n		data-original-product-id=\"5958\"\n		data-title=\"Toevoegen aan verlanglijst\"\n		rel=\"nofollow\"\n	>\n		<i class=\"yith-wcwl-icon fa fa-heart-o\"></i>		<span>Toevoegen aan verlanglijst</span>\n	</a>\n</div>\n\n			<!-- COUNT TEXT -->\n			\n			</div>\n			</div>\n		</div>\n					</div>\n			<div class=\"image-tools is-small hide-for-small bottom left show-on-hover\">\n							</div>\n			<div class=\"image-tools grid-tools text-center hide-for-small bottom hover-slide-in show-on-hover\">\n							</div>\n					</div>\n\n		<div class=\"box-text box-text-products text-center grid-style-2\">\n			<div class=\"title-wrapper\"><p class=\"name product-title woocommerce-loop-product__title\"><a href=\"https://www.nl.teng-shop.com/product/chinese-paarden-beeld/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\">Chinese Paarden Beeld Xinli</a></p></div><div class=\"price-wrapper\">\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&euro;</span>84.99</bdi></span></span>\n</div>		</div>\n	</div>\n	<span class=\"gtm4wp_productdata\" style=\"display:none; visibility:hidden;\" data-gtm4wp_product_id=\"5958\" data-gtm4wp_product_internal_id=\"5958\" data-gtm4wp_product_name=\"Chinese Paarden Beeld Xinli\" data-gtm4wp_product_price=\"84.99\" data-gtm4wp_product_cat=\"Chinese Beelden\" data-gtm4wp_product_url=\"https://www.nl.teng-shop.com/product/chinese-paarden-beeld/\" data-gtm4wp_product_listposition=\"2\" data-gtm4wp_productlist_name=\"Algemeen product lijst\" data-gtm4wp_product_stocklevel=\"1000\" data-gtm4wp_product_brand=\"\"></span>	</div>\n</div><div class=\"product-small col has-hover product type-product post-5983 status-publish last instock product_cat-chinese-beelden product_cat-chinese-versiering has-post-thumbnail shipping-taxable purchasable product-type-simple\">\n	<div class=\"col-inner\">\n	\n<div class=\"badge-container absolute left top z-1\">\n\n</div>\n	<div class=\"product-small box \">\n		<div class=\"box-image\">\n			<div class=\"image-fade_in_back\">\n				<a href=\"https://www.nl.teng-shop.com/product/chinese-keizer-beeld/\" aria-label=\"Chinese Keizer Beeld\">\n					<img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"768\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20768%20768%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-keizer-beeld-3-768x768.jpg\" class=\"lazy-load attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Chinese Keizer Beeld\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-keizer-beeld-3-768x768.jpg 768w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-keizer-beeld-3-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-keizer-beeld-3-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-keizer-beeld-3-100x100.jpg 100w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-keizer-beeld-3.jpg 800w\" sizes=\"(max-width: 768px) 100vw, 768px\" /><img loading=\"lazy\" decoding=\"async\" width=\"630\" height=\"799\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20630%20799%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-keizer-beeld-2.jpg\" class=\"lazy-load show-on-hover absolute fill hide-for-small back-image\" alt=\"Chinese Keizer Beeld\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-keizer-beeld-2.jpg 630w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-keizer-beeld-2-237x300.jpg 237w\" sizes=\"(max-width: 630px) 100vw, 630px\" />				</a>\n			</div>\n			<div class=\"image-tools is-small top right show-on-hover\">\n						<div class=\"wishlist-icon\">\n			<button class=\"wishlist-button button is-outline circle icon\" aria-label=\"Verlanglijst\">\n				<i class=\"icon-heart\" ></i>			</button>\n			<div class=\"wishlist-popup dark\">\n				\n<div\n	class=\"yith-wcwl-add-to-wishlist add-to-wishlist-5983  wishlist-fragment on-first-load\"\n	data-fragment-ref=\"5983\"\n	data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:5983,&quot;parent_product_id&quot;:5983,&quot;product_type&quot;:&quot;simple&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Bekijk de verlanglijst&quot;,&quot;already_in_wishslist_text&quot;:&quot;Het product staat al op je verlanglijstje!&quot;,&quot;product_added_text&quot;:&quot;Product toegevoegd!&quot;,&quot;heading_icon&quot;:&quot;fa-heart-o&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n>\n			\n			<!-- ADD TO WISHLIST -->\n			\n<div class=\"yith-wcwl-add-button\">\n		<a\n		href=\"?add_to_wishlist=5983&#038;_wpnonce=cdb7a006a5\"\n		class=\"add_to_wishlist single_add_to_wishlist\"\n		data-product-id=\"5983\"\n		data-product-type=\"simple\"\n		data-original-product-id=\"5983\"\n		data-title=\"Toevoegen aan verlanglijst\"\n		rel=\"nofollow\"\n	>\n		<i class=\"yith-wcwl-icon fa fa-heart-o\"></i>		<span>Toevoegen aan verlanglijst</span>\n	</a>\n</div>\n\n			<!-- COUNT TEXT -->\n			\n			</div>\n			</div>\n		</div>\n					</div>\n			<div class=\"image-tools is-small hide-for-small bottom left show-on-hover\">\n							</div>\n			<div class=\"image-tools grid-tools text-center hide-for-small bottom hover-slide-in show-on-hover\">\n							</div>\n					</div>\n\n		<div class=\"box-text box-text-products text-center grid-style-2\">\n			<div class=\"title-wrapper\"><p class=\"name product-title woocommerce-loop-product__title\"><a href=\"https://www.nl.teng-shop.com/product/chinese-keizer-beeld/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\">Chinese Keizer Beeld</a></p></div><div class=\"price-wrapper\">\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&euro;</span>229.99</bdi></span></span>\n</div>		</div>\n	</div>\n	<span class=\"gtm4wp_productdata\" style=\"display:none; visibility:hidden;\" data-gtm4wp_product_id=\"5983\" data-gtm4wp_product_internal_id=\"5983\" data-gtm4wp_product_name=\"Chinese Keizer Beeld\" data-gtm4wp_product_price=\"229.99\" data-gtm4wp_product_cat=\"Chinese Beelden\" data-gtm4wp_product_url=\"https://www.nl.teng-shop.com/product/chinese-keizer-beeld/\" data-gtm4wp_product_listposition=\"3\" data-gtm4wp_productlist_name=\"Algemeen product lijst\" data-gtm4wp_product_stocklevel=\"1000\" data-gtm4wp_product_brand=\"\"></span>	</div>\n</div><div class=\"product-small col has-hover product type-product post-5960 status-publish first instock product_cat-chinese-beelden product_cat-chinese-versiering has-post-thumbnail shipping-taxable purchasable product-type-simple\">\n	<div class=\"col-inner\">\n	\n<div class=\"badge-container absolute left top z-1\">\n\n</div>\n	<div class=\"product-small box \">\n		<div class=\"box-image\">\n			<div class=\"image-fade_in_back\">\n				<a href=\"https://www.nl.teng-shop.com/product/chinees-beeld-drakenbel/\" aria-label=\"Chinees Beeld Drakenbel\">\n					<img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"768\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20768%20768%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinees-beeld-drakenbel-2-768x768.jpg\" class=\"lazy-load attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Chinees Beeld Drakenbel\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinees-beeld-drakenbel-2-768x768.jpg 768w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinees-beeld-drakenbel-2-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinees-beeld-drakenbel-2-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinees-beeld-drakenbel-2-100x100.jpg 100w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinees-beeld-drakenbel-2.jpg 1001w\" sizes=\"(max-width: 768px) 100vw, 768px\" /><img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"768\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20768%20768%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinees-beeld-drakenbel-768x768.jpg\" class=\"lazy-load show-on-hover absolute fill hide-for-small back-image\" alt=\"Chinees Beeld Drakenbel\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinees-beeld-drakenbel-768x768.jpg 768w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinees-beeld-drakenbel-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinees-beeld-drakenbel-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinees-beeld-drakenbel-100x100.jpg 100w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinees-beeld-drakenbel.jpg 1001w\" sizes=\"(max-width: 768px) 100vw, 768px\" />				</a>\n			</div>\n			<div class=\"image-tools is-small top right show-on-hover\">\n						<div class=\"wishlist-icon\">\n			<button class=\"wishlist-button button is-outline circle icon\" aria-label=\"Verlanglijst\">\n				<i class=\"icon-heart\" ></i>			</button>\n			<div class=\"wishlist-popup dark\">\n				\n<div\n	class=\"yith-wcwl-add-to-wishlist add-to-wishlist-5960  wishlist-fragment on-first-load\"\n	data-fragment-ref=\"5960\"\n	data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:5960,&quot;parent_product_id&quot;:5960,&quot;product_type&quot;:&quot;simple&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Bekijk de verlanglijst&quot;,&quot;already_in_wishslist_text&quot;:&quot;Het product staat al op je verlanglijstje!&quot;,&quot;product_added_text&quot;:&quot;Product toegevoegd!&quot;,&quot;heading_icon&quot;:&quot;fa-heart-o&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n>\n			\n			<!-- ADD TO WISHLIST -->\n			\n<div class=\"yith-wcwl-add-button\">\n		<a\n		href=\"?add_to_wishlist=5960&#038;_wpnonce=cdb7a006a5\"\n		class=\"add_to_wishlist single_add_to_wishlist\"\n		data-product-id=\"5960\"\n		data-product-type=\"simple\"\n		data-original-product-id=\"5960\"\n		data-title=\"Toevoegen aan verlanglijst\"\n		rel=\"nofollow\"\n	>\n		<i class=\"yith-wcwl-icon fa fa-heart-o\"></i>		<span>Toevoegen aan verlanglijst</span>\n	</a>\n</div>\n\n			<!-- COUNT TEXT -->\n			\n			</div>\n			</div>\n		</div>\n					</div>\n			<div class=\"image-tools is-small hide-for-small bottom left show-on-hover\">\n							</div>\n			<div class=\"image-tools grid-tools text-center hide-for-small bottom hover-slide-in show-on-hover\">\n							</div>\n					</div>\n\n		<div class=\"box-text box-text-products text-center grid-style-2\">\n			<div class=\"title-wrapper\"><p class=\"name product-title woocommerce-loop-product__title\"><a href=\"https://www.nl.teng-shop.com/product/chinees-beeld-drakenbel/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\">Chinees Beeld Drakenbel</a></p></div><div class=\"price-wrapper\">\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&euro;</span>32.99</bdi></span></span>\n</div>		</div>\n	</div>\n	<span class=\"gtm4wp_productdata\" style=\"display:none; visibility:hidden;\" data-gtm4wp_product_id=\"5960\" data-gtm4wp_product_internal_id=\"5960\" data-gtm4wp_product_name=\"Chinees Beeld Drakenbel\" data-gtm4wp_product_price=\"32.99\" data-gtm4wp_product_cat=\"Chinese Beelden\" data-gtm4wp_product_url=\"https://www.nl.teng-shop.com/product/chinees-beeld-drakenbel/\" data-gtm4wp_product_listposition=\"4\" data-gtm4wp_productlist_name=\"Algemeen product lijst\" data-gtm4wp_product_stocklevel=\"1000\" data-gtm4wp_product_brand=\"\"></span>	</div>\n</div></div>\n\n	<div id=\"gap-1705754252\" class=\"gap-element clearfix\" style=\"display:block; height:auto;\">\n		\n<style>\n#gap-1705754252 {\n  padding-top: 40px;\n}\n</style>\n	</div>\n	\n\n<div class=\"container section-title-container\" ><h2 class=\"section-title section-title-center\"><b></b><span class=\"section-title-main\" style=\"color:rgb(0, 0, 0);\">Chinese schilderijen</span><b></b></h2></div>\n\n	\n  \n    <div class=\"row large-columns-4 medium-columns-3 small-columns-2 row-small slider row-slider slider-nav-reveal slider-nav-push\"  data-flickity-options=\'{\"imagesLoaded\": true, \"groupCells\": \"100%\", \"dragThreshold\" : 5, \"cellAlign\": \"left\",\"wrapAround\": true,\"prevNextButtons\": true,\"percentPosition\": true,\"pageDots\": false, \"rightToLeft\": false, \"autoPlay\" : false}\' >\n\n  \n	     <div class=\"product-small col has-hover product type-product post-6300 status-publish instock product_cat-chinese-schilderijen product_cat-chinese-versiering has-post-thumbnail shipping-taxable purchasable product-type-variable has-default-attributes\">\n	<div class=\"col-inner\">\n	\n<div class=\"badge-container absolute left top z-1\">\n\n</div>\n	<div class=\"product-small box \">\n		<div class=\"box-image\">\n			<div class=\"image-fade_in_back\">\n				<a href=\"https://www.nl.teng-shop.com/product/chinese-schilderij-blauwe-draak/\" aria-label=\"Chinese Schilderij Blauwe Draak\">\n					<img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"775\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20768%20775%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-schilderij-blauwe-draak-green-background-140cmx45cm-768x775.jpg\" class=\"lazy-load attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Chinese Schilderij Blauwe Draak - Green Background, 140cmx45cm\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-schilderij-blauwe-draak-green-background-140cmx45cm-768x775.jpg 768w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-schilderij-blauwe-draak-green-background-140cmx45cm-297x300.jpg 297w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-schilderij-blauwe-draak-green-background-140cmx45cm-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-schilderij-blauwe-draak-green-background-140cmx45cm-100x100.jpg 100w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-schilderij-blauwe-draak-green-background-140cmx45cm.jpg 790w\" sizes=\"(max-width: 768px) 100vw, 768px\" /><img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"773\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20768%20773%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-schilderij-blauwe-draak-yellow-background-140cmx45cm-768x773.jpg\" class=\"lazy-load show-on-hover absolute fill hide-for-small back-image\" alt=\"Chinese Schilderij Blauwe Draak - Yellow Background, 140cmx45cm\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-schilderij-blauwe-draak-yellow-background-140cmx45cm-768x773.jpg 768w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-schilderij-blauwe-draak-yellow-background-140cmx45cm-298x300.jpg 298w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-schilderij-blauwe-draak-yellow-background-140cmx45cm-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-schilderij-blauwe-draak-yellow-background-140cmx45cm-100x100.jpg 100w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-schilderij-blauwe-draak-yellow-background-140cmx45cm.jpg 792w\" sizes=\"(max-width: 768px) 100vw, 768px\" />				</a>\n			</div>\n			<div class=\"image-tools is-small top right show-on-hover\">\n						<div class=\"wishlist-icon\">\n			<button class=\"wishlist-button button is-outline circle icon\" aria-label=\"Verlanglijst\">\n				<i class=\"icon-heart\" ></i>			</button>\n			<div class=\"wishlist-popup dark\">\n				\n<div\n	class=\"yith-wcwl-add-to-wishlist add-to-wishlist-6300  wishlist-fragment on-first-load\"\n	data-fragment-ref=\"6300\"\n	data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:6300,&quot;parent_product_id&quot;:6300,&quot;product_type&quot;:&quot;variable&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Bekijk de verlanglijst&quot;,&quot;already_in_wishslist_text&quot;:&quot;Het product staat al op je verlanglijstje!&quot;,&quot;product_added_text&quot;:&quot;Product toegevoegd!&quot;,&quot;heading_icon&quot;:&quot;fa-heart-o&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n>\n			\n			<!-- ADD TO WISHLIST -->\n			\n<div class=\"yith-wcwl-add-button\">\n		<a\n		href=\"?add_to_wishlist=6300&#038;_wpnonce=cdb7a006a5\"\n		class=\"add_to_wishlist single_add_to_wishlist\"\n		data-product-id=\"6300\"\n		data-product-type=\"variable\"\n		data-original-product-id=\"6300\"\n		data-title=\"Toevoegen aan verlanglijst\"\n		rel=\"nofollow\"\n	>\n		<i class=\"yith-wcwl-icon fa fa-heart-o\"></i>		<span>Toevoegen aan verlanglijst</span>\n	</a>\n</div>\n\n			<!-- COUNT TEXT -->\n			\n			</div>\n			</div>\n		</div>\n					</div>\n			<div class=\"image-tools is-small hide-for-small bottom left show-on-hover\">\n							</div>\n			<div class=\"image-tools grid-tools text-center hide-for-small bottom hover-slide-in show-on-hover\">\n							</div>\n					</div>\n\n		<div class=\"box-text box-text-products text-center grid-style-2\">\n			<div class=\"title-wrapper\"><p class=\"name product-title woocommerce-loop-product__title\"><a href=\"https://www.nl.teng-shop.com/product/chinese-schilderij-blauwe-draak/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\">Chinese Schilderij Blauwe Draak</a></p></div><div class=\"price-wrapper\">\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&euro;</span>54.99</bdi></span></span>\n</div>		</div>\n	</div>\n	<span class=\"gtm4wp_productdata\" style=\"display:none; visibility:hidden;\" data-gtm4wp_product_id=\"6300\" data-gtm4wp_product_internal_id=\"6300\" data-gtm4wp_product_name=\"Chinese Schilderij Blauwe Draak\" data-gtm4wp_product_price=\"54.99\" data-gtm4wp_product_cat=\"Chinese Schilderijen\" data-gtm4wp_product_url=\"https://www.nl.teng-shop.com/product/chinese-schilderij-blauwe-draak/\" data-gtm4wp_product_listposition=\"5\" data-gtm4wp_productlist_name=\"Algemeen product lijst\" data-gtm4wp_product_stocklevel=\"\" data-gtm4wp_product_brand=\"\"></span>	</div>\n</div><div class=\"product-small col has-hover product type-product post-6701 status-publish last instock product_cat-chinese-schilderijen product_cat-chinese-versiering has-post-thumbnail shipping-taxable purchasable product-type-variable has-default-attributes\">\n	<div class=\"col-inner\">\n	\n<div class=\"badge-container absolute left top z-1\">\n\n</div>\n	<div class=\"product-small box \">\n		<div class=\"box-image\">\n			<div class=\"image-fade_in_back\">\n				<a href=\"https://www.nl.teng-shop.com/product/typisch-chinees-schilderij/\" aria-label=\"Typisch Chinees Schilderij Jiangxin\">\n					<img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"768\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20768%20768%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/typisch-chinees-schilderij-jiangxin-60x80cm-768x768.jpg\" class=\"lazy-load attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Typisch Chinees Schilderij Jiangxin - 60x80cm\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/typisch-chinees-schilderij-jiangxin-60x80cm-768x768.jpg 768w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/typisch-chinees-schilderij-jiangxin-60x80cm-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/typisch-chinees-schilderij-jiangxin-60x80cm-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/typisch-chinees-schilderij-jiangxin-60x80cm-100x100.jpg 100w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/typisch-chinees-schilderij-jiangxin-60x80cm.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />				</a>\n			</div>\n			<div class=\"image-tools is-small top right show-on-hover\">\n						<div class=\"wishlist-icon\">\n			<button class=\"wishlist-button button is-outline circle icon\" aria-label=\"Verlanglijst\">\n				<i class=\"icon-heart\" ></i>			</button>\n			<div class=\"wishlist-popup dark\">\n				\n<div\n	class=\"yith-wcwl-add-to-wishlist add-to-wishlist-6701  wishlist-fragment on-first-load\"\n	data-fragment-ref=\"6701\"\n	data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:6701,&quot;parent_product_id&quot;:6701,&quot;product_type&quot;:&quot;variable&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Bekijk de verlanglijst&quot;,&quot;already_in_wishslist_text&quot;:&quot;Het product staat al op je verlanglijstje!&quot;,&quot;product_added_text&quot;:&quot;Product toegevoegd!&quot;,&quot;heading_icon&quot;:&quot;fa-heart-o&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n>\n			\n			<!-- ADD TO WISHLIST -->\n			\n<div class=\"yith-wcwl-add-button\">\n		<a\n		href=\"?add_to_wishlist=6701&#038;_wpnonce=cdb7a006a5\"\n		class=\"add_to_wishlist single_add_to_wishlist\"\n		data-product-id=\"6701\"\n		data-product-type=\"variable\"\n		data-original-product-id=\"6701\"\n		data-title=\"Toevoegen aan verlanglijst\"\n		rel=\"nofollow\"\n	>\n		<i class=\"yith-wcwl-icon fa fa-heart-o\"></i>		<span>Toevoegen aan verlanglijst</span>\n	</a>\n</div>\n\n			<!-- COUNT TEXT -->\n			\n			</div>\n			</div>\n		</div>\n					</div>\n			<div class=\"image-tools is-small hide-for-small bottom left show-on-hover\">\n							</div>\n			<div class=\"image-tools grid-tools text-center hide-for-small bottom hover-slide-in show-on-hover\">\n							</div>\n					</div>\n\n		<div class=\"box-text box-text-products text-center grid-style-2\">\n			<div class=\"title-wrapper\"><p class=\"name product-title woocommerce-loop-product__title\"><a href=\"https://www.nl.teng-shop.com/product/typisch-chinees-schilderij/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\">Typisch Chinees Schilderij Jiangxin</a></p></div><div class=\"price-wrapper\">\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&euro;</span>13.99</bdi></span></span>\n</div>		</div>\n	</div>\n	<span class=\"gtm4wp_productdata\" style=\"display:none; visibility:hidden;\" data-gtm4wp_product_id=\"6701\" data-gtm4wp_product_internal_id=\"6701\" data-gtm4wp_product_name=\"Typisch Chinees Schilderij Jiangxin\" data-gtm4wp_product_price=\"13.99\" data-gtm4wp_product_cat=\"Chinese Schilderijen\" data-gtm4wp_product_url=\"https://www.nl.teng-shop.com/product/typisch-chinees-schilderij/\" data-gtm4wp_product_listposition=\"6\" data-gtm4wp_productlist_name=\"Algemeen product lijst\" data-gtm4wp_product_stocklevel=\"\" data-gtm4wp_product_brand=\"\"></span>	</div>\n</div><div class=\"product-small col has-hover product type-product post-6453 status-publish first instock product_cat-chinese-schilderijen product_cat-chinese-versiering has-post-thumbnail shipping-taxable purchasable product-type-variable has-default-attributes\">\n	<div class=\"col-inner\">\n	\n<div class=\"badge-container absolute left top z-1\">\n\n</div>\n	<div class=\"product-small box \">\n		<div class=\"box-image\">\n			<div class=\"image-fade_in_back\">\n				<a href=\"https://www.nl.teng-shop.com/product/chinese-krijgers-schilderij/\" aria-label=\"Chinese Krijgers Schilderij\">\n					<img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"768\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20768%20768%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-krijgers-schilderij-green-background-140cmx45cm-768x768.jpg\" class=\"lazy-load attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Chinese Krijgers Schilderij - Green Background, 140cmx45cm\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-krijgers-schilderij-green-background-140cmx45cm-768x768.jpg 768w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-krijgers-schilderij-green-background-140cmx45cm-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-krijgers-schilderij-green-background-140cmx45cm-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-krijgers-schilderij-green-background-140cmx45cm-100x100.jpg 100w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-krijgers-schilderij-green-background-140cmx45cm.jpg 800w\" sizes=\"(max-width: 768px) 100vw, 768px\" /><img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"768\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20768%20768%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-krijgers-schilderij-yellow-background-140cmx45cm-768x768.jpg\" class=\"lazy-load show-on-hover absolute fill hide-for-small back-image\" alt=\"Chinese Krijgers Schilderij - Yellow Background, 140cmx45cm\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-krijgers-schilderij-yellow-background-140cmx45cm-768x768.jpg 768w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-krijgers-schilderij-yellow-background-140cmx45cm-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-krijgers-schilderij-yellow-background-140cmx45cm-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-krijgers-schilderij-yellow-background-140cmx45cm-100x100.jpg 100w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-krijgers-schilderij-yellow-background-140cmx45cm.jpg 800w\" sizes=\"(max-width: 768px) 100vw, 768px\" />				</a>\n			</div>\n			<div class=\"image-tools is-small top right show-on-hover\">\n						<div class=\"wishlist-icon\">\n			<button class=\"wishlist-button button is-outline circle icon\" aria-label=\"Verlanglijst\">\n				<i class=\"icon-heart\" ></i>			</button>\n			<div class=\"wishlist-popup dark\">\n				\n<div\n	class=\"yith-wcwl-add-to-wishlist add-to-wishlist-6453  wishlist-fragment on-first-load\"\n	data-fragment-ref=\"6453\"\n	data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:6453,&quot;parent_product_id&quot;:6453,&quot;product_type&quot;:&quot;variable&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Bekijk de verlanglijst&quot;,&quot;already_in_wishslist_text&quot;:&quot;Het product staat al op je verlanglijstje!&quot;,&quot;product_added_text&quot;:&quot;Product toegevoegd!&quot;,&quot;heading_icon&quot;:&quot;fa-heart-o&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n>\n			\n			<!-- ADD TO WISHLIST -->\n			\n<div class=\"yith-wcwl-add-button\">\n		<a\n		href=\"?add_to_wishlist=6453&#038;_wpnonce=cdb7a006a5\"\n		class=\"add_to_wishlist single_add_to_wishlist\"\n		data-product-id=\"6453\"\n		data-product-type=\"variable\"\n		data-original-product-id=\"6453\"\n		data-title=\"Toevoegen aan verlanglijst\"\n		rel=\"nofollow\"\n	>\n		<i class=\"yith-wcwl-icon fa fa-heart-o\"></i>		<span>Toevoegen aan verlanglijst</span>\n	</a>\n</div>\n\n			<!-- COUNT TEXT -->\n			\n			</div>\n			</div>\n		</div>\n					</div>\n			<div class=\"image-tools is-small hide-for-small bottom left show-on-hover\">\n							</div>\n			<div class=\"image-tools grid-tools text-center hide-for-small bottom hover-slide-in show-on-hover\">\n							</div>\n					</div>\n\n		<div class=\"box-text box-text-products text-center grid-style-2\">\n			<div class=\"title-wrapper\"><p class=\"name product-title woocommerce-loop-product__title\"><a href=\"https://www.nl.teng-shop.com/product/chinese-krijgers-schilderij/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\">Chinese Krijgers Schilderij</a></p></div><div class=\"price-wrapper\">\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&euro;</span>54.99</bdi></span></span>\n</div>		</div>\n	</div>\n	<span class=\"gtm4wp_productdata\" style=\"display:none; visibility:hidden;\" data-gtm4wp_product_id=\"6453\" data-gtm4wp_product_internal_id=\"6453\" data-gtm4wp_product_name=\"Chinese Krijgers Schilderij\" data-gtm4wp_product_price=\"54.99\" data-gtm4wp_product_cat=\"Chinese Schilderijen\" data-gtm4wp_product_url=\"https://www.nl.teng-shop.com/product/chinese-krijgers-schilderij/\" data-gtm4wp_product_listposition=\"7\" data-gtm4wp_productlist_name=\"Algemeen product lijst\" data-gtm4wp_product_stocklevel=\"\" data-gtm4wp_product_brand=\"\"></span>	</div>\n</div><div class=\"product-small col has-hover product type-product post-6220 status-publish instock product_cat-chinese-schilderijen product_cat-chinese-versiering has-post-thumbnail shipping-taxable purchasable product-type-variable has-default-attributes\">\n	<div class=\"col-inner\">\n	\n<div class=\"badge-container absolute left top z-1\">\n\n</div>\n	<div class=\"product-small box \">\n		<div class=\"box-image\">\n			<div class=\"image-fade_in_back\">\n				<a href=\"https://www.nl.teng-shop.com/product/chinese-lotusbloem-schilderijen/\" aria-label=\"Chinese Lotusbloem Schilderijen\">\n					<img loading=\"lazy\" decoding=\"async\" width=\"737\" height=\"762\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20737%20762%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-lotusbloem-schilderijen-green-background-140cmx45cm.jpg\" class=\"lazy-load attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Chinese Lotusbloem Schilderijen - Green Background, 140cmx45cm\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-lotusbloem-schilderijen-green-background-140cmx45cm.jpg 737w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-lotusbloem-schilderijen-green-background-140cmx45cm-290x300.jpg 290w\" sizes=\"(max-width: 737px) 100vw, 737px\" /><img loading=\"lazy\" decoding=\"async\" width=\"737\" height=\"762\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20737%20762%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-lotusbloem-schilderijen-yellow-background-140cmx45cm.jpg\" class=\"lazy-load show-on-hover absolute fill hide-for-small back-image\" alt=\"Chinese Lotusbloem Schilderijen - Yellow Background, 140cmx45cm\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-lotusbloem-schilderijen-yellow-background-140cmx45cm.jpg 737w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-lotusbloem-schilderijen-yellow-background-140cmx45cm-290x300.jpg 290w\" sizes=\"(max-width: 737px) 100vw, 737px\" />				</a>\n			</div>\n			<div class=\"image-tools is-small top right show-on-hover\">\n						<div class=\"wishlist-icon\">\n			<button class=\"wishlist-button button is-outline circle icon\" aria-label=\"Verlanglijst\">\n				<i class=\"icon-heart\" ></i>			</button>\n			<div class=\"wishlist-popup dark\">\n				\n<div\n	class=\"yith-wcwl-add-to-wishlist add-to-wishlist-6220  wishlist-fragment on-first-load\"\n	data-fragment-ref=\"6220\"\n	data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:6220,&quot;parent_product_id&quot;:6220,&quot;product_type&quot;:&quot;variable&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Bekijk de verlanglijst&quot;,&quot;already_in_wishslist_text&quot;:&quot;Het product staat al op je verlanglijstje!&quot;,&quot;product_added_text&quot;:&quot;Product toegevoegd!&quot;,&quot;heading_icon&quot;:&quot;fa-heart-o&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n>\n			\n			<!-- ADD TO WISHLIST -->\n			\n<div class=\"yith-wcwl-add-button\">\n		<a\n		href=\"?add_to_wishlist=6220&#038;_wpnonce=cdb7a006a5\"\n		class=\"add_to_wishlist single_add_to_wishlist\"\n		data-product-id=\"6220\"\n		data-product-type=\"variable\"\n		data-original-product-id=\"6220\"\n		data-title=\"Toevoegen aan verlanglijst\"\n		rel=\"nofollow\"\n	>\n		<i class=\"yith-wcwl-icon fa fa-heart-o\"></i>		<span>Toevoegen aan verlanglijst</span>\n	</a>\n</div>\n\n			<!-- COUNT TEXT -->\n			\n			</div>\n			</div>\n		</div>\n					</div>\n			<div class=\"image-tools is-small hide-for-small bottom left show-on-hover\">\n							</div>\n			<div class=\"image-tools grid-tools text-center hide-for-small bottom hover-slide-in show-on-hover\">\n							</div>\n					</div>\n\n		<div class=\"box-text box-text-products text-center grid-style-2\">\n			<div class=\"title-wrapper\"><p class=\"name product-title woocommerce-loop-product__title\"><a href=\"https://www.nl.teng-shop.com/product/chinese-lotusbloem-schilderijen/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\">Chinese Lotusbloem Schilderijen</a></p></div><div class=\"price-wrapper\">\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&euro;</span>54.99</bdi></span></span>\n</div>		</div>\n	</div>\n	<span class=\"gtm4wp_productdata\" style=\"display:none; visibility:hidden;\" data-gtm4wp_product_id=\"6220\" data-gtm4wp_product_internal_id=\"6220\" data-gtm4wp_product_name=\"Chinese Lotusbloem Schilderijen\" data-gtm4wp_product_price=\"54.99\" data-gtm4wp_product_cat=\"Chinese Schilderijen\" data-gtm4wp_product_url=\"https://www.nl.teng-shop.com/product/chinese-lotusbloem-schilderijen/\" data-gtm4wp_product_listposition=\"8\" data-gtm4wp_productlist_name=\"Algemeen product lijst\" data-gtm4wp_product_stocklevel=\"\" data-gtm4wp_product_brand=\"\"></span>	</div>\n</div></div>\n\n	<div id=\"gap-1680624709\" class=\"gap-element clearfix\" style=\"display:block; height:auto;\">\n		\n<style>\n#gap-1680624709 {\n  padding-top: 40px;\n}\n</style>\n	</div>\n	\n\n	<section class=\"section\" id=\"section_116399696\">\n		<div class=\"bg section-bg fill bg-fill  bg-loaded\" >\n\n			\n			<div class=\"section-bg-overlay absolute fill\"></div>\n			\n\n		</div>\n\n		\n\n		<div class=\"section-content relative\">\n			\n\n<div class=\"row row-large align-middle\"  id=\"row-297766032\">\n\n\n	<div id=\"col-1344927801\" class=\"col medium-6 small-12 large-6\"  >\n				<div class=\"col-inner\"  >\n			\n			\n\n	<div class=\"img has-hover x md-x lg-x y md-y lg-y\" id=\"image_690673708\">\n								<div class=\"img-inner dark\" >\n			<img decoding=\"async\" width=\"1000\" height=\"681\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%201000%20681%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/chinese-handicraft.jpg\" class=\"lazy-load attachment-original size-original\" alt=\"Chinees handwerk\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/chinese-handicraft.jpg 1000w, https://www.nl.teng-shop.com/wp-content/uploads/2022/12/chinese-handicraft-300x204.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2022/12/chinese-handicraft-768x523.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />						\n					</div>\n								\n<style>\n#image_690673708 {\n  width: 100%;\n}\n</style>\n	</div>\n	\n\n\n		</div>\n					</div>\n\n	\n\n	<div id=\"col-1287087087\" class=\"col medium-6 small-12 large-6\"  >\n				<div class=\"col-inner text-left\"  >\n			\n			\n\n<h2>Een authentieke kennis</h2>\n<p>Bij Teng Shop maken we er een punt van om het beste te selecteren dat China te bieden heeft. Daarom werken we alleen met <strong>Chinese leveranciers</strong> en ambachtslieden wiens traditionele Chinese kennis wordt gerespecteerd.</p>\n<p>Bij ons vind je alle voorwerpen uit de Chinese cultuur zoals beelden, <strong>Qipao</strong> jurken, <strong>Tangzhuang</strong> jassen of eetstokjes. U zult zeker uw geluk vinden!</p>\n<a href=\"https://www.nl.teng-shop.com/over-ons/\" target=\"_blank\" class=\"button primary\" rel=\"noopener\"  >\n    <span>Bekijk onze producten</span>\n  </a>\n\n\n\n		</div>\n					</div>\n\n	\n\n</div>\n\n		</div>\n\n		\n<style>\n#section_116399696 {\n  padding-top: 60px;\n  padding-bottom: 60px;\n  background-color: rgb(246, 246, 246);\n}\n#section_116399696 .section-bg-overlay {\n  background-color: rgba(255, 255, 255, 0.85);\n}\n</style>\n	</section>\n	\n	<section class=\"section\" id=\"section_2034604216\">\n		<div class=\"bg section-bg fill bg-fill  bg-loaded\" >\n\n			\n			<div class=\"section-bg-overlay absolute fill\"></div>\n			\n\n		</div>\n\n		\n\n		<div class=\"section-content relative\">\n			\n\n<div class=\"row row-large align-middle\"  id=\"row-1726398566\">\n\n\n	<div id=\"col-148744541\" class=\"col medium-6 small-12 large-6\"  >\n				<div class=\"col-inner text-left\"  >\n			\n			\n\n<h2>Chinese jassen / Tangzhuang</h2>\n<div>Op zoek naar een Tangzhuang? Dit zeer populaire Chinese kledingstuk biedt een zeer mooi alternatief voor onze westerse klederdracht.</div>\n<div>&nbsp;</div>\n<div>Of het nu voor een evenement is, een fotoshoot gerelateerd aan China, of gewoon omdat je van de Chinese cultuur houdt, met een Tangzhuang draag je met trots een historisch en typisch kledingstuk.</div>\n<div>&nbsp;</div>\n<div>In het kort, een stijlvol en verfijnd kledingstuk.</div>\n<div>&nbsp;</div>\n<a href=\"https://www.nl.teng-shop.com/collections/chinese-jas-mannen-tangzhuang/\" class=\"button primary\"  >\n    <span>Bekijk onze Tangzhuang</span>\n  </a>\n\n\n\n		</div>\n					</div>\n\n	\n\n	<div id=\"col-1284566418\" class=\"col medium-6 small-12 large-6\"  >\n				<div class=\"col-inner\"  >\n			\n			\n\n	<div class=\"img has-hover x md-x lg-x y md-y lg-y\" id=\"image_791595613\">\n								<div class=\"img-inner dark\" >\n			<img decoding=\"async\" width=\"1000\" height=\"681\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%201000%20681%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/chinese-jackets-tangzhuang-1.jpg\" class=\"lazy-load attachment-original size-original\" alt=\"Tangzhuang\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/chinese-jackets-tangzhuang-1.jpg 1000w, https://www.nl.teng-shop.com/wp-content/uploads/2022/12/chinese-jackets-tangzhuang-1-300x204.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2022/12/chinese-jackets-tangzhuang-1-768x523.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />						\n					</div>\n								\n<style>\n#image_791595613 {\n  width: 100%;\n}\n</style>\n	</div>\n	\n\n\n		</div>\n					</div>\n\n	\n\n</div>\n\n		</div>\n\n		\n<style>\n#section_2034604216 {\n  padding-top: 60px;\n  padding-bottom: 60px;\n}\n#section_2034604216 .section-bg-overlay {\n  background-color: rgba(255, 255, 255, 0.85);\n}\n</style>\n	</section>\n	\n	<section class=\"section\" id=\"section_32004448\">\n		<div class=\"bg section-bg fill bg-fill  bg-loaded\" >\n\n			\n			<div class=\"section-bg-overlay absolute fill\"></div>\n			\n\n		</div>\n\n		\n\n		<div class=\"section-content relative\">\n			\n\n<div class=\"row row-large align-middle\"  id=\"row-1998673355\">\n\n\n	<div id=\"col-289539574\" class=\"col medium-6 small-12 large-6\"  >\n				<div class=\"col-inner\"  >\n			\n			\n\n	<div class=\"img has-hover x md-x lg-x y md-y lg-y\" id=\"image_52842527\">\n								<div class=\"img-inner dark\" >\n			<img decoding=\"async\" width=\"1000\" height=\"681\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%201000%20681%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/chinese-dresses.jpg\" class=\"lazy-load attachment-original size-original\" alt=\"Chinese jurken\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/chinese-dresses.jpg 1000w, https://www.nl.teng-shop.com/wp-content/uploads/2022/12/chinese-dresses-300x204.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2022/12/chinese-dresses-768x523.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />						\n					</div>\n								\n<style>\n#image_52842527 {\n  width: 100%;\n}\n</style>\n	</div>\n	\n\n\n		</div>\n					</div>\n\n	\n\n	<div id=\"col-2059375208\" class=\"col medium-6 small-12 large-6\"  >\n				<div class=\"col-inner text-left\"  >\n			\n			\n\n<h2>Chinese jurken / Qipao</h2>\n<div>Dress erg populair bij westerse vrouwen die het elegant vinden en tegelijkertijd sexy en glamoureus, omdat het strak is en het figuur naar voren brengt.</div>\n<div>&nbsp;</div>\n<div>Het is zonder twijfel een van de meest traditionele kledingstukken van China en een van de mooiste stukken die je in je garderobe kunt hebben.</div>\n<div>&nbsp;</div>\n<div>Het combineert de tijdloze elegantie van de Chinese esthetiek met zeer opvallende en soms moderne elementen.</div>\n<div>&nbsp;</div>\n<a href=\"https://www.nl.teng-shop.com/collections/chinese-jurken-qipao/\" class=\"button primary\"  >\n    <span>Bekijk onze jurken</span>\n  </a>\n\n\n\n		</div>\n					</div>\n\n	\n\n</div>\n\n		</div>\n\n		\n<style>\n#section_32004448 {\n  padding-top: 60px;\n  padding-bottom: 60px;\n}\n#section_32004448 .section-bg-overlay {\n  background-color: rgba(255, 255, 255, 0.85);\n}\n</style>\n	</section>\n	\n\n	<div id=\"gap-759173563\" class=\"gap-element clearfix\" style=\"display:block; height:auto;\">\n		\n<style>\n#gap-759173563 {\n  padding-top: 40px;\n}\n</style>\n	</div>\n	\n\n<div class=\"container section-title-container\" ><h2 class=\"section-title section-title-center\"><b></b><span class=\"section-title-main\" style=\"font-size:undefined%;color:rgb(0, 0, 0);\">Chinees Blog</span><b></b></h2></div>\n\n\n  \n    <div class=\"row large-columns-3 medium-columns- small-columns-1 slider row-slider slider-nav-reveal slider-nav-push\"  data-flickity-options=\'{\"imagesLoaded\": true, \"groupCells\": \"100%\", \"dragThreshold\" : 5, \"cellAlign\": \"left\",\"wrapAround\": true,\"prevNextButtons\": true,\"percentPosition\": true,\"pageDots\": false, \"rightToLeft\": false, \"autoPlay\" : false}\' >\n\n  <div class=\"col post-item\" data-animate=\"fadeInLeft\">\n			<div class=\"col-inner\">\n				<div class=\"box box-default box-text-bottom box-blog-post has-hover\">\n            					<div class=\"box-image\" >\n  						<div class=\"image-cover\" style=\"padding-top:56.25%;\">\n							<a href=\"https://www.nl.teng-shop.com/traditionele-chinese-kleding/\" class=\"plain\" aria-label=\"Traditionele Chinese Kleding\">\n								<img loading=\"lazy\" decoding=\"async\" width=\"1000\" height=\"666\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%201000%20666%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/traditionele-chinese-kleding.jpg\" class=\"lazy-load attachment-original size-original wp-post-image\" alt=\"Traditionele Chinese Kleding\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/traditionele-chinese-kleding.jpg 1000w, https://www.nl.teng-shop.com/wp-content/uploads/2022/12/traditionele-chinese-kleding-300x200.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2022/12/traditionele-chinese-kleding-768x511.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />							</a>\n  							  							  						</div>\n  						  					</div>\n          					<div class=\"box-text text-center\" >\n					<div class=\"box-text-inner blog-post-inner\">\n\n					\n											<p class=\"cat-label tag-label is-xxsmall op-7 uppercase\">\n					Traditionele Chinese Kleding 					</p>\n										<h5 class=\"post-title is-large \">\n						<a href=\"https://www.nl.teng-shop.com/traditionele-chinese-kleding/\" class=\"plain\">Traditionele Chinese Kleding</a>\n					</h5>\n										<div class=\"is-divider\"></div>\n										<p class=\"from_the_blog_excerpt \">\n											</p>\n					                    \n					\n					\n					</div>\n					</div>\n									</div>\n			</div>\n		</div><div class=\"col post-item\" data-animate=\"fadeInLeft\">\n			<div class=\"col-inner\">\n				<div class=\"box box-default box-text-bottom box-blog-post has-hover\">\n            					<div class=\"box-image\" >\n  						<div class=\"image-cover\" style=\"padding-top:56.25%;\">\n							<a href=\"https://www.nl.teng-shop.com/alles-over-de-chinese-qipao-jurk/\" class=\"plain\" aria-label=\"Alles over de Chinese Qipao-jurk\">\n								<img loading=\"lazy\" decoding=\"async\" width=\"1000\" height=\"666\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%201000%20666%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/alles-over-de-chinese-qipao-jurk.jpg\" class=\"lazy-load attachment-original size-original wp-post-image\" alt=\"Alles over de Chinese Qipao-jurk\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/alles-over-de-chinese-qipao-jurk.jpg 1000w, https://www.nl.teng-shop.com/wp-content/uploads/2022/12/alles-over-de-chinese-qipao-jurk-300x200.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2022/12/alles-over-de-chinese-qipao-jurk-768x511.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />							</a>\n  							  							  						</div>\n  						  					</div>\n          					<div class=\"box-text text-center\" >\n					<div class=\"box-text-inner blog-post-inner\">\n\n					\n											<p class=\"cat-label tag-label is-xxsmall op-7 uppercase\">\n					Traditionele Chinese Kleding 					</p>\n										<h5 class=\"post-title is-large \">\n						<a href=\"https://www.nl.teng-shop.com/alles-over-de-chinese-qipao-jurk/\" class=\"plain\">Alles over de Chinese Qipao-jurk</a>\n					</h5>\n										<div class=\"is-divider\"></div>\n										<p class=\"from_the_blog_excerpt \">\n											</p>\n					                    \n					\n					\n					</div>\n					</div>\n									</div>\n			</div>\n		</div><div class=\"col post-item\" data-animate=\"fadeInLeft\">\n			<div class=\"col-inner\">\n				<div class=\"box box-default box-text-bottom box-blog-post has-hover\">\n            					<div class=\"box-image\" >\n  						<div class=\"image-cover\" style=\"padding-top:56.25%;\">\n							<a href=\"https://www.nl.teng-shop.com/de-traditionele-chinese-kleding/\" class=\"plain\" aria-label=\"De Traditionele Chinese Jurk, een Modern Kledingstuk\">\n								<img loading=\"lazy\" decoding=\"async\" width=\"1000\" height=\"666\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%201000%20666%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/de-traditionele-chinese-jurk-een-modern-kledingstuk.jpg\" class=\"lazy-load attachment-original size-original wp-post-image\" alt=\"De Traditionele Chinese Jurk, een Modern Kledingstuk\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/de-traditionele-chinese-jurk-een-modern-kledingstuk.jpg 1000w, https://www.nl.teng-shop.com/wp-content/uploads/2022/12/de-traditionele-chinese-jurk-een-modern-kledingstuk-300x200.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2022/12/de-traditionele-chinese-jurk-een-modern-kledingstuk-768x511.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />							</a>\n  							  							  						</div>\n  						  					</div>\n          					<div class=\"box-text text-center\" >\n					<div class=\"box-text-inner blog-post-inner\">\n\n					\n											<p class=\"cat-label tag-label is-xxsmall op-7 uppercase\">\n					Chinese Cultuur 					</p>\n										<h5 class=\"post-title is-large \">\n						<a href=\"https://www.nl.teng-shop.com/de-traditionele-chinese-kleding/\" class=\"plain\">De Traditionele Chinese Jurk, een Modern Kledingstuk</a>\n					</h5>\n										<div class=\"is-divider\"></div>\n										<p class=\"from_the_blog_excerpt \">\n											</p>\n					                    \n					\n					\n					</div>\n					</div>\n									</div>\n			</div>\n		</div></div>\n\n	<div id=\"gap-634211486\" class=\"gap-element clearfix\" style=\"display:block; height:auto;\">\n		\n<style>\n#gap-634211486 {\n  padding-top: 40px;\n}\n</style>\n	</div>\n	\n\n<div class=\"container section-title-container\" ><h2 class=\"section-title section-title-center\"><b></b><span class=\"section-title-main\" style=\"color:rgb(0, 0, 0);\">Chinese parapluutjes</span><b></b></h2></div>\n\n	\n  \n    <div class=\"row large-columns-4 medium-columns-3 small-columns-2 row-small slider row-slider slider-nav-reveal slider-nav-push\"  data-flickity-options=\'{\"imagesLoaded\": true, \"groupCells\": \"100%\", \"dragThreshold\" : 5, \"cellAlign\": \"left\",\"wrapAround\": true,\"prevNextButtons\": true,\"percentPosition\": true,\"pageDots\": false, \"rightToLeft\": false, \"autoPlay\" : false}\' >\n\n  \n	     <div class=\"product-small col has-hover product type-product post-4013 status-publish last instock product_cat-chinese-accessoires product_cat-chinese-parapluutjes has-post-thumbnail shipping-taxable purchasable product-type-simple\">\n	<div class=\"col-inner\">\n	\n<div class=\"badge-container absolute left top z-1\">\n\n</div>\n	<div class=\"product-small box \">\n		<div class=\"box-image\">\n			<div class=\"image-fade_in_back\">\n				<a href=\"https://www.nl.teng-shop.com/product/traditionele-chinese-paraplu/\" aria-label=\"Traditionele Chinese Paraplu - Baifeng\">\n					<img loading=\"lazy\" decoding=\"async\" width=\"640\" height=\"640\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20640%20640%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/traditionele-chinese-paraplu-baifeng.jpg\" class=\"lazy-load attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Traditionele Chinese Paraplu - Baifeng\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/traditionele-chinese-paraplu-baifeng.jpg 640w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/traditionele-chinese-paraplu-baifeng-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/traditionele-chinese-paraplu-baifeng-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/traditionele-chinese-paraplu-baifeng-100x100.jpg 100w\" sizes=\"(max-width: 640px) 100vw, 640px\" />				</a>\n			</div>\n			<div class=\"image-tools is-small top right show-on-hover\">\n						<div class=\"wishlist-icon\">\n			<button class=\"wishlist-button button is-outline circle icon\" aria-label=\"Verlanglijst\">\n				<i class=\"icon-heart\" ></i>			</button>\n			<div class=\"wishlist-popup dark\">\n				\n<div\n	class=\"yith-wcwl-add-to-wishlist add-to-wishlist-4013  wishlist-fragment on-first-load\"\n	data-fragment-ref=\"4013\"\n	data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:4013,&quot;parent_product_id&quot;:4013,&quot;product_type&quot;:&quot;simple&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Bekijk de verlanglijst&quot;,&quot;already_in_wishslist_text&quot;:&quot;Het product staat al op je verlanglijstje!&quot;,&quot;product_added_text&quot;:&quot;Product toegevoegd!&quot;,&quot;heading_icon&quot;:&quot;fa-heart-o&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n>\n			\n			<!-- ADD TO WISHLIST -->\n			\n<div class=\"yith-wcwl-add-button\">\n		<a\n		href=\"?add_to_wishlist=4013&#038;_wpnonce=cdb7a006a5\"\n		class=\"add_to_wishlist single_add_to_wishlist\"\n		data-product-id=\"4013\"\n		data-product-type=\"simple\"\n		data-original-product-id=\"4013\"\n		data-title=\"Toevoegen aan verlanglijst\"\n		rel=\"nofollow\"\n	>\n		<i class=\"yith-wcwl-icon fa fa-heart-o\"></i>		<span>Toevoegen aan verlanglijst</span>\n	</a>\n</div>\n\n			<!-- COUNT TEXT -->\n			\n			</div>\n			</div>\n		</div>\n					</div>\n			<div class=\"image-tools is-small hide-for-small bottom left show-on-hover\">\n							</div>\n			<div class=\"image-tools grid-tools text-center hide-for-small bottom hover-slide-in show-on-hover\">\n							</div>\n					</div>\n\n		<div class=\"box-text box-text-products text-center grid-style-2\">\n			<div class=\"title-wrapper\"><p class=\"name product-title woocommerce-loop-product__title\"><a href=\"https://www.nl.teng-shop.com/product/traditionele-chinese-paraplu/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\">Traditionele Chinese Paraplu &#8211; Baifeng</a></p></div><div class=\"price-wrapper\">\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&euro;</span>32.99</bdi></span></span>\n</div>		</div>\n	</div>\n	<span class=\"gtm4wp_productdata\" style=\"display:none; visibility:hidden;\" data-gtm4wp_product_id=\"4013\" data-gtm4wp_product_internal_id=\"4013\" data-gtm4wp_product_name=\"Traditionele Chinese Paraplu - Baifeng\" data-gtm4wp_product_price=\"32.99\" data-gtm4wp_product_cat=\"Chinese Parapluutjes\" data-gtm4wp_product_url=\"https://www.nl.teng-shop.com/product/traditionele-chinese-paraplu/\" data-gtm4wp_product_listposition=\"9\" data-gtm4wp_productlist_name=\"Algemeen product lijst\" data-gtm4wp_product_stocklevel=\"1000\" data-gtm4wp_product_brand=\"\"></span>	</div>\n</div><div class=\"product-small col has-hover product type-product post-4015 status-publish first instock product_cat-chinese-accessoires product_cat-chinese-parapluutjes has-post-thumbnail shipping-taxable purchasable product-type-simple\">\n	<div class=\"col-inner\">\n	\n<div class=\"badge-container absolute left top z-1\">\n\n</div>\n	<div class=\"product-small box \">\n		<div class=\"box-image\">\n			<div class=\"image-fade_in_back\">\n				<a href=\"https://www.nl.teng-shop.com/product/vegetatie-chinese-paraplu/\" aria-label=\"Vegetatie Chinese Paraplu - Xiangruo\">\n					<img loading=\"lazy\" decoding=\"async\" width=\"640\" height=\"640\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20640%20640%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/vegetatie-chinese-paraplu-xiangruo.jpg\" class=\"lazy-load attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Vegetatie Chinese Paraplu - Xiangruo\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/vegetatie-chinese-paraplu-xiangruo.jpg 640w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/vegetatie-chinese-paraplu-xiangruo-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/vegetatie-chinese-paraplu-xiangruo-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/vegetatie-chinese-paraplu-xiangruo-100x100.jpg 100w\" sizes=\"(max-width: 640px) 100vw, 640px\" /><img loading=\"lazy\" decoding=\"async\" width=\"500\" height=\"500\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20500%20500%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/vegetatie-chinese-paraplu-xiangruo.png\" class=\"lazy-load show-on-hover absolute fill hide-for-small back-image\" alt=\"Vegetatie Chinese Paraplu - Xiangruo\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/vegetatie-chinese-paraplu-xiangruo.png 500w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/vegetatie-chinese-paraplu-xiangruo-300x300.png 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/vegetatie-chinese-paraplu-xiangruo-150x150.png 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/vegetatie-chinese-paraplu-xiangruo-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />				</a>\n			</div>\n			<div class=\"image-tools is-small top right show-on-hover\">\n						<div class=\"wishlist-icon\">\n			<button class=\"wishlist-button button is-outline circle icon\" aria-label=\"Verlanglijst\">\n				<i class=\"icon-heart\" ></i>			</button>\n			<div class=\"wishlist-popup dark\">\n				\n<div\n	class=\"yith-wcwl-add-to-wishlist add-to-wishlist-4015  wishlist-fragment on-first-load\"\n	data-fragment-ref=\"4015\"\n	data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:4015,&quot;parent_product_id&quot;:4015,&quot;product_type&quot;:&quot;simple&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Bekijk de verlanglijst&quot;,&quot;already_in_wishslist_text&quot;:&quot;Het product staat al op je verlanglijstje!&quot;,&quot;product_added_text&quot;:&quot;Product toegevoegd!&quot;,&quot;heading_icon&quot;:&quot;fa-heart-o&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n>\n			\n			<!-- ADD TO WISHLIST -->\n			\n<div class=\"yith-wcwl-add-button\">\n		<a\n		href=\"?add_to_wishlist=4015&#038;_wpnonce=cdb7a006a5\"\n		class=\"add_to_wishlist single_add_to_wishlist\"\n		data-product-id=\"4015\"\n		data-product-type=\"simple\"\n		data-original-product-id=\"4015\"\n		data-title=\"Toevoegen aan verlanglijst\"\n		rel=\"nofollow\"\n	>\n		<i class=\"yith-wcwl-icon fa fa-heart-o\"></i>		<span>Toevoegen aan verlanglijst</span>\n	</a>\n</div>\n\n			<!-- COUNT TEXT -->\n			\n			</div>\n			</div>\n		</div>\n					</div>\n			<div class=\"image-tools is-small hide-for-small bottom left show-on-hover\">\n							</div>\n			<div class=\"image-tools grid-tools text-center hide-for-small bottom hover-slide-in show-on-hover\">\n							</div>\n					</div>\n\n		<div class=\"box-text box-text-products text-center grid-style-2\">\n			<div class=\"title-wrapper\"><p class=\"name product-title woocommerce-loop-product__title\"><a href=\"https://www.nl.teng-shop.com/product/vegetatie-chinese-paraplu/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\">Vegetatie Chinese Paraplu &#8211; Xiangruo</a></p></div><div class=\"price-wrapper\">\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&euro;</span>36.99</bdi></span></span>\n</div>		</div>\n	</div>\n	<span class=\"gtm4wp_productdata\" style=\"display:none; visibility:hidden;\" data-gtm4wp_product_id=\"4015\" data-gtm4wp_product_internal_id=\"4015\" data-gtm4wp_product_name=\"Vegetatie Chinese Paraplu - Xiangruo\" data-gtm4wp_product_price=\"36.99\" data-gtm4wp_product_cat=\"Chinese Parapluutjes\" data-gtm4wp_product_url=\"https://www.nl.teng-shop.com/product/vegetatie-chinese-paraplu/\" data-gtm4wp_product_listposition=\"10\" data-gtm4wp_productlist_name=\"Algemeen product lijst\" data-gtm4wp_product_stocklevel=\"1000\" data-gtm4wp_product_brand=\"\"></span>	</div>\n</div><div class=\"product-small col has-hover product type-product post-4000 status-publish instock product_cat-chinese-accessoires product_cat-chinese-parapluutjes has-post-thumbnail shipping-taxable purchasable product-type-simple\">\n	<div class=\"col-inner\">\n	\n<div class=\"badge-container absolute left top z-1\">\n\n</div>\n	<div class=\"product-small box \">\n		<div class=\"box-image\">\n			<div class=\"image-fade_in_back\">\n				<a href=\"https://www.nl.teng-shop.com/product/zijden-chinese-paraplu/\" aria-label=\"Zijden Chinese Paraplu - Siyun\">\n					<img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"765\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20768%20765%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/zijden-chinese-paraplu-siyun-768x765.jpg\" class=\"lazy-load attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Zijden Chinese Paraplu - Siyun\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/zijden-chinese-paraplu-siyun-768x765.jpg 768w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/zijden-chinese-paraplu-siyun-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/zijden-chinese-paraplu-siyun-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/zijden-chinese-paraplu-siyun-100x100.jpg 100w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/zijden-chinese-paraplu-siyun.jpg 892w\" sizes=\"(max-width: 768px) 100vw, 768px\" /><img loading=\"lazy\" decoding=\"async\" width=\"400\" height=\"392\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20400%20392%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/zijden-chinese-paraplu-siyun-2.jpg\" class=\"lazy-load show-on-hover absolute fill hide-for-small back-image\" alt=\"Zijden Chinese Paraplu - Siyun\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/zijden-chinese-paraplu-siyun-2.jpg 400w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/zijden-chinese-paraplu-siyun-2-300x294.jpg 300w\" sizes=\"(max-width: 400px) 100vw, 400px\" />				</a>\n			</div>\n			<div class=\"image-tools is-small top right show-on-hover\">\n						<div class=\"wishlist-icon\">\n			<button class=\"wishlist-button button is-outline circle icon\" aria-label=\"Verlanglijst\">\n				<i class=\"icon-heart\" ></i>			</button>\n			<div class=\"wishlist-popup dark\">\n				\n<div\n	class=\"yith-wcwl-add-to-wishlist add-to-wishlist-4000  wishlist-fragment on-first-load\"\n	data-fragment-ref=\"4000\"\n	data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:4000,&quot;parent_product_id&quot;:4000,&quot;product_type&quot;:&quot;simple&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Bekijk de verlanglijst&quot;,&quot;already_in_wishslist_text&quot;:&quot;Het product staat al op je verlanglijstje!&quot;,&quot;product_added_text&quot;:&quot;Product toegevoegd!&quot;,&quot;heading_icon&quot;:&quot;fa-heart-o&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n>\n			\n			<!-- ADD TO WISHLIST -->\n			\n<div class=\"yith-wcwl-add-button\">\n		<a\n		href=\"?add_to_wishlist=4000&#038;_wpnonce=cdb7a006a5\"\n		class=\"add_to_wishlist single_add_to_wishlist\"\n		data-product-id=\"4000\"\n		data-product-type=\"simple\"\n		data-original-product-id=\"4000\"\n		data-title=\"Toevoegen aan verlanglijst\"\n		rel=\"nofollow\"\n	>\n		<i class=\"yith-wcwl-icon fa fa-heart-o\"></i>		<span>Toevoegen aan verlanglijst</span>\n	</a>\n</div>\n\n			<!-- COUNT TEXT -->\n			\n			</div>\n			</div>\n		</div>\n					</div>\n			<div class=\"image-tools is-small hide-for-small bottom left show-on-hover\">\n							</div>\n			<div class=\"image-tools grid-tools text-center hide-for-small bottom hover-slide-in show-on-hover\">\n							</div>\n					</div>\n\n		<div class=\"box-text box-text-products text-center grid-style-2\">\n			<div class=\"title-wrapper\"><p class=\"name product-title woocommerce-loop-product__title\"><a href=\"https://www.nl.teng-shop.com/product/zijden-chinese-paraplu/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\">Zijden Chinese Paraplu &#8211; Siyun</a></p></div><div class=\"price-wrapper\">\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&euro;</span>33.99</bdi></span></span>\n</div>		</div>\n	</div>\n	<span class=\"gtm4wp_productdata\" style=\"display:none; visibility:hidden;\" data-gtm4wp_product_id=\"4000\" data-gtm4wp_product_internal_id=\"4000\" data-gtm4wp_product_name=\"Zijden Chinese Paraplu - Siyun\" data-gtm4wp_product_price=\"33.99\" data-gtm4wp_product_cat=\"Chinese Parapluutjes\" data-gtm4wp_product_url=\"https://www.nl.teng-shop.com/product/zijden-chinese-paraplu/\" data-gtm4wp_product_listposition=\"11\" data-gtm4wp_productlist_name=\"Algemeen product lijst\" data-gtm4wp_product_stocklevel=\"1000\" data-gtm4wp_product_brand=\"\"></span>	</div>\n</div><div class=\"product-small col has-hover product type-product post-4001 status-publish last instock product_cat-chinese-accessoires product_cat-chinese-parapluutjes has-post-thumbnail shipping-taxable purchasable product-type-simple\">\n	<div class=\"col-inner\">\n	\n<div class=\"badge-container absolute left top z-1\">\n\n</div>\n	<div class=\"product-small box \">\n		<div class=\"box-image\">\n			<div class=\"image-fade_in_back\">\n				<a href=\"https://www.nl.teng-shop.com/product/stoffen-chinese-paraplu/\" aria-label=\"Stoffen Chinese Paraplu - Shengxin\">\n					<img loading=\"lazy\" decoding=\"async\" width=\"400\" height=\"400\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20400%20400%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/stoffen-chinese-paraplu-shengxin.jpg\" class=\"lazy-load attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Stoffen Chinese Paraplu - Shengxin\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/stoffen-chinese-paraplu-shengxin.jpg 400w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/stoffen-chinese-paraplu-shengxin-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/stoffen-chinese-paraplu-shengxin-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/stoffen-chinese-paraplu-shengxin-100x100.jpg 100w\" sizes=\"(max-width: 400px) 100vw, 400px\" />				</a>\n			</div>\n			<div class=\"image-tools is-small top right show-on-hover\">\n						<div class=\"wishlist-icon\">\n			<button class=\"wishlist-button button is-outline circle icon\" aria-label=\"Verlanglijst\">\n				<i class=\"icon-heart\" ></i>			</button>\n			<div class=\"wishlist-popup dark\">\n				\n<div\n	class=\"yith-wcwl-add-to-wishlist add-to-wishlist-4001  wishlist-fragment on-first-load\"\n	data-fragment-ref=\"4001\"\n	data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:4001,&quot;parent_product_id&quot;:4001,&quot;product_type&quot;:&quot;simple&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Bekijk de verlanglijst&quot;,&quot;already_in_wishslist_text&quot;:&quot;Het product staat al op je verlanglijstje!&quot;,&quot;product_added_text&quot;:&quot;Product toegevoegd!&quot;,&quot;heading_icon&quot;:&quot;fa-heart-o&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n>\n			\n			<!-- ADD TO WISHLIST -->\n			\n<div class=\"yith-wcwl-add-button\">\n		<a\n		href=\"?add_to_wishlist=4001&#038;_wpnonce=cdb7a006a5\"\n		class=\"add_to_wishlist single_add_to_wishlist\"\n		data-product-id=\"4001\"\n		data-product-type=\"simple\"\n		data-original-product-id=\"4001\"\n		data-title=\"Toevoegen aan verlanglijst\"\n		rel=\"nofollow\"\n	>\n		<i class=\"yith-wcwl-icon fa fa-heart-o\"></i>		<span>Toevoegen aan verlanglijst</span>\n	</a>\n</div>\n\n			<!-- COUNT TEXT -->\n			\n			</div>\n			</div>\n		</div>\n					</div>\n			<div class=\"image-tools is-small hide-for-small bottom left show-on-hover\">\n							</div>\n			<div class=\"image-tools grid-tools text-center hide-for-small bottom hover-slide-in show-on-hover\">\n							</div>\n					</div>\n\n		<div class=\"box-text box-text-products text-center grid-style-2\">\n			<div class=\"title-wrapper\"><p class=\"name product-title woocommerce-loop-product__title\"><a href=\"https://www.nl.teng-shop.com/product/stoffen-chinese-paraplu/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\">Stoffen Chinese Paraplu &#8211; Shengxin</a></p></div><div class=\"price-wrapper\">\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&euro;</span>54.99</bdi></span></span>\n</div>		</div>\n	</div>\n	<span class=\"gtm4wp_productdata\" style=\"display:none; visibility:hidden;\" data-gtm4wp_product_id=\"4001\" data-gtm4wp_product_internal_id=\"4001\" data-gtm4wp_product_name=\"Stoffen Chinese Paraplu - Shengxin\" data-gtm4wp_product_price=\"54.99\" data-gtm4wp_product_cat=\"Chinese Parapluutjes\" data-gtm4wp_product_url=\"https://www.nl.teng-shop.com/product/stoffen-chinese-paraplu/\" data-gtm4wp_product_listposition=\"12\" data-gtm4wp_productlist_name=\"Algemeen product lijst\" data-gtm4wp_product_stocklevel=\"1000\" data-gtm4wp_product_brand=\"\"></span>	</div>\n</div></div>\n\n	<div id=\"gap-222619641\" class=\"gap-element clearfix\" style=\"display:block; height:auto;\">\n		\n<style>\n#gap-222619641 {\n  padding-top: 40px;\n}\n</style>\n	</div>\n	\n\n<div class=\"container section-title-container\" ><h2 class=\"section-title section-title-center\"><b></b><span class=\"section-title-main\" style=\"color:rgb(0, 0, 0);\">Chinese lampions</span><b></b></h2></div>\n\n	\n  \n    <div class=\"row large-columns-4 medium-columns-3 small-columns-2 row-small slider row-slider slider-nav-reveal slider-nav-push\"  data-flickity-options=\'{\"imagesLoaded\": true, \"groupCells\": \"100%\", \"dragThreshold\" : 5, \"cellAlign\": \"left\",\"wrapAround\": true,\"prevNextButtons\": true,\"percentPosition\": true,\"pageDots\": false, \"rightToLeft\": false, \"autoPlay\" : false}\' >\n\n  \n	     <div class=\"product-small col has-hover product type-product post-3931 status-publish first instock product_cat-chinese-lampionnen product_cat-chinese-versiering product_tag-papier has-post-thumbnail shipping-taxable purchasable product-type-variable\">\n	<div class=\"col-inner\">\n	\n<div class=\"badge-container absolute left top z-1\">\n\n</div>\n	<div class=\"product-small box \">\n		<div class=\"box-image\">\n			<div class=\"image-fade_in_back\">\n				<a href=\"https://www.nl.teng-shop.com/product/chinese-papieren-lampionnen/\" aria-label=\"Set Witte Chinese Papieren Lampionnen\">\n					<img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"768\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20768%20768%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/set-witte-chinese-papieren-lampionnen-768x768.jpg\" class=\"lazy-load attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Set Witte Chinese Papieren Lampionnen\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/set-witte-chinese-papieren-lampionnen-768x768.jpg 768w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/set-witte-chinese-papieren-lampionnen-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/set-witte-chinese-papieren-lampionnen-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/set-witte-chinese-papieren-lampionnen-100x100.jpg 100w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/set-witte-chinese-papieren-lampionnen.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" /><img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"785\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20768%20785%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/set-witte-chinese-papieren-lampionnen-40cm-768x785.jpg\" class=\"lazy-load show-on-hover absolute fill hide-for-small back-image\" alt=\"Set Witte Chinese Papieren Lampionnen - 40cm\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/set-witte-chinese-papieren-lampionnen-40cm-768x785.jpg 768w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/set-witte-chinese-papieren-lampionnen-40cm-293x300.jpg 293w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/set-witte-chinese-papieren-lampionnen-40cm-1001x1024.jpg 1001w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/set-witte-chinese-papieren-lampionnen-40cm.jpg 1467w\" sizes=\"(max-width: 768px) 100vw, 768px\" />				</a>\n			</div>\n			<div class=\"image-tools is-small top right show-on-hover\">\n						<div class=\"wishlist-icon\">\n			<button class=\"wishlist-button button is-outline circle icon\" aria-label=\"Verlanglijst\">\n				<i class=\"icon-heart\" ></i>			</button>\n			<div class=\"wishlist-popup dark\">\n				\n<div\n	class=\"yith-wcwl-add-to-wishlist add-to-wishlist-3931  wishlist-fragment on-first-load\"\n	data-fragment-ref=\"3931\"\n	data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:3931,&quot;parent_product_id&quot;:3931,&quot;product_type&quot;:&quot;variable&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Bekijk de verlanglijst&quot;,&quot;already_in_wishslist_text&quot;:&quot;Het product staat al op je verlanglijstje!&quot;,&quot;product_added_text&quot;:&quot;Product toegevoegd!&quot;,&quot;heading_icon&quot;:&quot;fa-heart-o&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n>\n			\n			<!-- ADD TO WISHLIST -->\n			\n<div class=\"yith-wcwl-add-button\">\n		<a\n		href=\"?add_to_wishlist=3931&#038;_wpnonce=cdb7a006a5\"\n		class=\"add_to_wishlist single_add_to_wishlist\"\n		data-product-id=\"3931\"\n		data-product-type=\"variable\"\n		data-original-product-id=\"3931\"\n		data-title=\"Toevoegen aan verlanglijst\"\n		rel=\"nofollow\"\n	>\n		<i class=\"yith-wcwl-icon fa fa-heart-o\"></i>		<span>Toevoegen aan verlanglijst</span>\n	</a>\n</div>\n\n			<!-- COUNT TEXT -->\n			\n			</div>\n			</div>\n		</div>\n					</div>\n			<div class=\"image-tools is-small hide-for-small bottom left show-on-hover\">\n							</div>\n			<div class=\"image-tools grid-tools text-center hide-for-small bottom hover-slide-in show-on-hover\">\n							</div>\n					</div>\n\n		<div class=\"box-text box-text-products text-center grid-style-2\">\n			<div class=\"title-wrapper\"><p class=\"name product-title woocommerce-loop-product__title\"><a href=\"https://www.nl.teng-shop.com/product/chinese-papieren-lampionnen/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\">Set Witte Chinese Papieren Lampionnen</a></p></div><div class=\"price-wrapper\">\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&euro;</span>16.99</bdi></span></span>\n</div>		</div>\n	</div>\n	<span class=\"gtm4wp_productdata\" style=\"display:none; visibility:hidden;\" data-gtm4wp_product_id=\"3931\" data-gtm4wp_product_internal_id=\"3931\" data-gtm4wp_product_name=\"Set Witte Chinese Papieren Lampionnen\" data-gtm4wp_product_price=\"16.99\" data-gtm4wp_product_cat=\"Chinese Lampionnen\" data-gtm4wp_product_url=\"https://www.nl.teng-shop.com/product/chinese-papieren-lampionnen/\" data-gtm4wp_product_listposition=\"13\" data-gtm4wp_productlist_name=\"Algemeen product lijst\" data-gtm4wp_product_stocklevel=\"\" data-gtm4wp_product_brand=\"\"></span>	</div>\n</div><div class=\"product-small col has-hover product type-product post-3914 status-publish instock product_cat-chinese-lampionnen product_cat-chinese-versiering has-post-thumbnail shipping-taxable purchasable product-type-simple\">\n	<div class=\"col-inner\">\n	\n<div class=\"badge-container absolute left top z-1\">\n\n</div>\n	<div class=\"product-small box \">\n		<div class=\"box-image\">\n			<div class=\"image-fade_in_back\">\n				<a href=\"https://www.nl.teng-shop.com/product/rode-chinese-lampionnen/\" aria-label=\"Rode Chinese Lampionnen\">\n					<img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"768\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20768%20768%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/rode-chinese-lampionnen-4-768x768.jpg\" class=\"lazy-load attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Rode Chinese Lampionnen\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/rode-chinese-lampionnen-4-768x768.jpg 768w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/rode-chinese-lampionnen-4-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/rode-chinese-lampionnen-4-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/rode-chinese-lampionnen-4-100x100.jpg 100w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/rode-chinese-lampionnen-4.jpg 800w\" sizes=\"(max-width: 768px) 100vw, 768px\" /><img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"760\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20768%20760%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/rode-chinese-lampionnen-3-768x760.jpg\" class=\"lazy-load show-on-hover absolute fill hide-for-small back-image\" alt=\"Rode Chinese Lampionnen\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/rode-chinese-lampionnen-3-768x760.jpg 768w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/rode-chinese-lampionnen-3-300x297.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/rode-chinese-lampionnen-3-100x100.jpg 100w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/rode-chinese-lampionnen-3.jpg 770w\" sizes=\"(max-width: 768px) 100vw, 768px\" />				</a>\n			</div>\n			<div class=\"image-tools is-small top right show-on-hover\">\n						<div class=\"wishlist-icon\">\n			<button class=\"wishlist-button button is-outline circle icon\" aria-label=\"Verlanglijst\">\n				<i class=\"icon-heart\" ></i>			</button>\n			<div class=\"wishlist-popup dark\">\n				\n<div\n	class=\"yith-wcwl-add-to-wishlist add-to-wishlist-3914  wishlist-fragment on-first-load\"\n	data-fragment-ref=\"3914\"\n	data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:3914,&quot;parent_product_id&quot;:3914,&quot;product_type&quot;:&quot;simple&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Bekijk de verlanglijst&quot;,&quot;already_in_wishslist_text&quot;:&quot;Het product staat al op je verlanglijstje!&quot;,&quot;product_added_text&quot;:&quot;Product toegevoegd!&quot;,&quot;heading_icon&quot;:&quot;fa-heart-o&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n>\n			\n			<!-- ADD TO WISHLIST -->\n			\n<div class=\"yith-wcwl-add-button\">\n		<a\n		href=\"?add_to_wishlist=3914&#038;_wpnonce=cdb7a006a5\"\n		class=\"add_to_wishlist single_add_to_wishlist\"\n		data-product-id=\"3914\"\n		data-product-type=\"simple\"\n		data-original-product-id=\"3914\"\n		data-title=\"Toevoegen aan verlanglijst\"\n		rel=\"nofollow\"\n	>\n		<i class=\"yith-wcwl-icon fa fa-heart-o\"></i>		<span>Toevoegen aan verlanglijst</span>\n	</a>\n</div>\n\n			<!-- COUNT TEXT -->\n			\n			</div>\n			</div>\n		</div>\n					</div>\n			<div class=\"image-tools is-small hide-for-small bottom left show-on-hover\">\n							</div>\n			<div class=\"image-tools grid-tools text-center hide-for-small bottom hover-slide-in show-on-hover\">\n							</div>\n					</div>\n\n		<div class=\"box-text box-text-products text-center grid-style-2\">\n			<div class=\"title-wrapper\"><p class=\"name product-title woocommerce-loop-product__title\"><a href=\"https://www.nl.teng-shop.com/product/rode-chinese-lampionnen/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\">Rode Chinese Lampionnen</a></p></div><div class=\"price-wrapper\">\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&euro;</span>52.99</bdi></span></span>\n</div>		</div>\n	</div>\n	<span class=\"gtm4wp_productdata\" style=\"display:none; visibility:hidden;\" data-gtm4wp_product_id=\"3914\" data-gtm4wp_product_internal_id=\"3914\" data-gtm4wp_product_name=\"Rode Chinese Lampionnen\" data-gtm4wp_product_price=\"52.99\" data-gtm4wp_product_cat=\"Chinese Lampionnen\" data-gtm4wp_product_url=\"https://www.nl.teng-shop.com/product/rode-chinese-lampionnen/\" data-gtm4wp_product_listposition=\"14\" data-gtm4wp_productlist_name=\"Algemeen product lijst\" data-gtm4wp_product_stocklevel=\"1000\" data-gtm4wp_product_brand=\"\"></span>	</div>\n</div><div class=\"product-small col has-hover product type-product post-3916 status-publish last instock product_cat-chinese-lampionnen product_cat-chinese-versiering has-post-thumbnail shipping-taxable purchasable product-type-variable\">\n	<div class=\"col-inner\">\n	\n<div class=\"badge-container absolute left top z-1\">\n\n</div>\n	<div class=\"product-small box \">\n		<div class=\"box-image\">\n			<div class=\"image-fade_in_back\">\n				<a href=\"https://www.nl.teng-shop.com/product/chinese-lantaarns/\" aria-label=\"Chinese Trouwlantaarns - Xianqin\">\n					<img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"768\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20768%20768%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-trouwlantaarns-xianqin-768x768.jpg\" class=\"lazy-load attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Chinese Trouwlantaarns - Xianqin\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-trouwlantaarns-xianqin-768x768.jpg 768w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-trouwlantaarns-xianqin-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-trouwlantaarns-xianqin-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-trouwlantaarns-xianqin-100x100.jpg 100w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-trouwlantaarns-xianqin.jpg 800w\" sizes=\"(max-width: 768px) 100vw, 768px\" /><img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"768\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20768%20768%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-trouwlantaarns-xianqin-2-768x768.jpg\" class=\"lazy-load show-on-hover absolute fill hide-for-small back-image\" alt=\"Chinese Trouwlantaarns - Xianqin\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-trouwlantaarns-xianqin-2-768x768.jpg 768w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-trouwlantaarns-xianqin-2-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-trouwlantaarns-xianqin-2-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-trouwlantaarns-xianqin-2-100x100.jpg 100w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-trouwlantaarns-xianqin-2.jpg 800w\" sizes=\"(max-width: 768px) 100vw, 768px\" />				</a>\n			</div>\n			<div class=\"image-tools is-small top right show-on-hover\">\n						<div class=\"wishlist-icon\">\n			<button class=\"wishlist-button button is-outline circle icon\" aria-label=\"Verlanglijst\">\n				<i class=\"icon-heart\" ></i>			</button>\n			<div class=\"wishlist-popup dark\">\n				\n<div\n	class=\"yith-wcwl-add-to-wishlist add-to-wishlist-3916  wishlist-fragment on-first-load\"\n	data-fragment-ref=\"3916\"\n	data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:3916,&quot;parent_product_id&quot;:3916,&quot;product_type&quot;:&quot;variable&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Bekijk de verlanglijst&quot;,&quot;already_in_wishslist_text&quot;:&quot;Het product staat al op je verlanglijstje!&quot;,&quot;product_added_text&quot;:&quot;Product toegevoegd!&quot;,&quot;heading_icon&quot;:&quot;fa-heart-o&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n>\n			\n			<!-- ADD TO WISHLIST -->\n			\n<div class=\"yith-wcwl-add-button\">\n		<a\n		href=\"?add_to_wishlist=3916&#038;_wpnonce=cdb7a006a5\"\n		class=\"add_to_wishlist single_add_to_wishlist\"\n		data-product-id=\"3916\"\n		data-product-type=\"variable\"\n		data-original-product-id=\"3916\"\n		data-title=\"Toevoegen aan verlanglijst\"\n		rel=\"nofollow\"\n	>\n		<i class=\"yith-wcwl-icon fa fa-heart-o\"></i>		<span>Toevoegen aan verlanglijst</span>\n	</a>\n</div>\n\n			<!-- COUNT TEXT -->\n			\n			</div>\n			</div>\n		</div>\n					</div>\n			<div class=\"image-tools is-small hide-for-small bottom left show-on-hover\">\n							</div>\n			<div class=\"image-tools grid-tools text-center hide-for-small bottom hover-slide-in show-on-hover\">\n							</div>\n					</div>\n\n		<div class=\"box-text box-text-products text-center grid-style-2\">\n			<div class=\"title-wrapper\"><p class=\"name product-title woocommerce-loop-product__title\"><a href=\"https://www.nl.teng-shop.com/product/chinese-lantaarns/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\">Chinese Trouwlantaarns &#8211; Xianqin</a></p></div><div class=\"price-wrapper\">\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&euro;</span>49.99</bdi></span></span>\n</div>		</div>\n	</div>\n	<span class=\"gtm4wp_productdata\" style=\"display:none; visibility:hidden;\" data-gtm4wp_product_id=\"3916\" data-gtm4wp_product_internal_id=\"3916\" data-gtm4wp_product_name=\"Chinese Trouwlantaarns - Xianqin\" data-gtm4wp_product_price=\"49.99\" data-gtm4wp_product_cat=\"Chinese Lampionnen\" data-gtm4wp_product_url=\"https://www.nl.teng-shop.com/product/chinese-lantaarns/\" data-gtm4wp_product_listposition=\"15\" data-gtm4wp_productlist_name=\"Algemeen product lijst\" data-gtm4wp_product_stocklevel=\"\" data-gtm4wp_product_brand=\"\"></span>	</div>\n</div><div class=\"product-small col has-hover product type-product post-3906 status-publish first instock product_cat-chinese-lampionnen product_cat-chinese-versiering has-post-thumbnail shipping-taxable purchasable product-type-variable\">\n	<div class=\"col-inner\">\n	\n<div class=\"badge-container absolute left top z-1\">\n\n</div>\n	<div class=\"product-small box \">\n		<div class=\"box-image\">\n			<div class=\"image-fade_in_back\">\n				<a href=\"https://www.nl.teng-shop.com/product/chinese-papieren-lampionnen-10-cm/\" aria-label=\"Paarse Chinese Papieren Lampionnen 10 Cm\">\n					<img loading=\"lazy\" decoding=\"async\" width=\"640\" height=\"640\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20640%20640%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/paarse-chinese-papieren-lampionnen-10-cm-40cm.jpg\" class=\"lazy-load attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Paarse Chinese Papieren Lampionnen 10 Cm - 40cm\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/paarse-chinese-papieren-lampionnen-10-cm-40cm.jpg 640w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/paarse-chinese-papieren-lampionnen-10-cm-40cm-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/paarse-chinese-papieren-lampionnen-10-cm-40cm-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/paarse-chinese-papieren-lampionnen-10-cm-40cm-100x100.jpg 100w\" sizes=\"(max-width: 640px) 100vw, 640px\" /><img loading=\"lazy\" decoding=\"async\" width=\"750\" height=\"750\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20750%20750%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/paarse-chinese-papieren-lampionnen-10-cm.jpg\" class=\"lazy-load show-on-hover absolute fill hide-for-small back-image\" alt=\"Paarse Chinese Papieren Lampionnen 10 Cm\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/paarse-chinese-papieren-lampionnen-10-cm.jpg 750w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/paarse-chinese-papieren-lampionnen-10-cm-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/paarse-chinese-papieren-lampionnen-10-cm-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/paarse-chinese-papieren-lampionnen-10-cm-100x100.jpg 100w\" sizes=\"(max-width: 750px) 100vw, 750px\" />				</a>\n			</div>\n			<div class=\"image-tools is-small top right show-on-hover\">\n						<div class=\"wishlist-icon\">\n			<button class=\"wishlist-button button is-outline circle icon\" aria-label=\"Verlanglijst\">\n				<i class=\"icon-heart\" ></i>			</button>\n			<div class=\"wishlist-popup dark\">\n				\n<div\n	class=\"yith-wcwl-add-to-wishlist add-to-wishlist-3906  wishlist-fragment on-first-load\"\n	data-fragment-ref=\"3906\"\n	data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:3906,&quot;parent_product_id&quot;:3906,&quot;product_type&quot;:&quot;variable&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Bekijk de verlanglijst&quot;,&quot;already_in_wishslist_text&quot;:&quot;Het product staat al op je verlanglijstje!&quot;,&quot;product_added_text&quot;:&quot;Product toegevoegd!&quot;,&quot;heading_icon&quot;:&quot;fa-heart-o&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n>\n			\n			<!-- ADD TO WISHLIST -->\n			\n<div class=\"yith-wcwl-add-button\">\n		<a\n		href=\"?add_to_wishlist=3906&#038;_wpnonce=cdb7a006a5\"\n		class=\"add_to_wishlist single_add_to_wishlist\"\n		data-product-id=\"3906\"\n		data-product-type=\"variable\"\n		data-original-product-id=\"3906\"\n		data-title=\"Toevoegen aan verlanglijst\"\n		rel=\"nofollow\"\n	>\n		<i class=\"yith-wcwl-icon fa fa-heart-o\"></i>		<span>Toevoegen aan verlanglijst</span>\n	</a>\n</div>\n\n			<!-- COUNT TEXT -->\n			\n			</div>\n			</div>\n		</div>\n					</div>\n			<div class=\"image-tools is-small hide-for-small bottom left show-on-hover\">\n							</div>\n			<div class=\"image-tools grid-tools text-center hide-for-small bottom hover-slide-in show-on-hover\">\n							</div>\n					</div>\n\n		<div class=\"box-text box-text-products text-center grid-style-2\">\n			<div class=\"title-wrapper\"><p class=\"name product-title woocommerce-loop-product__title\"><a href=\"https://www.nl.teng-shop.com/product/chinese-papieren-lampionnen-10-cm/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\">Paarse Chinese Papieren Lampionnen 10 Cm</a></p></div><div class=\"price-wrapper\">\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&euro;</span>12.99</bdi></span></span>\n</div>		</div>\n	</div>\n	<span class=\"gtm4wp_productdata\" style=\"display:none; visibility:hidden;\" data-gtm4wp_product_id=\"3906\" data-gtm4wp_product_internal_id=\"3906\" data-gtm4wp_product_name=\"Paarse Chinese Papieren Lampionnen 10 Cm\" data-gtm4wp_product_price=\"12.99\" data-gtm4wp_product_cat=\"Chinese Lampionnen\" data-gtm4wp_product_url=\"https://www.nl.teng-shop.com/product/chinese-papieren-lampionnen-10-cm/\" data-gtm4wp_product_listposition=\"16\" data-gtm4wp_productlist_name=\"Algemeen product lijst\" data-gtm4wp_product_stocklevel=\"\" data-gtm4wp_product_brand=\"\"></span>	</div>\n</div></div>\n\n	<div id=\"gap-1227931707\" class=\"gap-element clearfix\" style=\"display:block; height:auto;\">\n		\n<style>\n#gap-1227931707 {\n  padding-top: 40px;\n}\n</style>\n	</div>\n	\n\n<div class=\"container section-title-container\" ><h2 class=\"section-title section-title-center\"><b></b><span class=\"section-title-main\" style=\"color:rgb(0, 0, 0);\">Teng Shop, de Chinese winkel in dienst van je passie!</span><b></b></h2></div>\n\n	<div id=\"text-1824305956\" class=\"text\">\n		\n\n<div style=\"text-align: center;\">Als je zover bent gekomen, ben je waarschijnlijk een grote fan van <strong>China</strong> en/of Azië in het algemeen en van alles wat met deze <strong>cultuur</strong> te maken heeft. Daarom hebben we honderden producten voor je geselecteerd.</div>\n<div style=\"text-align: center;\">&nbsp;</div>\n<div style=\"text-align: center;\">Hier kun je de beste producten kopen tegen de beste prijs en met de beste kwaliteit:</div>\n<div style=\"text-align: center;\">&nbsp;</div>\n<div style=\"text-align: center;\">Lantaarns, Hanfu, Eetstokjes, Jassen en meer gebaseerd op en geïnspireerd door echte alledaagse Chinese voorwerpen.</div>\n<div style=\"text-align: center;\">&nbsp;</div>\n<div style=\"text-align: center;\">U vindt een zeer grote categorie traditionele <strong>Chinese producten</strong> direct vanuit uw huis.</div>\n<div style=\"text-align: center;\">&nbsp;</div>\n<div style=\"text-align: center;\">Met slechts een paar klikken is het de makkelijkste en handigste manier om veilig te kopen.</div>\n		\n<style>\n#text-1824305956 {\n  color: rgb(0,0,0);\n}\n#text-1824305956 > * {\n  color: rgb(0,0,0);\n}\n</style>\n	</div>\n	\n	<div id=\"gap-623023996\" class=\"gap-element clearfix\" style=\"display:block; height:auto;\">\n		\n<style>\n#gap-623023996 {\n  padding-top: 60px;\n}\n</style>\n	</div>\n	\n\n<div class=\"container section-title-container\" ><h2 class=\"section-title section-title-center\"><b></b><span class=\"section-title-main\" style=\"color:rgb(0, 0, 0);\">Chinese eetstokjes</span><b></b></h2></div>\n\n	\n  \n    <div class=\"row large-columns-4 medium-columns-3 small-columns-2 row-small slider row-slider slider-nav-reveal slider-nav-push\"  data-flickity-options=\'{\"imagesLoaded\": true, \"groupCells\": \"100%\", \"dragThreshold\" : 5, \"cellAlign\": \"left\",\"wrapAround\": true,\"prevNextButtons\": true,\"percentPosition\": true,\"pageDots\": false, \"rightToLeft\": false, \"autoPlay\" : false}\' >\n\n  \n	     <div class=\"product-small col has-hover product type-product post-2799 status-publish instock product_cat-chinese-eetstokjes has-post-thumbnail shipping-taxable purchasable product-type-simple\">\n	<div class=\"col-inner\">\n	\n<div class=\"badge-container absolute left top z-1\">\n\n</div>\n	<div class=\"product-small box \">\n		<div class=\"box-image\">\n			<div class=\"image-fade_in_back\">\n				<a href=\"https://www.nl.teng-shop.com/product/eetstokjes-herbruikbaar/\" aria-label=\"Rode Chinese Eetstokjes Herbruikbaar\">\n					<img loading=\"lazy\" decoding=\"async\" width=\"640\" height=\"640\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20640%20640%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/rode-chinese-eetstokjes-herbruikbaar.jpg\" class=\"lazy-load attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Rode Chinese Eetstokjes Herbruikbaar\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/rode-chinese-eetstokjes-herbruikbaar.jpg 640w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/rode-chinese-eetstokjes-herbruikbaar-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/rode-chinese-eetstokjes-herbruikbaar-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/rode-chinese-eetstokjes-herbruikbaar-100x100.jpg 100w\" sizes=\"(max-width: 640px) 100vw, 640px\" /><img loading=\"lazy\" decoding=\"async\" width=\"670\" height=\"895\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20670%20895%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/rode-chinese-eetstokjes-herbruikbaar-2.jpg\" class=\"lazy-load show-on-hover absolute fill hide-for-small back-image\" alt=\"Rode Chinese Eetstokjes Herbruikbaar\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/rode-chinese-eetstokjes-herbruikbaar-2.jpg 670w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/rode-chinese-eetstokjes-herbruikbaar-2-225x300.jpg 225w\" sizes=\"(max-width: 670px) 100vw, 670px\" />				</a>\n			</div>\n			<div class=\"image-tools is-small top right show-on-hover\">\n						<div class=\"wishlist-icon\">\n			<button class=\"wishlist-button button is-outline circle icon\" aria-label=\"Verlanglijst\">\n				<i class=\"icon-heart\" ></i>			</button>\n			<div class=\"wishlist-popup dark\">\n				\n<div\n	class=\"yith-wcwl-add-to-wishlist add-to-wishlist-2799  wishlist-fragment on-first-load\"\n	data-fragment-ref=\"2799\"\n	data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:2799,&quot;parent_product_id&quot;:2799,&quot;product_type&quot;:&quot;simple&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Bekijk de verlanglijst&quot;,&quot;already_in_wishslist_text&quot;:&quot;Het product staat al op je verlanglijstje!&quot;,&quot;product_added_text&quot;:&quot;Product toegevoegd!&quot;,&quot;heading_icon&quot;:&quot;fa-heart-o&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n>\n			\n			<!-- ADD TO WISHLIST -->\n			\n<div class=\"yith-wcwl-add-button\">\n		<a\n		href=\"?add_to_wishlist=2799&#038;_wpnonce=cdb7a006a5\"\n		class=\"add_to_wishlist single_add_to_wishlist\"\n		data-product-id=\"2799\"\n		data-product-type=\"simple\"\n		data-original-product-id=\"2799\"\n		data-title=\"Toevoegen aan verlanglijst\"\n		rel=\"nofollow\"\n	>\n		<i class=\"yith-wcwl-icon fa fa-heart-o\"></i>		<span>Toevoegen aan verlanglijst</span>\n	</a>\n</div>\n\n			<!-- COUNT TEXT -->\n			\n			</div>\n			</div>\n		</div>\n					</div>\n			<div class=\"image-tools is-small hide-for-small bottom left show-on-hover\">\n							</div>\n			<div class=\"image-tools grid-tools text-center hide-for-small bottom hover-slide-in show-on-hover\">\n							</div>\n					</div>\n\n		<div class=\"box-text box-text-products text-center grid-style-2\">\n			<div class=\"title-wrapper\"><p class=\"name product-title woocommerce-loop-product__title\"><a href=\"https://www.nl.teng-shop.com/product/eetstokjes-herbruikbaar/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\">Rode Chinese Eetstokjes Herbruikbaar</a></p></div><div class=\"price-wrapper\">\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&euro;</span>19.99</bdi></span></span>\n</div>		</div>\n	</div>\n	<span class=\"gtm4wp_productdata\" style=\"display:none; visibility:hidden;\" data-gtm4wp_product_id=\"2799\" data-gtm4wp_product_internal_id=\"2799\" data-gtm4wp_product_name=\"Rode Chinese Eetstokjes Herbruikbaar\" data-gtm4wp_product_price=\"19.99\" data-gtm4wp_product_cat=\"Chinese Eetstokjes\" data-gtm4wp_product_url=\"https://www.nl.teng-shop.com/product/eetstokjes-herbruikbaar/\" data-gtm4wp_product_listposition=\"17\" data-gtm4wp_productlist_name=\"Algemeen product lijst\" data-gtm4wp_product_stocklevel=\"1000\" data-gtm4wp_product_brand=\"\"></span>	</div>\n</div><div class=\"product-small col has-hover product type-product post-2791 status-publish last instock product_cat-chinese-eetstokjes has-post-thumbnail shipping-taxable purchasable product-type-variable\">\n	<div class=\"col-inner\">\n	\n<div class=\"badge-container absolute left top z-1\">\n\n</div>\n	<div class=\"product-small box \">\n		<div class=\"box-image\">\n			<div class=\"image-fade_in_back\">\n				<a href=\"https://www.nl.teng-shop.com/product/chinese-lente-eetstokjes/\" aria-label=\"Chinese Lente Eetstokjes - Heibai\">\n					<img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"768\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20768%20768%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-lente-eetstokjes-heibai-768x768.jpg\" class=\"lazy-load attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Chinese Lente Eetstokjes - Heibai\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-lente-eetstokjes-heibai-768x768.jpg 768w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-lente-eetstokjes-heibai-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-lente-eetstokjes-heibai-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-lente-eetstokjes-heibai-100x100.jpg 100w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-lente-eetstokjes-heibai.jpg 800w\" sizes=\"(max-width: 768px) 100vw, 768px\" /><img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"768\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20768%20768%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-lente-eetstokjes-heibai-2-768x768.jpg\" class=\"lazy-load show-on-hover absolute fill hide-for-small back-image\" alt=\"Chinese Lente Eetstokjes - Heibai\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-lente-eetstokjes-heibai-2-768x768.jpg 768w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-lente-eetstokjes-heibai-2-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-lente-eetstokjes-heibai-2-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-lente-eetstokjes-heibai-2-100x100.jpg 100w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-lente-eetstokjes-heibai-2.jpg 800w\" sizes=\"(max-width: 768px) 100vw, 768px\" />				</a>\n			</div>\n			<div class=\"image-tools is-small top right show-on-hover\">\n						<div class=\"wishlist-icon\">\n			<button class=\"wishlist-button button is-outline circle icon\" aria-label=\"Verlanglijst\">\n				<i class=\"icon-heart\" ></i>			</button>\n			<div class=\"wishlist-popup dark\">\n				\n<div\n	class=\"yith-wcwl-add-to-wishlist add-to-wishlist-2791  wishlist-fragment on-first-load\"\n	data-fragment-ref=\"2791\"\n	data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:2791,&quot;parent_product_id&quot;:2791,&quot;product_type&quot;:&quot;variable&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Bekijk de verlanglijst&quot;,&quot;already_in_wishslist_text&quot;:&quot;Het product staat al op je verlanglijstje!&quot;,&quot;product_added_text&quot;:&quot;Product toegevoegd!&quot;,&quot;heading_icon&quot;:&quot;fa-heart-o&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n>\n			\n			<!-- ADD TO WISHLIST -->\n			\n<div class=\"yith-wcwl-add-button\">\n		<a\n		href=\"?add_to_wishlist=2791&#038;_wpnonce=cdb7a006a5\"\n		class=\"add_to_wishlist single_add_to_wishlist\"\n		data-product-id=\"2791\"\n		data-product-type=\"variable\"\n		data-original-product-id=\"2791\"\n		data-title=\"Toevoegen aan verlanglijst\"\n		rel=\"nofollow\"\n	>\n		<i class=\"yith-wcwl-icon fa fa-heart-o\"></i>		<span>Toevoegen aan verlanglijst</span>\n	</a>\n</div>\n\n			<!-- COUNT TEXT -->\n			\n			</div>\n			</div>\n		</div>\n					</div>\n			<div class=\"image-tools is-small hide-for-small bottom left show-on-hover\">\n							</div>\n			<div class=\"image-tools grid-tools text-center hide-for-small bottom hover-slide-in show-on-hover\">\n							</div>\n					</div>\n\n		<div class=\"box-text box-text-products text-center grid-style-2\">\n			<div class=\"title-wrapper\"><p class=\"name product-title woocommerce-loop-product__title\"><a href=\"https://www.nl.teng-shop.com/product/chinese-lente-eetstokjes/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\">Chinese Lente Eetstokjes &#8211; Heibai</a></p></div><div class=\"price-wrapper\">\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&euro;</span>17.99</bdi></span></span>\n</div>		</div>\n	</div>\n	<span class=\"gtm4wp_productdata\" style=\"display:none; visibility:hidden;\" data-gtm4wp_product_id=\"2791\" data-gtm4wp_product_internal_id=\"2791\" data-gtm4wp_product_name=\"Chinese Lente Eetstokjes - Heibai\" data-gtm4wp_product_price=\"17.99\" data-gtm4wp_product_cat=\"Chinese Eetstokjes\" data-gtm4wp_product_url=\"https://www.nl.teng-shop.com/product/chinese-lente-eetstokjes/\" data-gtm4wp_product_listposition=\"18\" data-gtm4wp_productlist_name=\"Algemeen product lijst\" data-gtm4wp_product_stocklevel=\"\" data-gtm4wp_product_brand=\"\"></span>	</div>\n</div><div class=\"product-small col has-hover product type-product post-2797 status-publish first instock product_cat-chinese-eetstokjes has-post-thumbnail shipping-taxable purchasable product-type-simple\">\n	<div class=\"col-inner\">\n	\n<div class=\"badge-container absolute left top z-1\">\n\n</div>\n	<div class=\"product-small box \">\n		<div class=\"box-image\">\n			<div class=\"image-fade_in_back\">\n				<a href=\"https://www.nl.teng-shop.com/product/herbruikbare-chinese-eetstokjes/\" aria-label=\"Herbruikbare Chinese Eetstokjes - Jiangshou\">\n					<img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"768\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20768%20768%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/herbruikbare-chinese-eetstokjes-jiangshou-8-768x768.jpg\" class=\"lazy-load attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Herbruikbare Chinese Eetstokjes - Jiangshou\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/herbruikbare-chinese-eetstokjes-jiangshou-8-768x768.jpg 768w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/herbruikbare-chinese-eetstokjes-jiangshou-8-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/herbruikbare-chinese-eetstokjes-jiangshou-8-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/herbruikbare-chinese-eetstokjes-jiangshou-8-100x100.jpg 100w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/herbruikbare-chinese-eetstokjes-jiangshou-8.jpg 800w\" sizes=\"(max-width: 768px) 100vw, 768px\" /><img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"768\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20768%20768%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/herbruikbare-chinese-eetstokjes-jiangshou-2-768x768.jpg\" class=\"lazy-load show-on-hover absolute fill hide-for-small back-image\" alt=\"Herbruikbare Chinese Eetstokjes - Jiangshou\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/herbruikbare-chinese-eetstokjes-jiangshou-2-768x768.jpg 768w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/herbruikbare-chinese-eetstokjes-jiangshou-2-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/herbruikbare-chinese-eetstokjes-jiangshou-2-1024x1024.jpg 1024w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/herbruikbare-chinese-eetstokjes-jiangshou-2-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/herbruikbare-chinese-eetstokjes-jiangshou-2-1536x1536.jpg 1536w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/herbruikbare-chinese-eetstokjes-jiangshou-2-100x100.jpg 100w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/herbruikbare-chinese-eetstokjes-jiangshou-2.jpg 1600w\" sizes=\"(max-width: 768px) 100vw, 768px\" />				</a>\n			</div>\n			<div class=\"image-tools is-small top right show-on-hover\">\n						<div class=\"wishlist-icon\">\n			<button class=\"wishlist-button button is-outline circle icon\" aria-label=\"Verlanglijst\">\n				<i class=\"icon-heart\" ></i>			</button>\n			<div class=\"wishlist-popup dark\">\n				\n<div\n	class=\"yith-wcwl-add-to-wishlist add-to-wishlist-2797  wishlist-fragment on-first-load\"\n	data-fragment-ref=\"2797\"\n	data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:2797,&quot;parent_product_id&quot;:2797,&quot;product_type&quot;:&quot;simple&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Bekijk de verlanglijst&quot;,&quot;already_in_wishslist_text&quot;:&quot;Het product staat al op je verlanglijstje!&quot;,&quot;product_added_text&quot;:&quot;Product toegevoegd!&quot;,&quot;heading_icon&quot;:&quot;fa-heart-o&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n>\n			\n			<!-- ADD TO WISHLIST -->\n			\n<div class=\"yith-wcwl-add-button\">\n		<a\n		href=\"?add_to_wishlist=2797&#038;_wpnonce=cdb7a006a5\"\n		class=\"add_to_wishlist single_add_to_wishlist\"\n		data-product-id=\"2797\"\n		data-product-type=\"simple\"\n		data-original-product-id=\"2797\"\n		data-title=\"Toevoegen aan verlanglijst\"\n		rel=\"nofollow\"\n	>\n		<i class=\"yith-wcwl-icon fa fa-heart-o\"></i>		<span>Toevoegen aan verlanglijst</span>\n	</a>\n</div>\n\n			<!-- COUNT TEXT -->\n			\n			</div>\n			</div>\n		</div>\n					</div>\n			<div class=\"image-tools is-small hide-for-small bottom left show-on-hover\">\n							</div>\n			<div class=\"image-tools grid-tools text-center hide-for-small bottom hover-slide-in show-on-hover\">\n							</div>\n					</div>\n\n		<div class=\"box-text box-text-products text-center grid-style-2\">\n			<div class=\"title-wrapper\"><p class=\"name product-title woocommerce-loop-product__title\"><a href=\"https://www.nl.teng-shop.com/product/herbruikbare-chinese-eetstokjes/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\">Herbruikbare Chinese Eetstokjes &#8211; Jiangshou</a></p></div><div class=\"price-wrapper\">\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&euro;</span>22.99</bdi></span></span>\n</div>		</div>\n	</div>\n	<span class=\"gtm4wp_productdata\" style=\"display:none; visibility:hidden;\" data-gtm4wp_product_id=\"2797\" data-gtm4wp_product_internal_id=\"2797\" data-gtm4wp_product_name=\"Herbruikbare Chinese Eetstokjes - Jiangshou\" data-gtm4wp_product_price=\"22.99\" data-gtm4wp_product_cat=\"Chinese Eetstokjes\" data-gtm4wp_product_url=\"https://www.nl.teng-shop.com/product/herbruikbare-chinese-eetstokjes/\" data-gtm4wp_product_listposition=\"19\" data-gtm4wp_productlist_name=\"Algemeen product lijst\" data-gtm4wp_product_stocklevel=\"1000\" data-gtm4wp_product_brand=\"\"></span>	</div>\n</div><div class=\"product-small col has-hover product type-product post-2786 status-publish instock product_cat-chinese-eetstokjes has-post-thumbnail shipping-taxable purchasable product-type-variable\">\n	<div class=\"col-inner\">\n	\n<div class=\"badge-container absolute left top z-1\">\n\n</div>\n	<div class=\"product-small box \">\n		<div class=\"box-image\">\n			<div class=\"image-fade_in_back\">\n				<a href=\"https://www.nl.teng-shop.com/product/chinese-eetstokjes-voor-kinderen/\" aria-label=\"Chinese Eetstokjes voor Kinderen\">\n					<img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"768\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20768%20768%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-eetstokjes-voor-kinderen-768x768.jpg\" class=\"lazy-load attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Chinese Eetstokjes voor Kinderen\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-eetstokjes-voor-kinderen-768x768.jpg 768w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-eetstokjes-voor-kinderen-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-eetstokjes-voor-kinderen-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-eetstokjes-voor-kinderen-100x100.jpg 100w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-eetstokjes-voor-kinderen.jpg 800w\" sizes=\"(max-width: 768px) 100vw, 768px\" /><img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"768\" src=\"data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20768%20768%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E\" data-src=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-eetstokjes-voor-kinderen-2-768x768.jpg\" class=\"lazy-load show-on-hover absolute fill hide-for-small back-image\" alt=\"Chinese Eetstokjes voor Kinderen\" srcset=\"\" data-srcset=\"https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-eetstokjes-voor-kinderen-2-768x768.jpg 768w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-eetstokjes-voor-kinderen-2-300x300.jpg 300w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-eetstokjes-voor-kinderen-2-150x150.jpg 150w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-eetstokjes-voor-kinderen-2-100x100.jpg 100w, https://www.nl.teng-shop.com/wp-content/uploads/2023/01/chinese-eetstokjes-voor-kinderen-2.jpg 800w\" sizes=\"(max-width: 768px) 100vw, 768px\" />				</a>\n			</div>\n			<div class=\"image-tools is-small top right show-on-hover\">\n						<div class=\"wishlist-icon\">\n			<button class=\"wishlist-button button is-outline circle icon\" aria-label=\"Verlanglijst\">\n				<i class=\"icon-heart\" ></i>			</button>\n			<div class=\"wishlist-popup dark\">\n				\n<div\n	class=\"yith-wcwl-add-to-wishlist add-to-wishlist-2786  wishlist-fragment on-first-load\"\n	data-fragment-ref=\"2786\"\n	data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:2786,&quot;parent_product_id&quot;:2786,&quot;product_type&quot;:&quot;variable&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Bekijk de verlanglijst&quot;,&quot;already_in_wishslist_text&quot;:&quot;Het product staat al op je verlanglijstje!&quot;,&quot;product_added_text&quot;:&quot;Product toegevoegd!&quot;,&quot;heading_icon&quot;:&quot;fa-heart-o&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n>\n			\n			<!-- ADD TO WISHLIST -->\n			\n<div class=\"yith-wcwl-add-button\">\n		<a\n		href=\"?add_to_wishlist=2786&#038;_wpnonce=cdb7a006a5\"\n		class=\"add_to_wishlist single_add_to_wishlist\"\n		data-product-id=\"2786\"\n		data-product-type=\"variable\"\n		data-original-product-id=\"2786\"\n		data-title=\"Toevoegen aan verlanglijst\"\n		rel=\"nofollow\"\n	>\n		<i class=\"yith-wcwl-icon fa fa-heart-o\"></i>		<span>Toevoegen aan verlanglijst</span>\n	</a>\n</div>\n\n			<!-- COUNT TEXT -->\n			\n			</div>\n			</div>\n		</div>\n					</div>\n			<div class=\"image-tools is-small hide-for-small bottom left show-on-hover\">\n							</div>\n			<div class=\"image-tools grid-tools text-center hide-for-small bottom hover-slide-in show-on-hover\">\n							</div>\n					</div>\n\n		<div class=\"box-text box-text-products text-center grid-style-2\">\n			<div class=\"title-wrapper\"><p class=\"name product-title woocommerce-loop-product__title\"><a href=\"https://www.nl.teng-shop.com/product/chinese-eetstokjes-voor-kinderen/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\">Chinese Eetstokjes voor Kinderen</a></p></div><div class=\"price-wrapper\">\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&euro;</span>11.99</bdi></span></span>\n</div>		</div>\n	</div>\n	<span class=\"gtm4wp_productdata\" style=\"display:none; visibility:hidden;\" data-gtm4wp_product_id=\"2786\" data-gtm4wp_product_internal_id=\"2786\" data-gtm4wp_product_name=\"Chinese Eetstokjes voor Kinderen\" data-gtm4wp_product_price=\"11.99\" data-gtm4wp_product_cat=\"Chinese Eetstokjes\" data-gtm4wp_product_url=\"https://www.nl.teng-shop.com/product/chinese-eetstokjes-voor-kinderen/\" data-gtm4wp_product_listposition=\"20\" data-gtm4wp_productlist_name=\"Algemeen product lijst\" data-gtm4wp_product_stocklevel=\"\" data-gtm4wp_product_brand=\"\"></span>	</div>\n</div></div>\n\n	<div id=\"gap-1804701370\" class=\"gap-element clearfix\" style=\"display:block; height:auto;\">\n		\n<style>\n#gap-1804701370 {\n  padding-top: 40px;\n}\n</style>\n	</div>\n	\n\n\n\n			\n		\n</div>\n\n\n\n</main>\n\n<footer id=\"footer\" class=\"footer-wrapper\">\n\n		<section class=\"section\" id=\"section_364845478\">\n		<div class=\"bg section-bg fill bg-fill  bg-loaded\" >\n\n			\n			\n			\n\n		</div>\n\n		\n\n		<div class=\"section-content relative\">\n			\n\n<div class=\"row\"  id=\"row-1607982974\">\n\n\n	<div id=\"col-967335295\" class=\"col medium-3 small-12 large-3\"  >\n				<div class=\"col-inner\"  >\n			\n			\n\n	<div class=\"box has-hover   has-hover box-text-bottom\" >\n\n		<div class=\"box-image\" style=\"width:25%;\">\n						<div class=\"\" >\n				<img src=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/free-shipping.svg\" class=\"attachment- size-\" alt=\"Free Shipping\" decoding=\"async\" loading=\"lazy\" />											</div>\n					</div>\n\n		<div class=\"box-text text-center\" >\n			<div class=\"box-text-inner\">\n				\n\n<div class=\"custom-title\">GRATIS LEVERING VANAF 70€</div>\n<p>In Europa en de rest van de wereld</p>\n\n\n			</div>\n		</div>\n	</div>\n	\n\n		</div>\n					</div>\n\n	\n\n	<div id=\"col-1563541183\" class=\"col medium-3 small-12 large-3\"  >\n				<div class=\"col-inner\"  >\n			\n			\n\n	<div class=\"box has-hover   has-hover box-text-bottom\" >\n\n		<div class=\"box-image\" style=\"width:25%;\">\n						<div class=\"\" >\n				<img src=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/secure-payment.svg\" class=\"attachment- size-\" alt=\"Secure Payment\" decoding=\"async\" loading=\"lazy\" />											</div>\n					</div>\n\n		<div class=\"box-text text-center\" >\n			<div class=\"box-text-inner\">\n				\n\n<div class=\"custom-title\">VEILIGE BETALING</div>\n<p>VISA, Mastercard, American Express</p>\n\n\n			</div>\n		</div>\n	</div>\n	\n\n		</div>\n					</div>\n\n	\n\n	<div id=\"col-1451092365\" class=\"col medium-3 small-12 large-3\"  >\n				<div class=\"col-inner\"  >\n			\n			\n\n	<div class=\"box has-hover   has-hover box-text-bottom\" >\n\n		<div class=\"box-image\" style=\"width:25%;\">\n						<div class=\"\" >\n				<img width=\"264\" height=\"234\" src=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/customer-service.png\" class=\"attachment- size-\" alt=\"customer service\" decoding=\"async\" loading=\"lazy\" />											</div>\n					</div>\n\n		<div class=\"box-text text-center\" style=\"padding:15px 0px 0px 0px;\">\n			<div class=\"box-text-inner\">\n				\n\n<div class=\"custom-title\">KLANTENSERVICE</div>\n<p>Altijd beschikbaar om je te helpen.</p>\n\n\n			</div>\n		</div>\n	</div>\n	\n\n		</div>\n					</div>\n\n	\n\n	<div id=\"col-1194882475\" class=\"col medium-3 small-12 large-3\"  >\n				<div class=\"col-inner\"  >\n			\n			\n\n	<div class=\"box has-hover   has-hover box-text-bottom\" >\n\n		<div class=\"box-image\" style=\"width:25%;\">\n						<div class=\"\" >\n				<img src=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/satisfied-or-refunded.svg\" class=\"attachment- size-\" alt=\"Satisfied or refunded\" decoding=\"async\" loading=\"lazy\" />											</div>\n					</div>\n\n		<div class=\"box-text text-center\" style=\"padding:9px 0px 0px 0px;\">\n			<div class=\"box-text-inner\">\n				\n\n<div class=\"custom-title\">TEVREDEN OF TERUGBETAALD</div>\n<p>15 dagen lang</p>\n\n\n			</div>\n		</div>\n	</div>\n	\n\n		</div>\n					</div>\n\n	\n\n</div>\n\n		</div>\n\n		\n<style>\n#section_364845478 {\n  padding-top: 30px;\n  padding-bottom: 30px;\n}\n</style>\n	</section>\n	\n	<section class=\"section\" id=\"section_98755271\">\n		<div class=\"bg section-bg fill bg-fill  bg-loaded\" >\n\n			\n			\n			\n\n		</div>\n\n		\n\n		<div class=\"section-content relative\">\n			\n\n<div class=\"row\"  id=\"row-613076177\">\n\n\n	<div id=\"col-1954678707\" class=\"col medium-1 small-12 large-1\"  >\n				<div class=\"col-inner\"  >\n			\n			\n\n\n		</div>\n					</div>\n\n	\n\n	<div id=\"col-594441669\" class=\"col medium-2 small-12 large-2\"  >\n				<div class=\"col-inner\"  >\n			\n			\n\n<div class=\"ux-logo has-hover align-middle ux_logo inline-block\" style=\"max-width: 100%!important; width: 190.81081081081px!important\"><div class=\"ux-logo-link block image-\" title=\"\" href=\"\" style=\"padding: 15px;\"><img src=\"https://www.nl.teng-shop.com/wp-content/uploads/2022/12/teng-shop-v2-min.png\" title=\"\" alt=\"\" class=\"ux-logo-image block\" style=\"height:50px;\" /></div></div>\n\n\n		</div>\n					</div>\n\n	\n\n	<div id=\"col-2037037197\" class=\"col medium-3 small-12 large-3\"  >\n				<div class=\"col-inner\"  >\n			\n			\n\n	<div id=\"text-116026321\" class=\"text\">\n		\n\n<div class=\"footer-title\">Informatie</div>\n\n		\n<style>\n#text-116026321 {\n  text-align: left;\n}\n</style>\n	</div>\n	\n	<div class=\"ux-menu stack stack-col justify-start\">\n		\n\n	<div class=\"ux-menu-link flex menu-item\">\n		<a class=\"ux-menu-link__link flex\" href=\"https://www.nl.teng-shop.com/over-ons/\" >\n						<span class=\"ux-menu-link__text\">\n				Wie zijn wij?			</span>\n		</a>\n	</div>\n	\n\n	<div class=\"ux-menu-link flex menu-item\">\n		<a class=\"ux-menu-link__link flex\" href=\"https://www.nl.teng-shop.com/algemene-verkoopvoorwaarden/\" >\n						<span class=\"ux-menu-link__text\">\n				Algemene voorwaarden			</span>\n		</a>\n	</div>\n	\n\n	<div class=\"ux-menu-link flex menu-item\">\n		<a class=\"ux-menu-link__link flex\" href=\"https://www.nl.teng-shop.com/terugbetalingen-retouren/\" >\n						<span class=\"ux-menu-link__text\">\n				Retourneren en terugbetalen			</span>\n		</a>\n	</div>\n	\n\n	<div class=\"ux-menu-link flex menu-item\">\n		<a class=\"ux-menu-link__link flex\" href=\"https://www.nl.teng-shop.com/privacybeleid/\" >\n						<span class=\"ux-menu-link__text\">\n				Privacybeleid			</span>\n		</a>\n	</div>\n	\n\n	<div class=\"ux-menu-link flex menu-item\">\n		<a class=\"ux-menu-link__link flex\" href=\"https://www.nl.teng-shop.com/verzendbeleid/\" >\n						<span class=\"ux-menu-link__text\">\n				Verzendbeleid			</span>\n		</a>\n	</div>\n	\n\n\n	</div>\n	\n\n		</div>\n					</div>\n\n	\n\n	<div id=\"col-12682576\" class=\"col medium-3 small-12 large-3\"  >\n				<div class=\"col-inner\"  >\n			\n			\n\n	<div id=\"text-4163158564\" class=\"text\">\n		\n\n<div class=\"footer-title\">Hulp nodig?</div>\n\n		\n<style>\n#text-4163158564 {\n  text-align: left;\n}\n</style>\n	</div>\n	\n	<div class=\"ux-menu stack stack-col justify-start\">\n		\n\n	<div class=\"ux-menu-link flex menu-item\">\n		<a class=\"ux-menu-link__link flex\" href=\"https://www.nl.teng-shop.com/contacteer-ons/\" >\n						<span class=\"ux-menu-link__text\">\n				Contact &amp; Ondersteuning			</span>\n		</a>\n	</div>\n	\n\n	<div class=\"ux-menu-link flex menu-item\">\n		<a class=\"ux-menu-link__link flex\" href=\"https://www.nl.teng-shop.com/vaak-gestelde-vragen-antwoorden/\" >\n						<span class=\"ux-menu-link__text\">\n				Veelgestelde vragen (FAQ)			</span>\n		</a>\n	</div>\n	\n\n	<div class=\"ux-menu-link flex menu-item\">\n		<a class=\"ux-menu-link__link flex\" href=\"https://www.nl.teng-shop.com/je-bestelling-volgen/\" >\n						<span class=\"ux-menu-link__text\">\n				Bestelling volgen			</span>\n		</a>\n	</div>\n	\n\n	<div class=\"ux-menu-link flex menu-item\">\n		<a class=\"ux-menu-link__link flex\" href=\"https://www.nl.teng-shop.com/chinees-blog/\" >\n						<span class=\"ux-menu-link__text\">\n				Blog			</span>\n		</a>\n	</div>\n	\n\n\n	</div>\n	\n\n		</div>\n					</div>\n\n	\n\n	<div id=\"col-341679500\" class=\"col medium-3 small-12 large-3\"  >\n				<div class=\"col-inner\"  >\n			\n			\n\n	<div id=\"text-347276282\" class=\"text\">\n		\n\n<div class=\"large-footer-title\">Ontvang tot 25% korting</div>\n\n		\n<style>\n#text-347276282 {\n  font-size: 1.45rem;\n}\n</style>\n	</div>\n	\n<p>door je aan te melden voor onze nieuwsbrief!</p>\n\n\n\n<div class=\"wpcf7 no-js\" id=\"wpcf7-f9292-o1\" lang=\"fr-FR\" dir=\"ltr\">\n<div class=\"screen-reader-response\"><p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul></div>\n<form action=\"/#wpcf7-f9292-o1\" method=\"post\" class=\"wpcf7-form init\" aria-label=\"Formulaire de contact\" novalidate=\"novalidate\" data-status=\"init\">\n<div style=\"display: none;\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"9292\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8.2\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"fr_FR\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f9292-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n</div>\n<div class=\"form-flat\">\n	<p><span class=\"wpcf7-form-control-wrap\" data-name=\"your-email\"><input size=\"40\" class=\"wpcf7-form-control wpcf7-email wpcf7-validates-as-required wpcf7-text wpcf7-validates-as-email\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Uw e-mail\" value=\"\" type=\"email\" name=\"your-email\" /></span><br />\n<input class=\"wpcf7-form-control wpcf7-submit has-spinner button\" type=\"submit\" value=\"Aanmelden\" />\n	</p>\n</div><div class=\"wpcf7-response-output\" aria-hidden=\"true\"></div>\n</form>\n</div>\n\n\n	<div id=\"gap-376727114\" class=\"gap-element clearfix\" style=\"display:block; height:auto;\">\n		\n<style>\n#gap-376727114 {\n  padding-top: 20px;\n}\n</style>\n	</div>\n	\n\n<div class=\"social-icons follow-icons\" ><a href=\"https://www.facebook.com/sharer.php?u=https://www.nl.teng-shop.com/\" target=\"_blank\" data-label=\"Facebook\" class=\"icon button circle is-outline facebook tooltip\" title=\"Volg ons op Facebook\" aria-label=\"Volg ons op Facebook\" rel=\"noopener nofollow\" ><i class=\"icon-facebook\" ></i></a><a href=\"https://twitter.com/share?url=https://www.nl.teng-shop.com/\" data-label=\"Twitter\" target=\"_blank\" class=\"icon button circle is-outline twitter tooltip\" title=\"Volg ons op Twitter\" aria-label=\"Volg ons op Twitter\" rel=\"noopener nofollow\" ><i class=\"icon-twitter\" ></i></a><a href=\"mailto:enteryour@addresshere.com\" data-label=\"E-mail\" target=\"_blank\" class=\"icon button circle is-outline email tooltip\" title=\"Stuur ons een e-mail\" aria-label=\"Stuur ons een e-mail\" rel=\"nofollow noopener\" ><i class=\"icon-envelop\" ></i></a><a href=\"https://pinterest.com/pin/create/button/?url=https://www.nl.teng-shop.com/&amp;media=&amp;description=Teng Shop\" data-label=\"Pinterest\" target=\"_blank\" class=\"icon button circle is-outline pinterest tooltip\" title=\"Volg ons op Pinterest\" aria-label=\"Volg ons op Pinterest\" rel=\"noopener nofollow\" ><i class=\"icon-pinterest\" ></i></a><a href=\"https://www.linkedin.com/shareArticle?mini=true&amp;url=https://www.nl.teng-shop.com/&amp;title=Teng Shop\" data-label=\"LinkedIn\" target=\"_blank\" class=\"icon button circle is-outline linkedin tooltip\" title=\"Volg ons op LinkedIn\" aria-label=\"Volg ons op LinkedIn\" rel=\"noopener nofollow\" ><i class=\"icon-linkedin\" ></i></a></div>\n\n\n		</div>\n					</div>\n\n	\n\n	<div id=\"col-1841031270\" class=\"col medium-1 small-12 large-1\"  >\n				<div class=\"col-inner\"  >\n			\n			\n\n\n		</div>\n					</div>\n\n	\n\n</div>\n\n		</div>\n\n		\n<style>\n#section_98755271 {\n  padding-top: 30px;\n  padding-bottom: 30px;\n}\n</style>\n	</section>\n	\n<div class=\"absolute-footer dark medium-text-center small-text-center\">\n  <div class=\"container clearfix\">\n\n          <div class=\"footer-secondary pull-right\">\n                <div class=\"payment-icons inline-block\"><div class=\"payment-icon\"><svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"  viewBox=\"0 0 64 32\">\n<path d=\"M10.781 7.688c-0.251-1.283-1.219-1.688-2.344-1.688h-8.376l-0.061 0.405c5.749 1.469 10.469 4.595 12.595 10.501l-1.813-9.219zM13.125 19.688l-0.531-2.781c-1.096-2.907-3.752-5.594-6.752-6.813l4.219 15.939h5.469l8.157-20.032h-5.501l-5.062 13.688zM27.72 26.061l3.248-20.061h-5.187l-3.251 20.061h5.189zM41.875 5.656c-5.125 0-8.717 2.72-8.749 6.624-0.032 2.877 2.563 4.469 4.531 5.439 2.032 0.968 2.688 1.624 2.688 2.499 0 1.344-1.624 1.939-3.093 1.939-2.093 0-3.219-0.251-4.875-1.032l-0.688-0.344-0.719 4.499c1.219 0.563 3.437 1.064 5.781 1.064 5.437 0.032 8.97-2.688 9.032-6.843 0-2.282-1.405-4-4.376-5.439-1.811-0.904-2.904-1.563-2.904-2.499 0-0.843 0.936-1.72 2.968-1.72 1.688-0.029 2.936 0.314 3.875 0.752l0.469 0.248 0.717-4.344c-1.032-0.406-2.656-0.844-4.656-0.844zM55.813 6c-1.251 0-2.189 0.376-2.72 1.688l-7.688 18.374h5.437c0.877-2.467 1.096-3 1.096-3 0.592 0 5.875 0 6.624 0 0 0 0.157 0.688 0.624 3h4.813l-4.187-20.061h-4zM53.405 18.938c0 0 0.437-1.157 2.064-5.594-0.032 0.032 0.437-1.157 0.688-1.907l0.374 1.72c0.968 4.781 1.189 5.781 1.189 5.781-0.813 0-3.283 0-4.315 0z\"></path>\n</svg>\n</div><div class=\"payment-icon\"><svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"  viewBox=\"0 0 64 32\">\n<path d=\"M7.114 14.656c-1.375-0.5-2.125-0.906-2.125-1.531 0-0.531 0.437-0.812 1.188-0.812 1.437 0 2.875 0.531 3.875 1.031l0.563-3.5c-0.781-0.375-2.406-1-4.656-1-1.594 0-2.906 0.406-3.844 1.188-1 0.812-1.5 2-1.5 3.406 0 2.563 1.563 3.688 4.125 4.594 1.625 0.594 2.188 1 2.188 1.656 0 0.625-0.531 0.969-1.5 0.969-1.188 0-3.156-0.594-4.437-1.343l-0.563 3.531c1.094 0.625 3.125 1.281 5.25 1.281 1.688 0 3.063-0.406 4.031-1.157 1.063-0.843 1.594-2.062 1.594-3.656-0.001-2.625-1.595-3.719-4.188-4.657zM21.114 9.125h-3v-4.219l-4.031 0.656-0.563 3.563-1.437 0.25-0.531 3.219h1.937v6.844c0 1.781 0.469 3 1.375 3.75 0.781 0.625 1.907 0.938 3.469 0.938 1.219 0 1.937-0.219 2.468-0.344v-3.688c-0.282 0.063-0.938 0.22-1.375 0.22-0.906 0-1.313-0.5-1.313-1.563v-6.156h2.406l0.595-3.469zM30.396 9.031c-0.313-0.062-0.594-0.093-0.876-0.093-1.312 0-2.374 0.687-2.781 1.937l-0.313-1.75h-4.093v14.719h4.687v-9.563c0.594-0.719 1.437-0.968 2.563-0.968 0.25 0 0.5 0 0.812 0.062v-4.344zM33.895 2.719c-1.375 0-2.468 1.094-2.468 2.469s1.094 2.5 2.468 2.5 2.469-1.124 2.469-2.5-1.094-2.469-2.469-2.469zM36.239 23.844v-14.719h-4.687v14.719h4.687zM49.583 10.468c-0.843-1.094-2-1.625-3.469-1.625-1.343 0-2.531 0.563-3.656 1.75l-0.25-1.469h-4.125v20.155l4.688-0.781v-4.719c0.719 0.219 1.469 0.344 2.125 0.344 1.157 0 2.876-0.313 4.188-1.75 1.281-1.375 1.907-3.5 1.907-6.313 0-2.499-0.469-4.405-1.407-5.593zM45.677 19.532c-0.375 0.687-0.969 1.094-1.625 1.094-0.468 0-0.906-0.093-1.281-0.281v-7c0.812-0.844 1.531-0.938 1.781-0.938 1.188 0 1.781 1.313 1.781 3.812 0.001 1.437-0.219 2.531-0.656 3.313zM62.927 10.843c-1.032-1.312-2.563-2-4.501-2-4 0-6.468 2.938-6.468 7.688 0 2.625 0.656 4.625 1.968 5.875 1.157 1.157 2.844 1.719 5.032 1.719 2 0 3.844-0.469 5-1.251l-0.501-3.219c-1.157 0.625-2.5 0.969-4 0.969-0.906 0-1.532-0.188-1.969-0.594-0.5-0.406-0.781-1.094-0.875-2.062h7.75c0.031-0.219 0.062-1.281 0.062-1.625 0.001-2.344-0.5-4.188-1.499-5.5zM56.583 15.094c0.125-2.093 0.687-3.062 1.75-3.062s1.625 1 1.687 3.062h-3.437z\"></path>\n</svg>\n</div><div class=\"payment-icon\"><svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"  viewBox=\"0 0 64 32\">\n<path d=\"M42.667-0c-4.099 0-7.836 1.543-10.667 4.077-2.831-2.534-6.568-4.077-10.667-4.077-8.836 0-16 7.163-16 16s7.164 16 16 16c4.099 0 7.835-1.543 10.667-4.077 2.831 2.534 6.568 4.077 10.667 4.077 8.837 0 16-7.163 16-16s-7.163-16-16-16zM11.934 19.828l0.924-5.809-2.112 5.809h-1.188v-5.809l-1.056 5.809h-1.584l1.32-7.657h2.376v4.753l1.716-4.753h2.508l-1.32 7.657h-1.585zM19.327 18.244c-0.088 0.528-0.178 0.924-0.264 1.188v0.396h-1.32v-0.66c-0.353 0.528-0.924 0.792-1.716 0.792-0.442 0-0.792-0.132-1.056-0.396-0.264-0.351-0.396-0.792-0.396-1.32 0-0.792 0.218-1.364 0.66-1.716 0.614-0.44 1.364-0.66 2.244-0.66h0.66v-0.396c0-0.351-0.353-0.528-1.056-0.528-0.442 0-1.012 0.088-1.716 0.264 0.086-0.351 0.175-0.792 0.264-1.32 0.703-0.264 1.32-0.396 1.848-0.396 1.496 0 2.244 0.616 2.244 1.848 0 0.353-0.046 0.749-0.132 1.188-0.089 0.616-0.179 1.188-0.264 1.716zM24.079 15.076c-0.264-0.086-0.66-0.132-1.188-0.132s-0.792 0.177-0.792 0.528c0 0.177 0.044 0.31 0.132 0.396l0.528 0.264c0.792 0.442 1.188 1.012 1.188 1.716 0 1.409-0.838 2.112-2.508 2.112-0.792 0-1.366-0.044-1.716-0.132 0.086-0.351 0.175-0.836 0.264-1.452 0.703 0.177 1.188 0.264 1.452 0.264 0.614 0 0.924-0.175 0.924-0.528 0-0.175-0.046-0.308-0.132-0.396-0.178-0.175-0.396-0.308-0.66-0.396-0.792-0.351-1.188-0.924-1.188-1.716 0-1.407 0.792-2.112 2.376-2.112 0.792 0 1.32 0.045 1.584 0.132l-0.265 1.451zM27.512 15.208h-0.924c0 0.442-0.046 0.838-0.132 1.188 0 0.088-0.022 0.264-0.066 0.528-0.046 0.264-0.112 0.442-0.198 0.528v0.528c0 0.353 0.175 0.528 0.528 0.528 0.175 0 0.35-0.044 0.528-0.132l-0.264 1.452c-0.264 0.088-0.66 0.132-1.188 0.132-0.881 0-1.32-0.44-1.32-1.32 0-0.528 0.086-1.099 0.264-1.716l0.66-4.225h1.584l-0.132 0.924h0.792l-0.132 1.585zM32.66 17.32h-3.3c0 0.442 0.086 0.749 0.264 0.924 0.264 0.264 0.66 0.396 1.188 0.396s1.1-0.175 1.716-0.528l-0.264 1.584c-0.442 0.177-1.012 0.264-1.716 0.264-1.848 0-2.772-0.924-2.772-2.773 0-1.142 0.264-2.024 0.792-2.64 0.528-0.703 1.188-1.056 1.98-1.056 0.703 0 1.274 0.22 1.716 0.66 0.35 0.353 0.528 0.881 0.528 1.584 0.001 0.617-0.046 1.145-0.132 1.585zM35.3 16.132c-0.264 0.97-0.484 2.201-0.66 3.697h-1.716l0.132-0.396c0.35-2.463 0.614-4.4 0.792-5.809h1.584l-0.132 0.924c0.264-0.44 0.528-0.703 0.792-0.792 0.264-0.264 0.528-0.308 0.792-0.132-0.088 0.088-0.31 0.706-0.66 1.848-0.353-0.086-0.661 0.132-0.925 0.66zM41.241 19.697c-0.353 0.177-0.838 0.264-1.452 0.264-0.881 0-1.584-0.308-2.112-0.924-0.528-0.528-0.792-1.32-0.792-2.376 0-1.32 0.35-2.42 1.056-3.3 0.614-0.879 1.496-1.32 2.64-1.32 0.44 0 1.056 0.132 1.848 0.396l-0.264 1.584c-0.528-0.264-1.012-0.396-1.452-0.396-0.707 0-1.235 0.264-1.584 0.792-0.353 0.442-0.528 1.144-0.528 2.112 0 0.616 0.132 1.056 0.396 1.32 0.264 0.353 0.614 0.528 1.056 0.528 0.44 0 0.924-0.132 1.452-0.396l-0.264 1.717zM47.115 15.868c-0.046 0.264-0.066 0.484-0.066 0.66-0.088 0.442-0.178 1.035-0.264 1.782-0.088 0.749-0.178 1.254-0.264 1.518h-1.32v-0.66c-0.353 0.528-0.924 0.792-1.716 0.792-0.442 0-0.792-0.132-1.056-0.396-0.264-0.351-0.396-0.792-0.396-1.32 0-0.792 0.218-1.364 0.66-1.716 0.614-0.44 1.32-0.66 2.112-0.66h0.66c0.086-0.086 0.132-0.218 0.132-0.396 0-0.351-0.353-0.528-1.056-0.528-0.442 0-1.012 0.088-1.716 0.264 0-0.351 0.086-0.792 0.264-1.32 0.703-0.264 1.32-0.396 1.848-0.396 1.496 0 2.245 0.616 2.245 1.848 0.001 0.089-0.021 0.264-0.065 0.529zM49.69 16.132c-0.178 0.528-0.396 1.762-0.66 3.697h-1.716l0.132-0.396c0.35-1.935 0.614-3.872 0.792-5.809h1.584c0 0.353-0.046 0.66-0.132 0.924 0.264-0.44 0.528-0.703 0.792-0.792 0.35-0.175 0.614-0.218 0.792-0.132-0.353 0.442-0.574 1.056-0.66 1.848-0.353-0.086-0.66 0.132-0.925 0.66zM54.178 19.828l0.132-0.528c-0.353 0.442-0.838 0.66-1.452 0.66-0.707 0-1.188-0.218-1.452-0.66-0.442-0.614-0.66-1.232-0.66-1.848 0-1.142 0.308-2.067 0.924-2.773 0.44-0.703 1.056-1.056 1.848-1.056 0.528 0 1.056 0.264 1.584 0.792l0.264-2.244h1.716l-1.32 7.657h-1.585zM16.159 17.98c0 0.442 0.175 0.66 0.528 0.66 0.35 0 0.614-0.132 0.792-0.396 0.264-0.264 0.396-0.66 0.396-1.188h-0.397c-0.881 0-1.32 0.31-1.32 0.924zM31.076 15.076c-0.088 0-0.178-0.043-0.264-0.132h-0.264c-0.528 0-0.881 0.353-1.056 1.056h1.848v-0.396l-0.132-0.264c-0.001-0.086-0.047-0.175-0.133-0.264zM43.617 17.98c0 0.442 0.175 0.66 0.528 0.66 0.35 0 0.614-0.132 0.792-0.396 0.264-0.264 0.396-0.66 0.396-1.188h-0.396c-0.881 0-1.32 0.31-1.32 0.924zM53.782 15.076c-0.353 0-0.66 0.22-0.924 0.66-0.178 0.264-0.264 0.749-0.264 1.452 0 0.792 0.264 1.188 0.792 1.188 0.35 0 0.66-0.175 0.924-0.528 0.264-0.351 0.396-0.879 0.396-1.584-0.001-0.792-0.311-1.188-0.925-1.188z\"></path>\n</svg>\n</div><div class=\"payment-icon\"><svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"  viewBox=\"0 0 64 32\">\n<path d=\"M16.398 13.428c0.034 3.535 3.201 4.71 3.236 4.726-0.027 0.083-0.506 1.676-1.668 3.322-1.005 1.423-2.048 2.84-3.692 2.87-1.615 0.029-2.134-0.927-3.98-0.927s-2.422 0.898-3.951 0.956c-1.586 0.058-2.794-1.539-3.807-2.956-2.070-2.9-3.653-8.194-1.528-11.768 1.055-1.775 2.942-2.899 4.989-2.927 1.558-0.029 3.027 1.015 3.98 1.015s2.738-1.255 4.616-1.071c0.786 0.032 2.993 0.308 4.41 2.317-0.114 0.068-2.633 1.489-2.605 4.444zM13.363 4.749c0.842-0.987 1.409-2.362 1.254-3.729-1.213 0.047-2.682 0.783-3.552 1.77-0.78 0.874-1.464 2.273-1.279 3.613 1.353 0.101 2.735-0.666 3.577-1.654zM25.55 3.058c0.624-0.105 1.313-0.2 2.065-0.284s1.581-0.126 2.485-0.126c1.291 0 2.404 0.152 3.339 0.457s1.704 0.741 2.307 1.308c0.517 0.504 0.92 1.103 1.21 1.796s0.435 1.492 0.435 2.395c0 1.092-0.199 2.049-0.596 2.868s-0.941 1.507-1.629 2.064c-0.688 0.557-1.506 0.972-2.452 1.245s-1.979 0.41-3.098 0.41c-1.011 0-1.86-0.073-2.548-0.22v9.076h-1.517v-20.989zM27.068 13.648c0.366 0.104 0.774 0.178 1.226 0.22s0.935 0.063 1.451 0.063c1.936 0 3.436-0.441 4.501-1.323s1.597-2.174 1.597-3.876c0-0.819-0.14-1.534-0.42-2.143s-0.677-1.108-1.193-1.497c-0.516-0.388-1.129-0.683-1.839-0.882s-1.495-0.3-2.356-0.3c-0.688 0-1.28 0.027-1.774 0.079s-0.893 0.11-1.193 0.173l0.001 9.487zM49.452 20.454c0 0.61 0.010 1.219 0.032 1.828s0.086 1.197 0.194 1.765h-1.42l-0.225-2.143h-0.065c-0.194 0.294-0.441 0.588-0.742 0.882s-0.65 0.562-1.048 0.803c-0.398 0.242-0.85 0.436-1.355 0.583s-1.059 0.22-1.662 0.22c-0.753 0-1.414-0.121-1.985-0.362s-1.038-0.557-1.403-0.946c-0.366-0.389-0.64-0.836-0.822-1.339s-0.274-1.008-0.274-1.513c0-1.786 0.769-3.162 2.307-4.129s3.855-1.429 6.953-1.387v-0.41c0-0.399-0.038-0.856-0.113-1.371s-0.242-1.003-0.5-1.465c-0.258-0.462-0.645-0.851-1.161-1.166s-1.215-0.473-2.097-0.473c-0.666 0-1.328 0.1-1.983 0.299s-1.253 0.478-1.791 0.835l-0.484-1.103c0.688-0.462 1.399-0.793 2.13-0.992s1.495-0.3 2.29-0.3c1.076 0 1.952 0.178 2.63 0.536s1.21 0.819 1.597 1.387c0.387 0.567 0.651 1.202 0.791 1.906s0.21 1.402 0.21 2.096l-0.001 5.957zM47.936 15.948c-0.818-0.021-1.673 0.010-2.566 0.094s-1.715 0.268-2.468 0.552c-0.753 0.284-1.377 0.699-1.871 1.245s-0.742 1.271-0.742 2.175c0 1.072 0.312 1.859 0.935 2.364s1.323 0.757 2.097 0.757c0.624 0 1.182-0.084 1.677-0.252s0.925-0.394 1.291-0.677c0.366-0.283 0.672-0.603 0.919-0.961s0.436-0.725 0.565-1.103c0.108-0.421 0.161-0.726 0.161-0.915l0.001-3.277zM52.418 8.919l3.935 9.833c0.215 0.547 0.42 1.108 0.613 1.686s0.366 1.108 0.516 1.591h0.065c0.15-0.462 0.322-0.982 0.516-1.56s0.409-1.171 0.645-1.781l3.679-9.77h1.613l-4.484 11.094c-0.452 1.177-0.877 2.243-1.275 3.199s-0.801 1.817-1.21 2.585c-0.409 0.767-0.822 1.445-1.242 2.033s-0.887 1.103-1.404 1.544c-0.602 0.525-1.156 0.908-1.661 1.151s-0.844 0.394-1.016 0.457l-0.517-1.229c0.387-0.168 0.818-0.388 1.291-0.662s0.936-0.63 1.387-1.072c0.387-0.378 0.812-0.877 1.274-1.497s0.876-1.371 1.242-2.254c0.13-0.336 0.194-0.557 0.194-0.662 0-0.147-0.065-0.367-0.194-0.662l-5.582-14.025h1.614z\"></path>\n</svg>\n</div><div class=\"payment-icon\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 32\">\n	<path d=\"M30.479 16.275v7.365h-2.337V5.452h6.197a5.603 5.603 0 014.012 1.574 5.062 5.062 0 011.676 3.839 5.037 5.037 0 01-1.676 3.86c-1.083 1.033-2.42 1.55-4.012 1.548h-3.86v.002zm0-8.584v6.35h3.918a3.089 3.089 0 002.312-.941 3.098 3.098 0 000-4.445 3.047 3.047 0 00-2.312-.965h-3.918v.001zM45.41 10.79c1.727 0 3.09.462 4.09 1.385s1.498 2.188 1.498 3.796v7.67h-2.235v-1.727h-.102c-.968 1.422-2.254 2.133-3.86 2.133-1.371 0-2.518-.406-3.441-1.219a3.895 3.895 0 01-1.384-3.047c0-1.288.486-2.312 1.46-3.073.973-.76 2.272-1.141 3.897-1.143 1.388 0 2.53.254 3.428.762v-.534a2.662 2.662 0 00-.965-2.068 3.31 3.31 0 00-2.255-.852c-1.305 0-2.338.55-3.098 1.651l-2.058-1.296c1.132-1.625 2.807-2.438 5.025-2.438zm-3.023 9.041a1.864 1.864 0 00.775 1.524 2.85 2.85 0 001.816.61 3.725 3.725 0 002.628-1.092c.774-.728 1.161-1.583 1.161-2.564-.729-.58-1.744-.87-3.048-.87-.949 0-1.74.228-2.374.686-.64.464-.957 1.029-.957 1.706zm21.439-8.634l-7.802 17.93h-2.411l2.895-6.274-5.13-11.656h2.54l3.707 8.94h.05l3.607-8.94h2.544zM11.003 8.137a5.673 5.673 0 014.009 1.567l2.982-2.982A10.04 10.04 0 0011.004 4a10.449 10.449 0 000 20.897c2.82 0 5.193-.926 6.925-2.522l-.002-.002h.002c1.972-1.818 3.108-4.507 3.108-7.687 0-.712-.06-1.422-.18-2.124h-9.854v4.024h5.644a4.834 4.834 0 01-2.087 3.175v.002c-.937.635-2.145.998-3.557.998-2.725 0-5.038-1.837-5.865-4.313a6.26 6.26 0 010-4c.827-2.475 3.14-4.312 5.865-4.312z\"/>\n</svg>\n</div></div>      </div>\n    \n    <div class=\"footer-primary pull-left\">\n                          <div class=\"copyright-footer\">\n        Copyright 2023 © <strong>Teng Shop</strong>      </div>\n          </div>\n  </div>\n</div>\n\n<a href=\"#top\" class=\"back-to-top button icon invert plain fixed bottom z-1 is-outline circle\" id=\"top-link\" aria-label=\"Terug naar boven\"><i class=\"icon-angle-up\" ></i></a>\n\n</footer>\n\n</div>\n\n<div id=\"main-menu\" class=\"mobile-sidebar no-scrollbar mfp-hide\">\n\n	\n	<div class=\"sidebar-menu no-scrollbar \">\n\n		\n					<ul class=\"nav nav-sidebar nav-vertical nav-uppercase\" data-tab=\"1\">\n				<li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-9260\"><a href=\"/collections/chinese-kleding-mannen/\">Man</a>\n<ul class=\"sub-menu nav-sidebar-ul children\">\n	<li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9261\"><a href=\"/collections/chinese-broek/\">Broek</a></li>\n	<li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9262\"><a href=\"/collections/chinese-jas-mannen-tangzhuang/\">Jassen</a></li>\n	<li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9263\"><a href=\"/collections/chinese-t-shirts/\">T-shirts</a></li>\n</ul>\n</li>\n<li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-9264\"><a href=\"/collections/chinese-kleding-vrouwen/\">Vrouw</a>\n<ul class=\"sub-menu nav-sidebar-ul children\">\n	<li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9265\"><a href=\"/collections/chinese-jurken-qipao/\">Jurken</a></li>\n	<li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9266\"><a href=\"/collections/hanfu/\">Hanfu</a></li>\n	<li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9267\"><a href=\"/collections/chinese-jas-vrouwen/\">Jassen</a></li>\n</ul>\n</li>\n<li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-9269\"><a href=\"/collections/chinese-versiering/\">Decoratie</a>\n<ul class=\"sub-menu nav-sidebar-ul children\">\n	<li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9270\"><a href=\"/collections/chinese-lampionnen/\">Lampionnen</a></li>\n	<li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9271\"><a href=\"/collections/chinese-gordijnen/\">Gordijnen</a></li>\n	<li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9272\"><a href=\"/collections/chinese-schilderijen/\">Schilderijen</a></li>\n	<li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9273\"><a href=\"/collections/chinese-beelden/\">Beelden</a></li>\n</ul>\n</li>\n<li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-9274\"><a href=\"/collections/chinese-accessoires/\">Accessoires</a>\n<ul class=\"sub-menu nav-sidebar-ul children\">\n	<li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9275\"><a href=\"/collections/chinese-waaier/\">Waaier</a></li>\n	<li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9276\"><a href=\"/collections/chinese-parapluutjes/\">Paraplu&#8217;s</a></li>\n</ul>\n</li>\n<li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-9277\"><a href=\"/collections/chinese-eetstokjes/\">Eetstokjes</a></li>\n<li class=\"header-divider\"></li><li class=\"account-item has-icon menu-item\">\n<a href=\"https://www.nl.teng-shop.com/mijn-paard/\"\n    class=\"nav-top-link nav-top-not-logged-in\">\n    <span class=\"header-account-title\">\n    Inloggen  </span>\n</a>\n\n</li>\n			</ul>\n		\n		\n	</div>\n\n	\n</div>\n    <div id=\"login-form-popup\" class=\"lightbox-content mfp-hide\">\n      \n<div class=\"my-account-header page-title normal-title\n		\">\n\n	\n	<div class=\"page-title-inner flex-row container\n	 text-left\">\n		<div class=\"flex-col flex-grow text-center\">\n			\n				<div class=\"text-center social-login\">\n					\n					\n						<a href=\"https://www.nl.teng-shop.com/wp-login.php?loginSocial=facebook\" class=\"button social-button large facebook circle\" data-plugin=\"nsl\" data-action=\"connect\" data-redirect=\"current\" data-provider=\"facebook\" data-popupwidth=\"475\" data-popupheight=\"175\">\n							<i class=\"icon-facebook\"></i>\n							<span>Login met <strong>Facebook</strong></span>\n						</a>\n					\n					\n						<a href=\"https://www.nl.teng-shop.com/wp-login.php?loginSocial=google\" class=\"button social-button large google-plus circle\" data-plugin=\"nsl\" data-action=\"connect\" data-redirect=\"current\" data-provider=\"google\" data-popupwidth=\"600\" data-popupheight=\"600\">\n							<i class=\"icon-google-plus\"></i>\n							<span>Login met <strong>Google</strong></span>\n						</a>\n					\n\n									</div>\n\n					</div>\n	</div>\n</div>\n      	<div class=\"woocommerce\">\n      		<div class=\"woocommerce-notices-wrapper\"></div>\n<div class=\"account-container lightbox-inner\">\n\n	\n	<div class=\"col2-set row row-divided row-large\" id=\"customer_login\">\n\n		<div class=\"col-1 large-6 col pb-0\">\n\n			\n			<div class=\"account-login-inner\">\n\n				<h3 class=\"uppercase\">Inloggen</h3>\n\n				<form class=\"woocommerce-form woocommerce-form-login login\" method=\"post\">\n\n					\n					<p class=\"woocommerce-form-row woocommerce-form-row--wide form-row form-row-wide\">\n						<label for=\"username\">Gebruikersnaam of e-mailadres&nbsp;<span class=\"required\">*</span></label>\n						<input type=\"text\" class=\"woocommerce-Input woocommerce-Input--text input-text\" name=\"username\" id=\"username\" autocomplete=\"username\" value=\"\" />					</p>\n					<p class=\"woocommerce-form-row woocommerce-form-row--wide form-row form-row-wide\">\n						<label for=\"password\">Wachtwoord&nbsp;<span class=\"required\">*</span></label>\n						<input class=\"woocommerce-Input woocommerce-Input--text input-text\" type=\"password\" name=\"password\" id=\"password\" autocomplete=\"current-password\" />\n					</p>\n\n					\n					<p class=\"form-row\">\n						<label class=\"woocommerce-form__label woocommerce-form__label-for-checkbox woocommerce-form-login__rememberme\">\n							<input class=\"woocommerce-form__input woocommerce-form__input-checkbox\" name=\"rememberme\" type=\"checkbox\" id=\"rememberme\" value=\"forever\" /> <span>Onthouden</span>\n						</label>\n						<input type=\"hidden\" id=\"woocommerce-login-nonce\" name=\"woocommerce-login-nonce\" value=\"14e1c0df5d\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/\" />						<button type=\"submit\" class=\"woocommerce-button button woocommerce-form-login__submit\" name=\"login\" value=\"Inloggen\">Inloggen</button>\n					</p>\n					<p class=\"woocommerce-LostPassword lost_password\">\n						<a href=\"https://www.nl.teng-shop.com/mijn-paard/lost-password/\">Wachtwoord vergeten?</a>\n					</p>\n\n					\n				</form>\n			</div>\n\n			\n		</div>\n\n		<div class=\"col-2 large-6 col pb-0\">\n\n			<div class=\"account-register-inner\">\n\n				<h3 class=\"uppercase\">Registreren</h3>\n\n				<form method=\"post\" class=\"woocommerce-form woocommerce-form-register register\"  >\n\n					\n					\n					<p class=\"woocommerce-form-row woocommerce-form-row--wide form-row form-row-wide\">\n						<label for=\"reg_email\">E-mailadres&nbsp;<span class=\"required\">*</span></label>\n						<input type=\"email\" class=\"woocommerce-Input woocommerce-Input--text input-text\" name=\"email\" id=\"reg_email\" autocomplete=\"email\" value=\"\" />					</p>\n\n					\n						<p>Een link om een nieuw wachtwoord in te stellen zal naar je e-mailadres worden verzonden.</p>\n\n					\n					<div class=\"woocommerce-privacy-policy-text\"><p>Uw persoonlijke gegevens worden gebruikt om uw bezoek aan de website te ondersteunen, de toegang tot uw account te beheren en voor andere doeleinden zoals beschreven in ons <a href=\"https://www.nl.teng-shop.com/privacybeleid/\" class=\"woocommerce-privacy-policy-link\" target=\"_blank\">privacybeleid</a>.</p>\n</div>\n					<p class=\"woocommerce-form-row form-row\">\n						<input type=\"hidden\" id=\"woocommerce-register-nonce\" name=\"woocommerce-register-nonce\" value=\"f5ef8a61f1\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/\" />						<button type=\"submit\" class=\"woocommerce-Button woocommerce-button button woocommerce-form-register__submit\" name=\"register\" value=\"Registreren\">Registreren</button>\n					</p>\n\n					\n				</form>\n\n			</div>\n\n		</div>\n\n	</div>\n\n</div>\n\n		</div>\n      	    </div>\n  	<script type=\"text/javascript\">\n		(function () {\n			var c = document.body.className;\n			c = c.replace(/woocommerce-no-js/, \'woocommerce-js\');\n			document.body.className = c;\n		})();\n	</script>\n	<style id=\'global-styles-inline-css\' type=\'text/css\'>\nbody{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--color--primary: #df4c18;--wp--preset--color--secondary: #000000;--wp--preset--color--success: #7a9c59;--wp--preset--color--alert: #b20000;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);--wp--custom--experimental--link--color: #df4c18;--wp--custom--experimental--link--color-hover: #111;}body { margin: 0; }.wp-site-blocks > .alignleft { float: left; margin-right: 2em; }.wp-site-blocks > .alignright { float: right; margin-left: 2em; }.wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}body .is-layout-flex{flex-wrap: wrap;align-items: center;}body .is-layout-flex > *{margin: 0;}body .is-layout-grid{display: grid;}body .is-layout-grid > *{margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}a:where(:not(.wp-element-button)){text-decoration: none;}.wp-element-button, .wp-block-button__link{background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;line-height: inherit;padding: calc(0.667em + 2px) calc(1.333em + 2px);text-decoration: none;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-primary-color{color: var(--wp--preset--color--primary) !important;}.has-secondary-color{color: var(--wp--preset--color--secondary) !important;}.has-success-color{color: var(--wp--preset--color--success) !important;}.has-alert-color{color: var(--wp--preset--color--alert) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-primary-background-color{background-color: var(--wp--preset--color--primary) !important;}.has-secondary-background-color{background-color: var(--wp--preset--color--secondary) !important;}.has-success-background-color{background-color: var(--wp--preset--color--success) !important;}.has-alert-background-color{background-color: var(--wp--preset--color--alert) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-primary-border-color{border-color: var(--wp--preset--color--primary) !important;}.has-secondary-border-color{border-color: var(--wp--preset--color--secondary) !important;}.has-success-border-color{border-color: var(--wp--preset--color--success) !important;}.has-alert-border-color{border-color: var(--wp--preset--color--alert) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}\n</style>\n<script async src=\'//static.klaviyo.com/onsite/js/klaviyo.js?company_id=WUCBtq&ver=3.3.1\'></script><script type=\"text/javascript\" src=\"https://www.nl.teng-shop.com/wp-content/plugins/contact-form-7/includes/swv/js/index.js?ver=5.8.2\" id=\"swv-js\"></script>\n<script type=\"text/javascript\" id=\"contact-form-7-js-extra\">\n/* <![CDATA[ */\nvar wpcf7 = {\"api\":{\"root\":\"https:\\/\\/www.nl.teng-shop.com\\/wp-json\\/\",\"namespace\":\"contact-form-7\\/v1\"},\"cached\":\"1\"};\n/* ]]> */\n</script>\n<script type=\"text/javascript\" src=\"https://www.nl.teng-shop.com/wp-content/plugins/contact-form-7/includes/js/index.js?ver=5.8.2\" id=\"contact-form-7-js\"></script>\n<script type=\"text/javascript\" src=\"https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js?ver=1.2.65.0\" id=\"mo-google-webfont-js\"></script>\n<script type=\"text/javascript\" id=\"mailoptin-js-extra\">\n/* <![CDATA[ */\nvar mailoptin_globals = {\"public_js\":\"https:\\/\\/www.nl.teng-shop.com\\/wp-content\\/plugins\\/mailoptin\\/src\\/core\\/src\\/assets\\/js\\/src\",\"public_sound\":\"https:\\/\\/www.nl.teng-shop.com\\/wp-content\\/plugins\\/mailoptin\\/src\\/core\\/src\\/assets\\/sound\\/\",\"mailoptin_ajaxurl\":\"\\/?mailoptin-ajax=%%endpoint%%\",\"is_customize_preview\":\"false\",\"disable_impression_tracking\":\"false\",\"sidebar\":\"0\",\"js_required_title\":\"Title is required.\",\"is_new_returning_visitors_cookies\":\"false\",\"woo_product_id\":\"263\"};\n/* ]]> */\n</script>\n<script type=\"text/javascript\" src=\"https://www.nl.teng-shop.com/wp-content/plugins/mailoptin/src/core/src/assets/js/mailoptin.min.js?ver=1.2.65.0\" id=\"mailoptin-js\"></script>\n<script type=\"text/javascript\" src=\"https://www.nl.teng-shop.com/wp-content/plugins/woocommerce/assets/js/jquery-blockui/jquery.blockUI.min.js?ver=2.7.0-wc.8.2.2\" id=\"jquery-blockui-js\"></script>\n<script type=\"text/javascript\" id=\"wc-add-to-cart-js-extra\">\n/* <![CDATA[ */\nvar wc_add_to_cart_params = {\"ajax_url\":\"\\/wp-admin\\/admin-ajax.php\",\"wc_ajax_url\":\"\\/?wc-ajax=%%endpoint%%\",\"i18n_view_cart\":\"Bekijk winkelwagen\",\"cart_url\":\"https:\\/\\/www.nl.teng-shop.com\\/mand\\/\",\"is_cart\":\"\",\"cart_redirect_after_add\":\"no\"};\n/* ]]> */\n</script>\n<script type=\"text/javascript\" src=\"https://www.nl.teng-shop.com/wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart.min.js?ver=8.2.2\" id=\"wc-add-to-cart-js\"></script>\n<script type=\"text/javascript\" src=\"https://www.nl.teng-shop.com/wp-content/plugins/woocommerce/assets/js/js-cookie/js.cookie.min.js?ver=2.1.4-wc.8.2.2\" id=\"js-cookie-js\"></script>\n<script type=\"text/javascript\" id=\"woocommerce-js-extra\">\n/* <![CDATA[ */\nvar woocommerce_params = {\"ajax_url\":\"\\/wp-admin\\/admin-ajax.php\",\"wc_ajax_url\":\"\\/?wc-ajax=%%endpoint%%\"};\n/* ]]> */\n</script>\n<script type=\"text/javascript\" src=\"https://www.nl.teng-shop.com/wp-content/plugins/woocommerce/assets/js/frontend/woocommerce.min.js?ver=8.2.2\" id=\"woocommerce-js\"></script>\n<script type=\"text/javascript\" src=\"https://www.nl.teng-shop.com/wp-includes/js/hoverIntent.min.js?ver=1.10.2\" id=\"hoverIntent-js\"></script>\n<script type=\"text/javascript\" id=\"flatsome-js-js-extra\">\n/* <![CDATA[ */\nvar flatsomeVars = {\"theme\":{\"version\":\"3.18.0\"},\"ajaxurl\":\"https:\\/\\/www.nl.teng-shop.com\\/wp-admin\\/admin-ajax.php\",\"rtl\":\"\",\"sticky_height\":\"70\",\"stickyHeaderHeight\":\"0\",\"scrollPaddingTop\":\"0\",\"assets_url\":\"https:\\/\\/www.nl.teng-shop.com\\/wp-content\\/themes\\/flatsome\\/assets\\/\",\"lightbox\":{\"close_markup\":\"<button title=\\\"%title%\\\" type=\\\"button\\\" class=\\\"mfp-close\\\"><svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"28\\\" height=\\\"28\\\" viewBox=\\\"0 0 24 24\\\" fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-width=\\\"2\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" class=\\\"feather feather-x\\\"><line x1=\\\"18\\\" y1=\\\"6\\\" x2=\\\"6\\\" y2=\\\"18\\\"><\\/line><line x1=\\\"6\\\" y1=\\\"6\\\" x2=\\\"18\\\" y2=\\\"18\\\"><\\/line><\\/svg><\\/button>\",\"close_btn_inside\":false},\"user\":{\"can_edit_pages\":false},\"i18n\":{\"mainMenu\":\"Hoofdmenu\",\"toggleButton\":\"Toggle\"},\"options\":{\"cookie_notice_version\":\"1\",\"swatches_layout\":\"stacked\",\"swatches_disable_deselect\":false,\"swatches_box_select_event\":false,\"swatches_box_behavior_selected\":false,\"swatches_box_update_urls\":\"1\",\"swatches_box_reset\":false,\"swatches_box_reset_limited\":false,\"swatches_box_reset_extent\":false,\"swatches_box_reset_time\":300,\"search_result_latency\":\"0\"},\"is_mini_cart_reveal\":\"1\"};\n/* ]]> */\n</script>\n<script type=\"text/javascript\" src=\"https://www.nl.teng-shop.com/wp-content/themes/flatsome/assets/js/flatsome.js?ver=039f9485eef603e7c53a\" id=\"flatsome-js-js\"></script>\n<script type=\"text/javascript\" src=\"https://www.nl.teng-shop.com/wp-content/themes/flatsome/inc/integrations/wc-yith-wishlist/wishlist.js?ver=3.10.2\" id=\"flatsome-woocommerce-wishlist-js\"></script>\n<script type=\"text/javascript\" src=\"https://www.nl.teng-shop.com/wp-content/themes/flatsome/inc/extensions/flatsome-live-search/flatsome-live-search.js?ver=3.18.0\" id=\"flatsome-live-search-js\"></script>\n<script type=\"text/javascript\" src=\"https://www.nl.teng-shop.com/wp-content/themes/flatsome/assets/js/extensions/flatsome-swatches-frontend.js?ver=3.18.0\" id=\"flatsome-swatches-frontend-js\"></script>\n<script type=\"text/javascript\" id=\"kl-identify-browser-js-extra\">\n/* <![CDATA[ */\nvar klUser = {\"current_user_email\":\"\",\"commenter_email\":\"\"};\n/* ]]> */\n</script>\n<script type=\"text/javascript\" src=\"https://www.nl.teng-shop.com/wp-content/plugins/klaviyo/inc/js/kl-identify-browser.js?ver=3.3.1\" id=\"kl-identify-browser-js\"></script>\n<script type=\"text/javascript\" src=\"https://www.nl.teng-shop.com/wp-content/themes/flatsome/inc/extensions/flatsome-lazy-load/flatsome-lazy-load.js?ver=3.18.0\" id=\"flatsome-lazy-js\"></script>\n<script type=\"text/javascript\" src=\"https://www.nl.teng-shop.com/wp-content/themes/flatsome/assets/js/woocommerce.js?ver=c9fe40206165dd93147b\" id=\"flatsome-theme-woocommerce-js-js\"></script>\n<script type=\"text/javascript\" id=\"wc-cart-fragments-js-extra\">\n/* <![CDATA[ */\nvar wc_cart_fragments_params = {\"ajax_url\":\"\\/wp-admin\\/admin-ajax.php\",\"wc_ajax_url\":\"\\/?wc-ajax=%%endpoint%%\",\"cart_hash_key\":\"wc_cart_hash_c1425807695ed21e7e3402dcdf331840\",\"fragment_name\":\"wc_fragments_c1425807695ed21e7e3402dcdf331840\",\"request_timeout\":\"5000\"};\n/* ]]> */\n</script>\n<script type=\"text/javascript\" src=\"https://www.nl.teng-shop.com/wp-content/plugins/woocommerce/assets/js/frontend/cart-fragments.min.js?ver=8.2.2\" id=\"wc-cart-fragments-js\"></script>\n<script type=\"text/javascript\" src=\"https://www.nl.teng-shop.com/wp-content/plugins/yith-woocommerce-wishlist/assets/js/jquery.selectBox.min.js?ver=1.2.0\" id=\"jquery-selectBox-js\"></script>\n<script type=\"text/javascript\" src=\"//www.nl.teng-shop.com/wp-content/plugins/woocommerce/assets/js/prettyPhoto/jquery.prettyPhoto.min.js?ver=3.1.6\" id=\"prettyPhoto-js\"></script>\n<script type=\"text/javascript\" id=\"jquery-yith-wcwl-js-extra\">\n/* <![CDATA[ */\nvar yith_wcwl_l10n = {\"ajax_url\":\"\\/wp-admin\\/admin-ajax.php\",\"redirect_to_cart\":\"no\",\"yith_wcwl_button_position\":\"add-to-cart\",\"multi_wishlist\":\"\",\"hide_add_button\":\"1\",\"enable_ajax_loading\":\"\",\"ajax_loader_url\":\"https:\\/\\/www.nl.teng-shop.com\\/wp-content\\/plugins\\/yith-woocommerce-wishlist\\/assets\\/images\\/ajax-loader-alt.svg\",\"remove_from_wishlist_after_add_to_cart\":\"1\",\"is_wishlist_responsive\":\"1\",\"time_to_close_prettyphoto\":\"3000\",\"fragments_index_glue\":\".\",\"reload_on_found_variation\":\"1\",\"mobile_media_query\":\"768\",\"labels\":{\"cookie_disabled\":\"Deze optie is alleen beschikbaar als cookies in je browser zijn ingeschakeld.\",\"added_to_cart_message\":\"<div class=\\\"woocommerce-notices-wrapper\\\"><div class=\\\"woocommerce-message\\\" role=\\\"alert\\\">Product succesvol toegevoegd aan winkelwagen<\\/div><\\/div>\"},\"actions\":{\"add_to_wishlist_action\":\"add_to_wishlist\",\"remove_from_wishlist_action\":\"remove_from_wishlist\",\"reload_wishlist_and_adding_elem_action\":\"reload_wishlist_and_adding_elem\",\"load_mobile_action\":\"load_mobile\",\"delete_item_action\":\"delete_item\",\"save_title_action\":\"save_title\",\"save_privacy_action\":\"save_privacy\",\"load_fragments\":\"load_fragments\"},\"nonce\":{\"add_to_wishlist_nonce\":\"cdb7a006a5\",\"remove_from_wishlist_nonce\":\"be4d9d985f\",\"reload_wishlist_and_adding_elem_nonce\":\"aa87982449\",\"load_mobile_nonce\":\"c5578b1d65\",\"delete_item_nonce\":\"308143356a\",\"save_title_nonce\":\"37200ef3ac\",\"save_privacy_nonce\":\"3a4288a976\",\"load_fragments_nonce\":\"aedca6e27d\"},\"redirect_after_ask_estimate\":\"\",\"ask_estimate_redirect_url\":\"https:\\/\\/www.nl.teng-shop.com\"};\n/* ]]> */\n</script>\n<script type=\"text/javascript\" src=\"https://www.nl.teng-shop.com/wp-content/plugins/yith-woocommerce-wishlist/assets/js/jquery.yith-wcwl.min.js?ver=3.26.0\" id=\"jquery-yith-wcwl-js\"></script>\n<script type=\"text/javascript\">(function (undefined) {var _localizedStrings={\"redirect_overlay_title\":\"Hou vol\",\"redirect_overlay_text\":\"Je wordt doorgestuurd naar een andere pagina,<br>het kan een paar seconden duren.\"};var _targetWindow=\"prefer-popup\";var _redirectOverlay=\"overlay-with-spinner-and-message\";\n/**\n * Used when Cross-Origin-Opener-Policy blocked the access to the opener. We can\'t have a reference of the opened windows, so we should attempt to refresh only the windows that has opened popups.\n */\nwindow._nslHasOpenedPopup = false;\n\nwindow.NSLPopup = function (url, title, w, h) {\n    var userAgent = navigator.userAgent,\n        mobile = function () {\n            return /\\b(iPhone|iP[ao]d)/.test(userAgent) ||\n                /\\b(iP[ao]d)/.test(userAgent) ||\n                /Android/i.test(userAgent) ||\n                /Mobile/i.test(userAgent);\n        },\n        screenX = window.screenX !== undefined ? window.screenX : window.screenLeft,\n        screenY = window.screenY !== undefined ? window.screenY : window.screenTop,\n        outerWidth = window.outerWidth !== undefined ? window.outerWidth : document.documentElement.clientWidth,\n        outerHeight = window.outerHeight !== undefined ? window.outerHeight : document.documentElement.clientHeight - 22,\n        targetWidth = mobile() ? null : w,\n        targetHeight = mobile() ? null : h,\n        left = parseInt(screenX + (outerWidth - targetWidth) / 2, 10),\n        right = parseInt(screenY + (outerHeight - targetHeight) / 2.5, 10),\n        features = [];\n    if (targetWidth !== null) {\n        features.push(\'width=\' + targetWidth);\n    }\n    if (targetHeight !== null) {\n        features.push(\'height=\' + targetHeight);\n    }\n    features.push(\'left=\' + left);\n    features.push(\'top=\' + right);\n    features.push(\'scrollbars=1\');\n\n    var newWindow = window.open(url, title, features.join(\',\'));\n\n    if (window.focus) {\n        newWindow.focus();\n    }\n\n    window._nslHasOpenedPopup = true;\n\n    return newWindow;\n};\n\nvar isWebView = null;\n\nfunction checkWebView() {\n    if (isWebView === null) {\n        function _detectOS(ua) {\n            if (/Android/.test(ua)) {\n                return \"Android\";\n            } else if (/iPhone|iPad|iPod/.test(ua)) {\n                return \"iOS\";\n            } else if (/Windows/.test(ua)) {\n                return \"Windows\";\n            } else if (/Mac OS X/.test(ua)) {\n                return \"Mac\";\n            } else if (/CrOS/.test(ua)) {\n                return \"Chrome OS\";\n            } else if (/Firefox/.test(ua)) {\n                return \"Firefox OS\";\n            }\n            return \"\";\n        }\n\n        function _detectBrowser(ua) {\n            var android = /Android/.test(ua);\n\n            if (/Opera Mini/.test(ua) || / OPR/.test(ua) || / OPT/.test(ua)) {\n                return \"Opera\";\n            } else if (/CriOS/.test(ua)) {\n                return \"Chrome for iOS\";\n            } else if (/Edge/.test(ua)) {\n                return \"Edge\";\n            } else if (android && /Silk\\//.test(ua)) {\n                return \"Silk\";\n            } else if (/Chrome/.test(ua)) {\n                return \"Chrome\";\n            } else if (/Firefox/.test(ua)) {\n                return \"Firefox\";\n            } else if (android) {\n                return \"AOSP\";\n            } else if (/MSIE|Trident/.test(ua)) {\n                return \"IE\";\n            } else if (/Safari\\//.test(ua)) {\n                return \"Safari\";\n            } else if (/AppleWebKit/.test(ua)) {\n                return \"WebKit\";\n            }\n            return \"\";\n        }\n\n        function _detectBrowserVersion(ua, browser) {\n            if (browser === \"Opera\") {\n                return /Opera Mini/.test(ua) ? _getVersion(ua, \"Opera Mini/\") :\n                    / OPR/.test(ua) ? _getVersion(ua, \" OPR/\") :\n                        _getVersion(ua, \" OPT/\");\n            } else if (browser === \"Chrome for iOS\") {\n                return _getVersion(ua, \"CriOS/\");\n            } else if (browser === \"Edge\") {\n                return _getVersion(ua, \"Edge/\");\n            } else if (browser === \"Chrome\") {\n                return _getVersion(ua, \"Chrome/\");\n            } else if (browser === \"Firefox\") {\n                return _getVersion(ua, \"Firefox/\");\n            } else if (browser === \"Silk\") {\n                return _getVersion(ua, \"Silk/\");\n            } else if (browser === \"AOSP\") {\n                return _getVersion(ua, \"Version/\");\n            } else if (browser === \"IE\") {\n                return /IEMobile/.test(ua) ? _getVersion(ua, \"IEMobile/\") :\n                    /MSIE/.test(ua) ? _getVersion(ua, \"MSIE \")\n                        :\n                        _getVersion(ua, \"rv:\");\n            } else if (browser === \"Safari\") {\n                return _getVersion(ua, \"Version/\");\n            } else if (browser === \"WebKit\") {\n                return _getVersion(ua, \"WebKit/\");\n            }\n            return \"0.0.0\";\n        }\n\n        function _getVersion(ua, token) {\n            try {\n                return _normalizeSemverString(ua.split(token)[1].trim().split(/[^\\w\\.]/)[0]);\n            } catch (o_O) {\n            }\n            return \"0.0.0\";\n        }\n\n        function _normalizeSemverString(version) {\n            var ary = version.split(/[\\._]/);\n            return (parseInt(ary[0], 10) || 0) + \".\" +\n                (parseInt(ary[1], 10) || 0) + \".\" +\n                (parseInt(ary[2], 10) || 0);\n        }\n\n        function _isWebView(ua, os, browser, version, options) {\n            switch (os + browser) {\n                case \"iOSSafari\":\n                    return false;\n                case \"iOSWebKit\":\n                    return _isWebView_iOS(options);\n                case \"AndroidAOSP\":\n                    return false;\n                case \"AndroidChrome\":\n                    return parseFloat(version) >= 42 ? /; wv/.test(ua) : /\\d{2}\\.0\\.0/.test(version) ? true : _isWebView_Android(options);\n            }\n            return false;\n        }\n\n        function _isWebView_iOS(options) {\n            var document = (window[\"document\"] || {});\n\n            if (\"WEB_VIEW\" in options) {\n                return options[\"WEB_VIEW\"];\n            }\n            return !(\"fullscreenEnabled\" in document || \"webkitFullscreenEnabled\" in document || false);\n        }\n\n        function _isWebView_Android(options) {\n            if (\"WEB_VIEW\" in options) {\n                return options[\"WEB_VIEW\"];\n            }\n            return !(\"requestFileSystem\" in window || \"webkitRequestFileSystem\" in window || false);\n        }\n\n        var options = {};\n        var nav = window.navigator || {};\n        var ua = nav.userAgent || \"\";\n        var os = _detectOS(ua);\n        var browser = _detectBrowser(ua);\n        var browserVersion = _detectBrowserVersion(ua, browser);\n\n        isWebView = _isWebView(ua, os, browser, browserVersion, options);\n    }\n\n    return isWebView;\n}\n\nfunction isAllowedWebViewForUserAgent(provider) {\n    var facebookAllowedWebViews = [\n        \'Instagram\',\n        \'FBAV\',\n        \'FBAN\'\n    ], whitelist = [];\n\n    if (provider && provider === \'facebook\') {\n        whitelist = facebookAllowedWebViews;\n    }\n\n    var nav = window.navigator || {};\n    var ua = nav.userAgent || \"\";\n\n    if (whitelist.length && ua.match(new RegExp(whitelist.join(\'|\')))) {\n        return true;\n    }\n\n    return false;\n}\n\nwindow._nslDOMReady(function () {\n\n    window.nslRedirect = function (url) {\n        if (_redirectOverlay) {\n            var overlay = document.createElement(\'div\');\n            overlay.id = \"nsl-redirect-overlay\";\n            var overlayHTML = \'\',\n                overlayContainer = \"<div id=\'nsl-redirect-overlay-container\'>\",\n                overlayContainerClose = \"</div>\",\n                overlaySpinner = \"<div id=\'nsl-redirect-overlay-spinner\'></div>\",\n                overlayTitle = \"<p id=\'nsl-redirect-overlay-title\'>\" + _localizedStrings.redirect_overlay_title + \"</p>\",\n                overlayText = \"<p id=\'nsl-redirect-overlay-text\'>\" + _localizedStrings.redirect_overlay_text + \"</p>\";\n\n            switch (_redirectOverlay) {\n                case \"overlay-only\":\n                    break;\n                case \"overlay-with-spinner\":\n                    overlayHTML = overlayContainer + overlaySpinner + overlayContainerClose;\n                    break;\n                default:\n                    overlayHTML = overlayContainer + overlaySpinner + overlayTitle + overlayText + overlayContainerClose;\n                    break;\n            }\n\n            overlay.insertAdjacentHTML(\"afterbegin\", overlayHTML);\n            document.body.appendChild(overlay);\n        }\n\n        window.location = url;\n    };\n\n    var targetWindow = _targetWindow || \'prefer-popup\',\n        lastPopup = false;\n\n\n    var buttonLinks = document.querySelectorAll(\' a[data-plugin=\"nsl\"][data-action=\"connect\"], a[data-plugin=\"nsl\"][data-action=\"link\"]\');\n    buttonLinks.forEach(function (buttonLink) {\n        buttonLink.addEventListener(\'click\', function (e) {\n            if (lastPopup && !lastPopup.closed) {\n                e.preventDefault();\n                lastPopup.focus();\n            } else {\n\n                var href = this.href,\n                    success = false;\n                if (href.indexOf(\'?\') !== -1) {\n                    href += \'&\';\n                } else {\n                    href += \'?\';\n                }\n\n                var redirectTo = this.dataset.redirect;\n                if (redirectTo === \'current\') {\n                    href += \'redirect=\' + encodeURIComponent(window.location.href) + \'&\';\n                } else if (redirectTo && redirectTo !== \'\') {\n                    href += \'redirect=\' + encodeURIComponent(redirectTo) + \'&\';\n                }\n\n                if (targetWindow !== \'prefer-same-window\' && checkWebView()) {\n                    targetWindow = \'prefer-same-window\';\n                }\n\n                if (targetWindow === \'prefer-popup\') {\n                    lastPopup = NSLPopup(href + \'display=popup\', \'nsl-social-connect\', this.dataset.popupwidth, this.dataset.popupheight);\n                    if (lastPopup) {\n                        success = true;\n                        e.preventDefault();\n                    }\n                } else if (targetWindow === \'prefer-new-tab\') {\n                    var newTab = window.open(href + \'display=popup\', \'_blank\');\n                    if (newTab) {\n                        if (window.focus) {\n                            newTab.focus();\n                        }\n                        success = true;\n                        window._nslHasOpenedPopup = true;\n                        e.preventDefault();\n                    }\n                }\n\n                if (!success) {\n                    window.location = href;\n                    e.preventDefault();\n                }\n            }\n        });\n    });\n\n    let hasWebViewLimitation = false;\n\n    var googleLoginButtons = document.querySelectorAll(\' a[data-plugin=\"nsl\"][data-provider=\"google\"]\');\n    if (googleLoginButtons.length && checkWebView()) {\n        googleLoginButtons.forEach(function (googleLoginButton) {\n            googleLoginButton.remove();\n            hasWebViewLimitation = true;\n        });\n    }\n\n    var facebookLoginButtons = document.querySelectorAll(\' a[data-plugin=\"nsl\"][data-provider=\"facebook\"]\');\n    if (facebookLoginButtons.length && checkWebView() && /Android/.test(window.navigator.userAgent) && !isAllowedWebViewForUserAgent(\'facebook\')) {\n        facebookLoginButtons.forEach(function (facebookLoginButton) {\n            facebookLoginButton.remove();\n            hasWebViewLimitation = true;\n        });\n    }\n\n\n    const separators = document.querySelectorAll(\'div.nsl-separator\');\n    if (hasWebViewLimitation && separators.length) {\n        separators.forEach(function (separator) {\n            let separatorParentNode = separator.parentNode;\n            if (separatorParentNode) {\n                const separatorButtonContainer = separatorParentNode.querySelector(\'div.nsl-container-buttons\');\n                if (separatorButtonContainer && !separatorButtonContainer.hasChildNodes()) {\n                    separator.remove();\n                }\n            }\n        })\n    }\n});\n\n/**\n * Cross-Origin-Opener-Policy blocked the access to the opener\n */\nif (typeof BroadcastChannel === \"function\") {\n    const _nslLoginBroadCastChannel = new BroadcastChannel(\'nsl_login_broadcast_channel\');\n    _nslLoginBroadCastChannel.onmessage = (event) => {\n        if (window?._nslHasOpenedPopup && event.data?.action === \'redirect\') {\n            window._nslHasOpenedPopup = false;\n\n            const url = event.data?.href;\n            _nslLoginBroadCastChannel.close();\n            if (typeof window.nslRedirect === \'function\') {\n                window.nslRedirect(url);\n            } else {\n                window.opener.location = url;\n            }\n        }\n    };\n}})();</script>\n</body>\n</html>\n[data-end]',3,0,'testencore0561',1699889303),(5,' :: tryVisit :: [dnsRecord=Array\n(\n    [0] => Array\n        (\n            [host] => www.nl.teng-shop.com\n            [class] => IN\n            [ttl] => 191\n            [type] => A\n            [ip] => 109.234.165.186\n        )\n\n)\n]',3,0,'testencore0561',1699889303);
/*!40000 ALTER TABLE `wpj7_mainwp_action_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_mainwp_group`
--

DROP TABLE IF EXISTS `wpj7_mainwp_group`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_mainwp_group` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `userid` int(11) NOT NULL,
  `name` text NOT NULL,
  `color` varchar(32) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_mainwp_group`
--

LOCK TABLES `wpj7_mainwp_group` WRITE;
/*!40000 ALTER TABLE `wpj7_mainwp_group` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpj7_mainwp_group` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_mainwp_request_log`
--

DROP TABLE IF EXISTS `wpj7_mainwp_request_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_mainwp_request_log` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `wpid` int(11) NOT NULL,
  `ip` text NOT NULL DEFAULT '',
  `subnet` text NOT NULL DEFAULT '',
  `micro_timestamp_stop` decimal(12,2) NOT NULL DEFAULT 0.00,
  `micro_timestamp_start` decimal(12,2) NOT NULL DEFAULT 0.00,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_mainwp_request_log`
--

LOCK TABLES `wpj7_mainwp_request_log` WRITE;
/*!40000 ALTER TABLE `wpj7_mainwp_request_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpj7_mainwp_request_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_mainwp_users`
--

DROP TABLE IF EXISTS `wpj7_mainwp_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_mainwp_users` (
  `userid` int(11) NOT NULL,
  `user_email` text NOT NULL DEFAULT '',
  `ignored_plugins` longtext NOT NULL DEFAULT '',
  `trusted_plugins` longtext NOT NULL DEFAULT '',
  `trusted_plugins_notes` longtext NOT NULL DEFAULT '',
  `ignored_themes` longtext NOT NULL DEFAULT '',
  `trusted_themes` longtext NOT NULL DEFAULT '',
  `trusted_themes_notes` longtext NOT NULL DEFAULT '',
  `site_view` tinyint(1) NOT NULL DEFAULT 0,
  `pluginDir` text NOT NULL DEFAULT '',
  `dismissed_plugins` longtext NOT NULL DEFAULT '',
  `dismissed_themes` longtext NOT NULL DEFAULT '',
  PRIMARY KEY (`userid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_mainwp_users`
--

LOCK TABLES `wpj7_mainwp_users` WRITE;
/*!40000 ALTER TABLE `wpj7_mainwp_users` DISABLE KEYS */;
INSERT INTO `wpj7_mainwp_users` VALUES (0,'','','','','','','',0,'','','');
/*!40000 ALTER TABLE `wpj7_mainwp_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_mainwp_wp`
--

DROP TABLE IF EXISTS `wpj7_mainwp_wp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_mainwp_wp` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `userid` int(11) NOT NULL,
  `adminname` text NOT NULL,
  `name` text NOT NULL,
  `url` text NOT NULL,
  `pubkey` text NOT NULL,
  `privkey` text NOT NULL,
  `siteurl` text NOT NULL,
  `ga_id` text NOT NULL,
  `gas_id` int(11) NOT NULL,
  `offline_checks_last` int(11) NOT NULL,
  `offline_check_result` int(11) NOT NULL,
  `http_response_code` int(11) NOT NULL DEFAULT 0,
  `http_code_noticed` tinyint(1) NOT NULL DEFAULT 1,
  `disable_status_check` tinyint(1) NOT NULL DEFAULT 0,
  `disable_health_check` tinyint(1) NOT NULL DEFAULT 0,
  `status_check_interval` tinyint(1) NOT NULL DEFAULT 0,
  `health_threshold` int(11) NOT NULL DEFAULT 0,
  `note` text NOT NULL,
  `statsUpdate` int(11) NOT NULL,
  `directories` longtext NOT NULL,
  `plugin_upgrades` longtext NOT NULL,
  `theme_upgrades` longtext NOT NULL,
  `translation_upgrades` longtext NOT NULL,
  `premium_upgrades` longtext NOT NULL,
  `securityIssues` longtext NOT NULL,
  `themes` longtext NOT NULL,
  `ignored_themes` longtext NOT NULL,
  `plugins` longtext NOT NULL,
  `ignored_plugins` longtext NOT NULL,
  `users` longtext NOT NULL,
  `categories` longtext NOT NULL,
  `pluginDir` text NOT NULL,
  `automatic_update` tinyint(1) NOT NULL,
  `backup_before_upgrade` tinyint(1) NOT NULL DEFAULT 2,
  `mainwpdir` tinyint(1) NOT NULL,
  `loadFilesBeforeZip` tinyint(1) NOT NULL DEFAULT 1,
  `is_ignoreCoreUpdates` tinyint(1) NOT NULL DEFAULT 0,
  `is_ignorePluginUpdates` tinyint(1) NOT NULL DEFAULT 0,
  `is_ignoreThemeUpdates` tinyint(1) NOT NULL DEFAULT 0,
  `verify_certificate` tinyint(1) NOT NULL DEFAULT 1,
  `force_use_ipv4` tinyint(1) NOT NULL DEFAULT 0,
  `ssl_version` tinyint(1) NOT NULL DEFAULT 0,
  `ip` text NOT NULL DEFAULT '',
  `uniqueId` text NOT NULL,
  `maximumFileDescriptorsOverride` tinyint(1) NOT NULL DEFAULT 0,
  `maximumFileDescriptorsAuto` tinyint(1) NOT NULL DEFAULT 1,
  `maximumFileDescriptors` int(11) NOT NULL DEFAULT 150,
  `http_user` text NOT NULL DEFAULT '',
  `http_pass` text NOT NULL DEFAULT '',
  `wpe` tinyint(1) NOT NULL,
  `is_staging` tinyint(1) NOT NULL DEFAULT 0,
  `client_id` int(11) NOT NULL DEFAULT 0,
  `suspended` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `idx_userid` (`userid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_mainwp_wp`
--

LOCK TABLES `wpj7_mainwp_wp` WRITE;
/*!40000 ALTER TABLE `wpj7_mainwp_wp` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpj7_mainwp_wp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_mainwp_wp_actions`
--

DROP TABLE IF EXISTS `wpj7_mainwp_wp_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_mainwp_wp_actions` (
  `action_id` int(11) NOT NULL AUTO_INCREMENT,
  `wpid` int(11) NOT NULL,
  `object_id` varchar(20) NOT NULL,
  `context` varchar(20) NOT NULL,
  `action` varchar(100) NOT NULL,
  `action_user` text NOT NULL DEFAULT '',
  `created` int(11) NOT NULL DEFAULT 0,
  `meta_data` text NOT NULL DEFAULT '',
  `dismiss` tinyint(1) NOT NULL DEFAULT 0,
  `summary` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`action_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_mainwp_wp_actions`
--

LOCK TABLES `wpj7_mainwp_wp_actions` WRITE;
/*!40000 ALTER TABLE `wpj7_mainwp_wp_actions` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpj7_mainwp_wp_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_mainwp_wp_backup`
--

DROP TABLE IF EXISTS `wpj7_mainwp_wp_backup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_mainwp_wp_backup` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `userid` int(11) NOT NULL,
  `name` text NOT NULL,
  `schedule` text NOT NULL,
  `type` text NOT NULL,
  `exclude` text NOT NULL,
  `sites` text NOT NULL,
  `groups` text NOT NULL,
  `last` int(11) NOT NULL,
  `last_run` int(11) NOT NULL,
  `lastStartNotificationSent` int(11) NOT NULL DEFAULT 0,
  `last_run_manually` int(11) NOT NULL,
  `completed_sites` text NOT NULL,
  `completed` int(11) NOT NULL,
  `backup_errors` text NOT NULL,
  `subfolder` text NOT NULL,
  `filename` text NOT NULL,
  `paused` tinyint(1) NOT NULL,
  `template` tinyint(1) DEFAULT 0,
  `excludebackup` tinyint(1) DEFAULT 0,
  `excludecache` tinyint(1) DEFAULT 0,
  `excludenonwp` tinyint(1) DEFAULT 0,
  `excludezip` tinyint(1) DEFAULT 0,
  `archiveFormat` text NOT NULL,
  `loadFilesBeforeZip` tinyint(1) NOT NULL DEFAULT 1,
  `maximumFileDescriptorsOverride` tinyint(1) NOT NULL DEFAULT 0,
  `maximumFileDescriptorsAuto` tinyint(1) NOT NULL DEFAULT 1,
  `maximumFileDescriptors` int(11) NOT NULL DEFAULT 150,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_mainwp_wp_backup`
--

LOCK TABLES `wpj7_mainwp_wp_backup` WRITE;
/*!40000 ALTER TABLE `wpj7_mainwp_wp_backup` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpj7_mainwp_wp_backup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_mainwp_wp_backup_progress`
--

DROP TABLE IF EXISTS `wpj7_mainwp_wp_backup_progress`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_mainwp_wp_backup_progress` (
  `task_id` int(11) NOT NULL,
  `wp_id` int(11) NOT NULL,
  `dtsFetched` int(11) NOT NULL DEFAULT 0,
  `fetchResult` text NOT NULL DEFAULT '',
  `downloadedDB` text NOT NULL DEFAULT '',
  `downloadedFULL` text NOT NULL DEFAULT '',
  `downloadedDBComplete` tinyint(1) NOT NULL DEFAULT 0,
  `downloadedFULLComplete` tinyint(1) NOT NULL DEFAULT 0,
  `removedFiles` tinyint(1) NOT NULL DEFAULT 0,
  `attempts` int(11) NOT NULL DEFAULT 0,
  `last_error` text NOT NULL DEFAULT '',
  `pid` int(11) NOT NULL DEFAULT 0,
  UNIQUE KEY `task_id` (`task_id`),
  KEY `idx_task_id` (`task_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_mainwp_wp_backup_progress`
--

LOCK TABLES `wpj7_mainwp_wp_backup_progress` WRITE;
/*!40000 ALTER TABLE `wpj7_mainwp_wp_backup_progress` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpj7_mainwp_wp_backup_progress` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_mainwp_wp_clients`
--

DROP TABLE IF EXISTS `wpj7_mainwp_wp_clients`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_mainwp_wp_clients` (
  `client_id` int(11) NOT NULL AUTO_INCREMENT,
  `image` varchar(255) NOT NULL DEFAULT '',
  `name` varchar(255) NOT NULL,
  `address_1` varchar(255) NOT NULL DEFAULT '',
  `address_2` varchar(255) NOT NULL DEFAULT '',
  `city` varchar(100) NOT NULL DEFAULT '',
  `zip` varchar(32) NOT NULL DEFAULT '',
  `state` varchar(200) NOT NULL DEFAULT '',
  `country` varchar(200) NOT NULL DEFAULT '',
  `note` longtext NOT NULL DEFAULT '',
  `client_email` varchar(191) NOT NULL,
  `client_phone` varchar(100) NOT NULL DEFAULT '',
  `client_facebook` varchar(255) NOT NULL DEFAULT '',
  `client_twitter` varchar(255) NOT NULL DEFAULT '',
  `client_instagram` varchar(255) NOT NULL DEFAULT '',
  `client_linkedin` varchar(255) NOT NULL DEFAULT '',
  `created` int(11) NOT NULL DEFAULT 0,
  `suspended` tinyint(1) NOT NULL DEFAULT 0,
  `primary_contact_id` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`client_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_mainwp_wp_clients`
--

LOCK TABLES `wpj7_mainwp_wp_clients` WRITE;
/*!40000 ALTER TABLE `wpj7_mainwp_wp_clients` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpj7_mainwp_wp_clients` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_mainwp_wp_clients_contacts`
--

DROP TABLE IF EXISTS `wpj7_mainwp_wp_clients_contacts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_mainwp_wp_clients_contacts` (
  `contact_id` int(11) NOT NULL AUTO_INCREMENT,
  `contact_client_id` int(11) NOT NULL,
  `contact_email` varchar(191) NOT NULL,
  `contact_image` varchar(255) NOT NULL DEFAULT '',
  `contact_name` varchar(255) NOT NULL,
  `contact_phone` varchar(100) NOT NULL DEFAULT '',
  `contact_role` varchar(255) NOT NULL DEFAULT '',
  `facebook` varchar(255) NOT NULL DEFAULT '',
  `twitter` varchar(255) NOT NULL DEFAULT '',
  `instagram` varchar(255) NOT NULL DEFAULT '',
  `linkedin` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`contact_id`),
  UNIQUE KEY `contact_email` (`contact_email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_mainwp_wp_clients_contacts`
--

LOCK TABLES `wpj7_mainwp_wp_clients_contacts` WRITE;
/*!40000 ALTER TABLE `wpj7_mainwp_wp_clients_contacts` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpj7_mainwp_wp_clients_contacts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_mainwp_wp_clients_field_values`
--

DROP TABLE IF EXISTS `wpj7_mainwp_wp_clients_field_values`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_mainwp_wp_clients_field_values` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT,
  `field_id` int(11) NOT NULL,
  `field_value` longtext NOT NULL DEFAULT '',
  `value_client_id` int(11) NOT NULL,
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `value_client_id_field_id` (`value_client_id`,`field_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_mainwp_wp_clients_field_values`
--

LOCK TABLES `wpj7_mainwp_wp_clients_field_values` WRITE;
/*!40000 ALTER TABLE `wpj7_mainwp_wp_clients_field_values` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpj7_mainwp_wp_clients_field_values` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_mainwp_wp_clients_fields`
--

DROP TABLE IF EXISTS `wpj7_mainwp_wp_clients_fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_mainwp_wp_clients_fields` (
  `field_id` int(11) NOT NULL AUTO_INCREMENT,
  `field_name` varchar(191) NOT NULL DEFAULT '',
  `field_desc` varchar(255) NOT NULL DEFAULT '',
  `client_id` int(11) NOT NULL,
  PRIMARY KEY (`field_id`),
  UNIQUE KEY `client_id_field_name` (`client_id`,`field_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_mainwp_wp_clients_fields`
--

LOCK TABLES `wpj7_mainwp_wp_clients_fields` WRITE;
/*!40000 ALTER TABLE `wpj7_mainwp_wp_clients_fields` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpj7_mainwp_wp_clients_fields` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_mainwp_wp_group`
--

DROP TABLE IF EXISTS `wpj7_mainwp_wp_group`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_mainwp_wp_group` (
  `wp_group_id` int(11) NOT NULL AUTO_INCREMENT,
  `wpid` int(11) NOT NULL,
  `groupid` int(11) NOT NULL,
  PRIMARY KEY (`wp_group_id`),
  KEY `idx_wpid` (`wpid`),
  KEY `idx_groupid` (`groupid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_mainwp_wp_group`
--

LOCK TABLES `wpj7_mainwp_wp_group` WRITE;
/*!40000 ALTER TABLE `wpj7_mainwp_wp_group` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpj7_mainwp_wp_group` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_mainwp_wp_logs`
--

DROP TABLE IF EXISTS `wpj7_mainwp_wp_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_mainwp_wp_logs` (
  `log_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `site_id` bigint(20) unsigned DEFAULT NULL,
  `item` text NOT NULL,
  `user_id` int(11) unsigned NOT NULL DEFAULT 0,
  `action` varchar(100) NOT NULL,
  `context` varchar(100) NOT NULL,
  `connector` varchar(100) NOT NULL,
  `state` tinyint(1) unsigned DEFAULT NULL,
  `created` int(11) NOT NULL DEFAULT 0,
  `duration` float(11,4) NOT NULL DEFAULT 0.0000,
  PRIMARY KEY (`log_id`),
  KEY `site_id` (`site_id`),
  KEY `user_id` (`user_id`),
  KEY `created` (`created`),
  KEY `duration` (`duration`),
  KEY `context` (`context`),
  KEY `connector` (`connector`),
  KEY `action` (`action`),
  KEY `state` (`state`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_mainwp_wp_logs`
--

LOCK TABLES `wpj7_mainwp_wp_logs` WRITE;
/*!40000 ALTER TABLE `wpj7_mainwp_wp_logs` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpj7_mainwp_wp_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_mainwp_wp_logs_meta`
--

DROP TABLE IF EXISTS `wpj7_mainwp_wp_logs_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_mainwp_wp_logs_meta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `meta_log_id` bigint(20) unsigned NOT NULL,
  `meta_key` varchar(200) NOT NULL,
  `meta_value` mediumtext NOT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `meta_log_id` (`meta_log_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_mainwp_wp_logs_meta`
--

LOCK TABLES `wpj7_mainwp_wp_logs_meta` WRITE;
/*!40000 ALTER TABLE `wpj7_mainwp_wp_logs_meta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpj7_mainwp_wp_logs_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_mainwp_wp_options`
--

DROP TABLE IF EXISTS `wpj7_mainwp_wp_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_mainwp_wp_options` (
  `opt_id` int(11) NOT NULL AUTO_INCREMENT,
  `wpid` int(11) NOT NULL,
  `name` text NOT NULL DEFAULT '',
  `value` longtext NOT NULL DEFAULT '',
  PRIMARY KEY (`opt_id`),
  KEY `idx_wpid` (`wpid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_mainwp_wp_options`
--

LOCK TABLES `wpj7_mainwp_wp_options` WRITE;
/*!40000 ALTER TABLE `wpj7_mainwp_wp_options` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpj7_mainwp_wp_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_mainwp_wp_settings_backup`
--

DROP TABLE IF EXISTS `wpj7_mainwp_wp_settings_backup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_mainwp_wp_settings_backup` (
  `set_id` int(11) NOT NULL AUTO_INCREMENT,
  `wpid` int(11) NOT NULL,
  `archiveFormat` text NOT NULL,
  PRIMARY KEY (`set_id`),
  KEY `idx_wpid` (`wpid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_mainwp_wp_settings_backup`
--

LOCK TABLES `wpj7_mainwp_wp_settings_backup` WRITE;
/*!40000 ALTER TABLE `wpj7_mainwp_wp_settings_backup` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpj7_mainwp_wp_settings_backup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_mainwp_wp_status`
--

DROP TABLE IF EXISTS `wpj7_mainwp_wp_status`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_mainwp_wp_status` (
  `statusid` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `wpid` int(11) NOT NULL,
  `http_code` smallint(6) NOT NULL DEFAULT 0,
  `status` tinyint(1) NOT NULL DEFAULT 0,
  `event_timestamp` int(11) NOT NULL,
  `duration` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`statusid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_mainwp_wp_status`
--

LOCK TABLES `wpj7_mainwp_wp_status` WRITE;
/*!40000 ALTER TABLE `wpj7_mainwp_wp_status` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpj7_mainwp_wp_status` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_mainwp_wp_sync`
--

DROP TABLE IF EXISTS `wpj7_mainwp_wp_sync`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_mainwp_wp_sync` (
  `sync_id` int(11) NOT NULL AUTO_INCREMENT,
  `wpid` int(11) NOT NULL,
  `version` text NOT NULL DEFAULT '',
  `sync_errors` longtext NOT NULL DEFAULT '',
  `uptodate` longtext NOT NULL DEFAULT '',
  `dtsAutomaticSync` int(11) NOT NULL DEFAULT 0,
  `dtsAutomaticSyncStart` int(11) NOT NULL DEFAULT 0,
  `dtsSync` int(11) NOT NULL DEFAULT 0,
  `dtsSyncStart` int(11) NOT NULL DEFAULT 0,
  `totalsize` int(11) NOT NULL DEFAULT 0,
  `dbsize` int(11) NOT NULL DEFAULT 0,
  `extauth` text NOT NULL DEFAULT '',
  `last_post_gmt` int(11) NOT NULL DEFAULT 0,
  `health_value` int(11) NOT NULL DEFAULT 0,
  `health_status` tinyint(1) NOT NULL DEFAULT 0,
  `health_site_noticed` tinyint(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`sync_id`),
  KEY `idx_wpid` (`wpid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_mainwp_wp_sync`
--

LOCK TABLES `wpj7_mainwp_wp_sync` WRITE;
/*!40000 ALTER TABLE `wpj7_mainwp_wp_sync` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpj7_mainwp_wp_sync` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_mo_campaign_log`
--

DROP TABLE IF EXISTS `wpj7_mo_campaign_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_mo_campaign_log` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `email_campaign_id` bigint(20) unsigned NOT NULL,
  `title` text NOT NULL,
  `content_html` longtext NOT NULL,
  `content_text` longtext NOT NULL,
  `status` varchar(20) NOT NULL DEFAULT 'draft',
  `status_time` datetime DEFAULT NULL,
  `note` text DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_mo_campaign_log`
--

LOCK TABLES `wpj7_mo_campaign_log` WRITE;
/*!40000 ALTER TABLE `wpj7_mo_campaign_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpj7_mo_campaign_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_mo_campaign_logmeta`
--

DROP TABLE IF EXISTS `wpj7_mo_campaign_logmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_mo_campaign_logmeta` (
  `meta_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `campaign_log_id` bigint(20) NOT NULL,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_mo_campaign_logmeta`
--

LOCK TABLES `wpj7_mo_campaign_logmeta` WRITE;
/*!40000 ALTER TABLE `wpj7_mo_campaign_logmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpj7_mo_campaign_logmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_mo_conversions`
--

DROP TABLE IF EXISTS `wpj7_mo_conversions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_mo_conversions` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `optin_id` int(8) unsigned NOT NULL DEFAULT 0,
  `optin_type` varchar(50) NOT NULL DEFAULT '',
  `name` varchar(128) DEFAULT '',
  `email` varchar(128) NOT NULL DEFAULT '',
  `custom_fields` longtext DEFAULT NULL,
  `user_agent` varchar(150) DEFAULT '',
  `conversion_page` varchar(256) DEFAULT '',
  `referrer` varchar(256) DEFAULT '',
  `date_added` datetime NOT NULL DEFAULT '1000-01-01 00:00:00',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_mo_conversions`
--

LOCK TABLES `wpj7_mo_conversions` WRITE;
/*!40000 ALTER TABLE `wpj7_mo_conversions` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpj7_mo_conversions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_mo_email_campaignmeta`
--

DROP TABLE IF EXISTS `wpj7_mo_email_campaignmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_mo_email_campaignmeta` (
  `meta_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `email_campaign_id` bigint(20) NOT NULL,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_mo_email_campaignmeta`
--

LOCK TABLES `wpj7_mo_email_campaignmeta` WRITE;
/*!40000 ALTER TABLE `wpj7_mo_email_campaignmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpj7_mo_email_campaignmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_mo_email_campaigns`
--

DROP TABLE IF EXISTS `wpj7_mo_email_campaigns`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_mo_email_campaigns` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `name` varchar(200) NOT NULL,
  `campaign_type` varchar(40) NOT NULL,
  `template_class` varchar(50) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_mo_email_campaigns`
--

LOCK TABLES `wpj7_mo_email_campaigns` WRITE;
/*!40000 ALTER TABLE `wpj7_mo_email_campaigns` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpj7_mo_email_campaigns` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_mo_optin_campaignmeta`
--

DROP TABLE IF EXISTS `wpj7_mo_optin_campaignmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_mo_optin_campaignmeta` (
  `meta_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `optin_campaign_id` bigint(20) NOT NULL,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_mo_optin_campaignmeta`
--

LOCK TABLES `wpj7_mo_optin_campaignmeta` WRITE;
/*!40000 ALTER TABLE `wpj7_mo_optin_campaignmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpj7_mo_optin_campaignmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_mo_optin_campaigns`
--

DROP TABLE IF EXISTS `wpj7_mo_optin_campaigns`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_mo_optin_campaigns` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `name` varchar(50) NOT NULL,
  `uuid` char(10) NOT NULL,
  `optin_class` varchar(50) NOT NULL,
  `optin_type` varchar(50) NOT NULL,
  `activated` char(6) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `name` (`name`),
  UNIQUE KEY `uuid` (`uuid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_mo_optin_campaigns`
--

LOCK TABLES `wpj7_mo_optin_campaigns` WRITE;
/*!40000 ALTER TABLE `wpj7_mo_optin_campaigns` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpj7_mo_optin_campaigns` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_options`
--

DROP TABLE IF EXISTS `wpj7_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_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=303430 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_options`
--

LOCK TABLES `wpj7_options` WRITE;
/*!40000 ALTER TABLE `wpj7_options` DISABLE KEYS */;
INSERT INTO `wpj7_options` VALUES (1,'siteurl','https://www.nl.ecom-expansion.com','yes'),(2,'home','https://www.nl.ecom-expansion.com','yes'),(3,'blogname','Teng Shop','yes'),(4,'blogdescription','','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','kotaro21.mail@gmail.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','55','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','d/m/Y','yes'),(24,'time_format','H:i','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%postname%/','yes'),(29,'rewrite_rules','a:265:{s:24:\"^wc-auth/v([1]{1})/(.*)?\";s:63:\"index.php?wc-auth-version=$matches[1]&wc-auth-route=$matches[2]\";s:22:\"^wc-api/v([1-3]{1})/?$\";s:51:\"index.php?wc-api-version=$matches[1]&wc-api-route=/\";s:24:\"^wc-api/v([1-3]{1})(.*)?\";s:61:\"index.php?wc-api-version=$matches[1]&wc-api-route=$matches[2]\";s:19:\"sitemap_index\\.xml$\";s:19:\"index.php?sitemap=1\";s:31:\"([^/]+?)-sitemap([0-9]+)?\\.xml$\";s:51:\"index.php?sitemap=$matches[1]&sitemap_n=$matches[2]\";s:24:\"([a-z]+)?-?sitemap\\.xsl$\";s:25:\"index.php?xsl=$matches[1]\";s:17:\"alle-producten/?$\";s:27:\"index.php?post_type=product\";s:47:\"alle-producten/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:42:\"alle-producten/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:34:\"alle-producten/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=product&paged=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s: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:95:\"woocommerce_gpf/([^/]+)/gpf_start/([0-9]{1,})/gpf_limit/([0-9]{1,})/gpf_categories/(\\d+(,\\d+)*)\";s:108:\"index.php?woocommerce_gpf=$matches[1]&gpf_start=$matches[2]&gpf_limit=$matches[3]&gpf_categories=$matches[4]\";s:67:\"woocommerce_gpf/([^/]+)/gpf_start/([0-9]{1,})/gpf_limit/([0-9]{1,})\";s:81:\"index.php?woocommerce_gpf=$matches[1]&gpf_start=$matches[2]&gpf_limit=$matches[3]\";s:45:\"woocommerce_gpf/([^/]+)/gpf_start/([0-9]{1,})\";s:59:\"index.php?woocommerce_gpf=$matches[1]&gpf_start=$matches[2]\";s:51:\"woocommerce_gpf/([^/]+)/gpf_categories/(\\d+(,\\d+)*)\";s:64:\"index.php?woocommerce_gpf=$matches[1]&gpf_categories=$matches[2]\";s:23:\"woocommerce_gpf/([^/]+)\";s:37:\"index.php?woocommerce_gpf=$matches[1]\";s:61:\"^\\.well-known\\/apple-developer-merchantid-domain-association$\";s:57:\"index.php?apple-developer-merchantid-domain-association=1\";s:16:\"featured_item/?$\";s:33:\"index.php?post_type=featured_item\";s:46:\"featured_item/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_type=featured_item&feed=$matches[1]\";s:41:\"featured_item/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_type=featured_item&feed=$matches[1]\";s:33:\"featured_item/page/([0-9]{1,})/?$\";s:51:\"index.php?post_type=featured_item&paged=$matches[1]\";s:32:\"blocks/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"blocks/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"blocks/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"blocks/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"blocks/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"blocks/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:21:\"blocks/(.+?)/embed/?$\";s:39:\"index.php?blocks=$matches[1]&embed=true\";s:25:\"blocks/(.+?)/trackback/?$\";s:33:\"index.php?blocks=$matches[1]&tb=1\";s:33:\"blocks/(.+?)/page/?([0-9]{1,})/?$\";s:46:\"index.php?blocks=$matches[1]&paged=$matches[2]\";s:40:\"blocks/(.+?)/comment-page-([0-9]{1,})/?$\";s:46:\"index.php?blocks=$matches[1]&cpage=$matches[2]\";s:30:\"blocks/(.+?)/wc-api(/(.*))?/?$\";s:47:\"index.php?blocks=$matches[1]&wc-api=$matches[3]\";s:36:\"blocks/.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:47:\"blocks/.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:29:\"blocks/(.+?)(?:/([0-9]+))?/?$\";s:45:\"index.php?blocks=$matches[1]&page=$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:32:\"category/(.+?)/wc-api(/(.*))?/?$\";s:54:\"index.php?category_name=$matches[1]&wc-api=$matches[3]\";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:29:\"tag/([^/]+)/wc-api(/(.*))?/?$\";s:44:\"index.php?tag=$matches[1]&wc-api=$matches[3]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:36:\"seedprod/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"seedprod/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"seedprod/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"seedprod/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"seedprod/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"seedprod/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:25:\"seedprod/([^/]+)/embed/?$\";s:41:\"index.php?seedprod=$matches[1]&embed=true\";s:29:\"seedprod/([^/]+)/trackback/?$\";s:35:\"index.php?seedprod=$matches[1]&tb=1\";s:37:\"seedprod/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?seedprod=$matches[1]&paged=$matches[2]\";s:44:\"seedprod/([^/]+)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?seedprod=$matches[1]&cpage=$matches[2]\";s:34:\"seedprod/([^/]+)/wc-api(/(.*))?/?$\";s:49:\"index.php?seedprod=$matches[1]&wc-api=$matches[3]\";s:40:\"seedprod/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:51:\"seedprod/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:33:\"seedprod/([^/]+)(?:/([0-9]+))?/?$\";s:47:\"index.php?seedprod=$matches[1]&page=$matches[2]\";s:25:\"seedprod/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:35:\"seedprod/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:55:\"seedprod/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"seedprod/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"seedprod/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:31:\"seedprod/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:57:\"block_categories/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?block_categories=$matches[1]&feed=$matches[2]\";s:52:\"block_categories/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?block_categories=$matches[1]&feed=$matches[2]\";s:33:\"block_categories/([^/]+)/embed/?$\";s:49:\"index.php?block_categories=$matches[1]&embed=true\";s:45:\"block_categories/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?block_categories=$matches[1]&paged=$matches[2]\";s:27:\"block_categories/([^/]+)/?$\";s:38:\"index.php?block_categories=$matches[1]\";s:50:\"collections/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:45:\"collections/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:26:\"collections/(.+?)/embed/?$\";s:44:\"index.php?product_cat=$matches[1]&embed=true\";s:38:\"collections/(.+?)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_cat=$matches[1]&paged=$matches[2]\";s:20:\"collections/(.+?)/?$\";s:33:\"index.php?product_cat=$matches[1]\";s:58:\"etiquette-produit/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:53:\"etiquette-produit/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:34:\"etiquette-produit/([^/]+)/embed/?$\";s:44:\"index.php?product_tag=$matches[1]&embed=true\";s:46:\"etiquette-produit/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_tag=$matches[1]&paged=$matches[2]\";s:28:\"etiquette-produit/([^/]+)/?$\";s:33:\"index.php?product_tag=$matches[1]\";s:35:\"product/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"product/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"product/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"product/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"product/([^/]+)/embed/?$\";s:40:\"index.php?product=$matches[1]&embed=true\";s:28:\"product/([^/]+)/trackback/?$\";s:34:\"index.php?product=$matches[1]&tb=1\";s:48:\"product/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:43:\"product/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:36:\"product/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&paged=$matches[2]\";s:43:\"product/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&cpage=$matches[2]\";s:33:\"product/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?product=$matches[1]&wc-api=$matches[3]\";s:39:\"product/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:50:\"product/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:32:\"product/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?product=$matches[1]&page=$matches[2]\";s:24:\"product/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"product/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"product/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"product/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:43:\"pscw-size-chart/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:53:\"pscw-size-chart/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:73:\"pscw-size-chart/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"pscw-size-chart/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"pscw-size-chart/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:49:\"pscw-size-chart/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:32:\"pscw-size-chart/([^/]+)/embed/?$\";s:48:\"index.php?pscw-size-chart=$matches[1]&embed=true\";s:36:\"pscw-size-chart/([^/]+)/trackback/?$\";s:42:\"index.php?pscw-size-chart=$matches[1]&tb=1\";s:44:\"pscw-size-chart/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?pscw-size-chart=$matches[1]&paged=$matches[2]\";s:51:\"pscw-size-chart/([^/]+)/comment-page-([0-9]{1,})/?$\";s:55:\"index.php?pscw-size-chart=$matches[1]&cpage=$matches[2]\";s:41:\"pscw-size-chart/([^/]+)/wc-api(/(.*))?/?$\";s:56:\"index.php?pscw-size-chart=$matches[1]&wc-api=$matches[3]\";s:47:\"pscw-size-chart/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:58:\"pscw-size-chart/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:40:\"pscw-size-chart/([^/]+)(?:/([0-9]+))?/?$\";s:54:\"index.php?pscw-size-chart=$matches[1]&page=$matches[2]\";s:32:\"pscw-size-chart/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"pscw-size-chart/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"pscw-size-chart/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"pscw-size-chart/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"pscw-size-chart/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"pscw-size-chart/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:41:\"featured_item/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:51:\"featured_item/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:71:\"featured_item/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"featured_item/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"featured_item/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:47:\"featured_item/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:30:\"featured_item/([^/]+)/embed/?$\";s:46:\"index.php?featured_item=$matches[1]&embed=true\";s:34:\"featured_item/([^/]+)/trackback/?$\";s:40:\"index.php?featured_item=$matches[1]&tb=1\";s:54:\"featured_item/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?featured_item=$matches[1]&feed=$matches[2]\";s:49:\"featured_item/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?featured_item=$matches[1]&feed=$matches[2]\";s:42:\"featured_item/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?featured_item=$matches[1]&paged=$matches[2]\";s:49:\"featured_item/([^/]+)/comment-page-([0-9]{1,})/?$\";s:53:\"index.php?featured_item=$matches[1]&cpage=$matches[2]\";s:39:\"featured_item/([^/]+)/wc-api(/(.*))?/?$\";s:54:\"index.php?featured_item=$matches[1]&wc-api=$matches[3]\";s:45:\"featured_item/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:56:\"featured_item/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:38:\"featured_item/([^/]+)(?:/([0-9]+))?/?$\";s:52:\"index.php?featured_item=$matches[1]&page=$matches[2]\";s:30:\"featured_item/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:40:\"featured_item/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:60:\"featured_item/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"featured_item/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"featured_item/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:36:\"featured_item/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:63:\"featured_item_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:61:\"index.php?featured_item_category=$matches[1]&feed=$matches[2]\";s:58:\"featured_item_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:61:\"index.php?featured_item_category=$matches[1]&feed=$matches[2]\";s:39:\"featured_item_category/([^/]+)/embed/?$\";s:55:\"index.php?featured_item_category=$matches[1]&embed=true\";s:51:\"featured_item_category/([^/]+)/page/?([0-9]{1,})/?$\";s:62:\"index.php?featured_item_category=$matches[1]&paged=$matches[2]\";s:33:\"featured_item_category/([^/]+)/?$\";s:44:\"index.php?featured_item_category=$matches[1]\";s:58:\"featured_item_tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:56:\"index.php?featured_item_tag=$matches[1]&feed=$matches[2]\";s:53:\"featured_item_tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:56:\"index.php?featured_item_tag=$matches[1]&feed=$matches[2]\";s:34:\"featured_item_tag/([^/]+)/embed/?$\";s:50:\"index.php?featured_item_tag=$matches[1]&embed=true\";s:46:\"featured_item_tag/([^/]+)/page/?([0-9]{1,})/?$\";s:57:\"index.php?featured_item_tag=$matches[1]&paged=$matches[2]\";s:28:\"featured_item_tag/([^/]+)/?$\";s:39:\"index.php?featured_item_tag=$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:40:\"index.php?&page_id=263&cpage=$matches[1]\";s:17:\"wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";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:26:\"comments/wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";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:29:\"search/(.+)/wc-api(/(.*))?/?$\";s:42:\"index.php?s=$matches[1]&wc-api=$matches[3]\";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:32:\"author/([^/]+)/wc-api(/(.*))?/?$\";s:52:\"index.php?author_name=$matches[1]&wc-api=$matches[3]\";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:54:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&wc-api=$matches[5]\";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:41:\"([0-9]{4})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:66:\"index.php?year=$matches[1]&monthnum=$matches[2]&wc-api=$matches[4]\";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:28:\"([0-9]{4})/wc-api(/(.*))?/?$\";s:45:\"index.php?year=$matches[1]&wc-api=$matches[3]\";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:25:\"(.?.+?)/wc-api(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&wc-api=$matches[3]\";s:28:\"(.?.+?)/order-pay(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&order-pay=$matches[3]\";s:33:\"(.?.+?)/order-received(/(.*))?/?$\";s:57:\"index.php?pagename=$matches[1]&order-received=$matches[3]\";s:25:\"(.?.+?)/orders(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&orders=$matches[3]\";s:29:\"(.?.+?)/view-order(/(.*))?/?$\";s:53:\"index.php?pagename=$matches[1]&view-order=$matches[3]\";s:28:\"(.?.+?)/downloads(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&downloads=$matches[3]\";s:31:\"(.?.+?)/edit-account(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-account=$matches[3]\";s:31:\"(.?.+?)/edit-address(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-address=$matches[3]\";s:34:\"(.?.+?)/payment-methods(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&payment-methods=$matches[3]\";s:32:\"(.?.+?)/lost-password(/(.*))?/?$\";s:56:\"index.php?pagename=$matches[1]&lost-password=$matches[3]\";s:34:\"(.?.+?)/customer-logout(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&customer-logout=$matches[3]\";s:37:\"(.?.+?)/add-payment-method(/(.*))?/?$\";s:61:\"index.php?pagename=$matches[1]&add-payment-method=$matches[3]\";s:40:\"(.?.+?)/delete-payment-method(/(.*))?/?$\";s:64:\"index.php?pagename=$matches[1]&delete-payment-method=$matches[3]\";s:45:\"(.?.+?)/set-default-payment-method(/(.*))?/?$\";s:69:\"index.php?pagename=$matches[1]&set-default-payment-method=$matches[3]\";s:31:\".?.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\".?.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";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:25:\"([^/]+)/wc-api(/(.*))?/?$\";s:45:\"index.php?name=$matches[1]&wc-api=$matches[3]\";s:31:\"[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\"[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:44:{i:0;s:43:\"shortcodes-ultimate/shortcodes-ultimate.php\";i:1;s:30:\"advanced-custom-fields/acf.php\";i:2;s:19:\"ast-pro/ast-pro.php\";i:3;s:52:\"bulk-edit-categories-tags-premium/taxonomy-terms.php\";i:4;s:33:\"classic-editor/classic-editor.php\";i:5;s:31:\"code-snippets/code-snippets.php\";i:6;s:27:\"coming-soon/coming-soon.php\";i:7;s:36:\"contact-form-7/wp-contact-form-7.php\";i:8;s:81:\"duracelltomi-google-tag-manager/duracelltomi-google-tag-manager-for-wordpress.php\";i:9;s:35:\"google-site-kit/google-site-kit.php\";i:10;s:63:\"gpt3-ai-content-generator-premium/gpt3-ai-content-generator.php\";i:11;s:47:\"jwt-authentication-for-wp-rest-api/jwt-auth.php\";i:12;s:23:\"loco-translate/loco.php\";i:13;s:23:\"mailoptin/mailoptin.php\";i:14;s:29:\"mainwp-child/mainwp-child.php\";i:15;s:49:\"media-file-renamer-pro/media-file-renamer-pro.php\";i:16;s:19:\"members/members.php\";i:17;s:29:\"o2s-wp-tiger/o2s-wp-tiger.php\";i:18;s:57:\"product-size-chart-for-woo/product-size-chart-for-woo.php\";i:19;s:27:\"redirection/redirection.php\";i:20;s:30:\"seo-by-rank-math/rank-math.php\";i:21;s:27:\"svg-support/svg-support.php\";i:22;s:84:\"wc-abandoned-carts-by-small-fish-analytics/class-sfa-woocommerce-abandoned-carts.php\";i:23;s:53:\"webp-converter-for-media/webp-converter-for-media.php\";i:24;s:63:\"woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php\";i:25;s:45:\"woo-products-bulk-editor-premium/products.php\";i:26;s:49:\"woo-variation-swatches/woo-variation-swatches.php\";i:27;s:73:\"woocommerce-advanced-free-shipping/woocommerce-advanced-free-shipping.php\";i:28;s:57:\"woocommerce-gateway-stripe/woocommerce-gateway-stripe.php\";i:29;s:59:\"woocommerce-paypal-payments/woocommerce-paypal-payments.php\";i:30;s:80:\"woocommerce-pdf-invoices-packing-slips/woocommerce-pdf-invoices-packingslips.php\";i:31;s:45:\"woocommerce-product-feeds/woocommerce-gpf.php\";i:32;s:27:\"woocommerce/woocommerce.php\";i:33;s:23:\"wordfence/wordfence.php\";i:34;s:39:\"wp-all-export-pro/wp-all-export-pro.php\";i:35;s:39:\"wp-all-import-pro/wp-all-import-pro.php\";i:36;s:35:\"wp-mail-logging/wp-mail-logging.php\";i:37;s:23:\"wp-rocket/wp-rocket.php\";i:38;s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";i:39;s:39:\"wpae-acf-add-on/wpae-acf-add-on-pro.php\";i:40;s:51:\"wpae-woocommerce-add-on/wpae-woocommerce-add-on.php\";i:41;s:35:\"wpai-acf-add-on/wpai-acf-add-on.php\";i:42;s:51:\"wpai-woocommerce-add-on/wpai-woocommerce-add-on.php\";i:43;s:47:\"wpvivid-backuprestore/wpvivid-backuprestore.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','','yes'),(38,'default_email_category','55','yes'),(39,'recently_edited','a:5:{i:0;s:82:\"/home/cach0166/nl.ecom-expansion.com/wp-content/themes/flatsome-child/custom-js.js\";i:1;s:83:\"/home/cach0166/nl.ecom-expansion.com/wp-content/themes/flatsome-child/functions.php\";i:2;s:79:\"/home/cach0166/nl.ecom-expansion.com/wp-content/themes/flatsome-child/style.css\";i:3;s:77:\"/home/cach0166/nl.ecom-expansion.com/wp-content/themes/flatsome/functions.php\";i:4;s:73:\"/home/cach0166/nl.ecom-expansion.com/wp-content/themes/flatsome/style.css\";}','no'),(40,'template','flatsome','yes'),(41,'stylesheet','flatsome-child','yes'),(42,'comment_registration','0','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','administrator','yes'),(46,'db_version','56657','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(49,'blog_public','1','yes'),(50,'default_link_category','0','yes'),(51,'show_on_front','page','yes'),(52,'tag_base','','yes'),(53,'show_avatars','1','yes'),(54,'avatar_rating','G','yes'),(56,'thumbnail_size_w','150','yes'),(57,'thumbnail_size_h','150','yes'),(58,'thumbnail_crop','1','yes'),(59,'medium_size_w','300','yes'),(60,'medium_size_h','300','yes'),(61,'avatar_default','mystery','yes'),(62,'large_size_w','1024','yes'),(63,'large_size_h','1024','yes'),(64,'image_default_link_type','none','yes'),(65,'image_default_size','','yes'),(66,'image_default_align','','yes'),(67,'close_comments_for_old_posts','0','yes'),(68,'close_comments_days_old','14','yes'),(69,'thread_comments','1','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','0','yes'),(72,'comments_per_page','50','yes'),(73,'default_comments_page','newest','yes'),(74,'comment_order','asc','yes'),(75,'sticky_posts','a:0:{}','yes'),(76,'widget_categories','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(77,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(78,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(79,'uninstall_plugins','a:9:{s:27:\"redirection/redirection.php\";a:2:{i:0;s:17:\"Redirection_Admin\";i:1;s:16:\"plugin_uninstall\";}s:20:\"worker/functions.php\";s:13:\"mwp_uninstall\";s:40:\"woo-product-feed-pro/woocommerce-sea.php\";s:21:\"uninstall_woosea_feed\";s:83:\"home/customer/www/teng-shop.com/public_html/wp-content/plugins/worker/functions.php\";s:13:\"mwp_uninstall\";s:86:\"home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/functions.php\";s:13:\"mwp_uninstall\";s:27:\"perfmatters/perfmatters.php\";s:21:\"perfmatters_uninstall\";s:53:\"webp-converter-for-media/webp-converter-for-media.php\";a:2:{i:0;s:37:\"WebpConverter\\Plugin\\UninstallHandler\";i:1;s:22:\"load_uninstall_actions\";}s:63:\"gpt3-ai-content-generator-premium/gpt3-ai-content-generator.php\";s:33:\"uninstall_wp_ai_content_generator\";s:35:\"litespeed-cache/litespeed-cache.php\";s:47:\"LiteSpeed\\Activation::uninstall_litespeed_cache\";}','no'),(80,'timezone_string','Europe/Amsterdam','yes'),(81,'page_for_posts','155','yes'),(82,'page_on_front','263','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','9747','yes'),(87,'medium_large_size_w','768','yes'),(88,'medium_large_size_h','0','yes'),(89,'wp_page_for_privacy_policy','3','yes'),(90,'show_comments_cookies_opt_in','1','yes'),(91,'admin_email_lifespan','1719690924','yes'),(92,'disallowed_keys','','no'),(93,'comment_previously_approved','1','yes'),(94,'auto_plugin_theme_update_emails','a:0:{}','no'),(95,'auto_update_core_dev','enabled','yes'),(96,'auto_update_core_minor','enabled','yes'),(97,'auto_update_core_major','enabled','yes'),(98,'wp_force_deactivated_plugins','a:0:{}','yes'),(99,'initial_db_version','53496','yes'),(100,'wpj7_user_roles','a:8:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:241:{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:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:16:\"restrict_content\";b:1;s:10:\"list_roles\";b:1;s:12:\"create_roles\";b:1;s:12:\"delete_roles\";b:1;s:10:\"edit_roles\";b:1;s:23:\"rank_math_edit_htaccess\";b:1;s:16:\"rank_math_titles\";b:1;s:17:\"rank_math_general\";b:1;s:17:\"rank_math_sitemap\";b:1;s:21:\"rank_math_404_monitor\";b:1;s:22:\"rank_math_link_builder\";b:1;s:22:\"rank_math_redirections\";b:1;s:22:\"rank_math_role_manager\";b:1;s:19:\"rank_math_analytics\";b:1;s:23:\"rank_math_site_analysis\";b:1;s:25:\"rank_math_onpage_analysis\";b:1;s:24:\"rank_math_onpage_general\";b:1;s:25:\"rank_math_onpage_advanced\";b:1;s:24:\"rank_math_onpage_snippet\";b:1;s:23:\"rank_math_onpage_social\";b:1;s:20:\"rank_math_content_ai\";b:1;s:19:\"rank_math_admin_bar\";b:1;s:10:\"loco_admin\";b:1;s:22:\"edit_klaviyo_shop_cart\";b:1;s:22:\"read_klaviyo_shop_cart\";b:1;s:24:\"delete_klaviyo_shop_cart\";b:1;s:23:\"edit_klaviyo_shop_carts\";b:1;s:30:\"edit_others_klaviyo_shop_carts\";b:1;s:26:\"publish_klaviyo_shop_carts\";b:1;s:31:\"read_private_klaviyo_shop_carts\";b:1;s:25:\"delete_klaviyo_shop_carts\";b:1;s:33:\"delete_private_klaviyo_shop_carts\";b:1;s:35:\"delete_published_klaviyo_shop_carts\";b:1;s:32:\"delete_others_klaviyo_shop_carts\";b:1;s:31:\"edit_private_klaviyo_shop_carts\";b:1;s:33:\"edit_published_klaviyo_shop_carts\";b:1;s:30:\"manage_klaviyo_shop_cart_terms\";b:1;s:28:\"edit_klaviyo_shop_cart_terms\";b:1;s:30:\"delete_klaviyo_shop_cart_terms\";b:1;s:30:\"assign_klaviyo_shop_cart_terms\";b:1;s:15:\"wpaicg_settings\";b:1;s:21:\"wpaicg_single_content\";b:1;s:29:\"wpaicg_single_content_express\";b:1;s:28:\"wpaicg_single_content_custom\";b:1;s:32:\"wpaicg_single_content_comparison\";b:1;s:28:\"wpaicg_single_content_speech\";b:1;s:32:\"wpaicg_single_content_playground\";b:1;s:26:\"wpaicg_single_content_logs\";b:1;s:19:\"wpaicg_bulk_content\";b:1;s:24:\"wpaicg_bulk_content_bulk\";b:1;s:26:\"wpaicg_bulk_content_editor\";b:1;s:23:\"wpaicg_bulk_content_csv\";b:1;s:30:\"wpaicg_bulk_content_copy-paste\";b:1;s:33:\"wpaicg_bulk_content_google-sheets\";b:1;s:23:\"wpaicg_bulk_content_rss\";b:1;s:25:\"wpaicg_bulk_content_tweet\";b:1;s:28:\"wpaicg_bulk_content_tracking\";b:1;s:27:\"wpaicg_bulk_content_setting\";b:1;s:14:\"wpaicg_chatgpt\";b:1;s:24:\"wpaicg_chatgpt_shortcode\";b:1;s:21:\"wpaicg_chatgpt_widget\";b:1;s:19:\"wpaicg_chatgpt_bots\";b:1;s:18:\"wpaicg_chatgpt_pdf\";b:1;s:19:\"wpaicg_chatgpt_logs\";b:1;s:23:\"wpaicg_chatgpt_settings\";b:1;s:22:\"wpaicg_image_generator\";b:1;s:28:\"wpaicg_image_generator_dalle\";b:1;s:39:\"wpaicg_image_generator_stable-diffusion\";b:1;s:33:\"wpaicg_image_generator_shortcodes\";b:1;s:27:\"wpaicg_image_generator_logs\";b:1;s:31:\"wpaicg_image_generator_settings\";b:1;s:12:\"wpaicg_forms\";b:1;s:18:\"wpaicg_forms_forms\";b:1;s:17:\"wpaicg_forms_logs\";b:1;s:21:\"wpaicg_forms_settings\";b:1;s:17:\"wpaicg_promptbase\";b:1;s:28:\"wpaicg_promptbase_promptbase\";b:1;s:22:\"wpaicg_promptbase_logs\";b:1;s:26:\"wpaicg_promptbase_settings\";b:1;s:17:\"wpaicg_embeddings\";b:1;s:25:\"wpaicg_embeddings_content\";b:1;s:22:\"wpaicg_embeddings_logs\";b:1;s:21:\"wpaicg_embeddings_pdf\";b:1;s:25:\"wpaicg_embeddings_builder\";b:1;s:26:\"wpaicg_embeddings_settings\";b:1;s:30:\"wpaicg_embeddings_troubleshoot\";b:1;s:15:\"wpaicg_finetune\";b:1;s:22:\"wpaicg_finetune_upload\";b:1;s:22:\"wpaicg_finetune_manual\";b:1;s:20:\"wpaicg_finetune_data\";b:1;s:21:\"wpaicg_finetune_files\";b:1;s:26:\"wpaicg_finetune_file-tunes\";b:1;s:12:\"wpaicg_audio\";b:1;s:22:\"wpaicg_audio_converter\";b:1;s:17:\"wpaicg_audio_logs\";b:1;s:11:\"wpaicg_help\";b:1;s:19:\"wpaicg_help_chatgpt\";b:1;s:19:\"wpaicg_help_article\";b:1;s:23:\"wpaicg_help_woocommerce\";b:1;s:19:\"wpaicg_help_autogpt\";b:1;s:17:\"wpaicg_help_image\";b:1;s:18:\"wpaicg_help_aiform\";b:1;s:21:\"wpaicg_help_assistant\";b:1;s:17:\"wpaicg_help_audio\";b:1;s:19:\"wpaicg_help_compare\";b:1;s:20:\"wpaicg_comment_reply\";b:1;s:19:\"wpaicg_ai_assistant\";b:1;s:24:\"wpaicg_instant_embedding\";b:1;s:33:\"wpaicg_woocommerce_product_writer\";b:1;s:27:\"wpaicg_woocommerce_meta_box\";b:1;s:26:\"wpaicg_woocommerce_content\";b:1;s:16:\"wpaicg_suggester\";b:1;s:15:\"wpaicg_meta_box\";b:1;s:19:\"wpaicg_myai_account\";b:1;s:21:\"rocket_manage_options\";b:1;s:18:\"rocket_purge_cache\";b:1;s:18:\"rocket_purge_posts\";b:1;s:18:\"rocket_purge_terms\";b:1;s:18:\"rocket_purge_users\";b:1;s:29:\"rocket_purge_cloudflare_cache\";b:1;s:25:\"rocket_purge_sucuri_cache\";b:1;s:20:\"rocket_preload_cache\";b:1;s:30:\"rocket_regenerate_critical_css\";b:1;s:24:\"rocket_remove_unused_css\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:39:{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:23:\"rank_math_site_analysis\";b:1;s:25:\"rank_math_onpage_analysis\";b:1;s:24:\"rank_math_onpage_general\";b:1;s:24:\"rank_math_onpage_snippet\";b:1;s:23:\"rank_math_onpage_social\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:14:{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:25:\"rank_math_onpage_analysis\";b:1;s:24:\"rank_math_onpage_general\";b:1;s:24:\"rank_math_onpage_snippet\";b:1;s:23:\"rank_math_onpage_social\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop manager\";s:12:\"capabilities\";a:109:{s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"edit_theme_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:22:\"edit_klaviyo_shop_cart\";b:1;s:22:\"read_klaviyo_shop_cart\";b:1;s:24:\"delete_klaviyo_shop_cart\";b:1;s:23:\"edit_klaviyo_shop_carts\";b:1;s:30:\"edit_others_klaviyo_shop_carts\";b:1;s:26:\"publish_klaviyo_shop_carts\";b:1;s:31:\"read_private_klaviyo_shop_carts\";b:1;s:25:\"delete_klaviyo_shop_carts\";b:1;s:33:\"delete_private_klaviyo_shop_carts\";b:1;s:35:\"delete_published_klaviyo_shop_carts\";b:1;s:32:\"delete_others_klaviyo_shop_carts\";b:1;s:31:\"edit_private_klaviyo_shop_carts\";b:1;s:33:\"edit_published_klaviyo_shop_carts\";b:1;s:30:\"manage_klaviyo_shop_cart_terms\";b:1;s:28:\"edit_klaviyo_shop_cart_terms\";b:1;s:30:\"delete_klaviyo_shop_cart_terms\";b:1;s:30:\"assign_klaviyo_shop_cart_terms\";b:1;}}s:10:\"translator\";a:2:{s:4:\"name\";s:10:\"Translator\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:10:\"loco_admin\";b:1;}}}','yes'),(101,'fresh_site','0','yes'),(102,'user_count','2','no'),(103,'widget_block','a:3:{i:5;a:1:{s:7:\"content\";s:146:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:150:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Categories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}s:12:\"_multiwidget\";i:1;}','yes'),(104,'sidebars_widgets','a:7:{s:19:\"wp_inactive_widgets\";a:0:{}s:12:\"sidebar-main\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:22:\"woocommerce_products-2\";}s:16:\"sidebar-footer-1\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}s:16:\"sidebar-footer-2\";a:0:{}s:12:\"shop-sidebar\";a:4:{i:0;s:28:\"woocommerce_product_search-2\";i:1;s:26:\"woocommerce_price_filter-2\";i:2;s:32:\"woocommerce_product_categories-2\";i:3;s:38:\"woocommerce_recently_viewed_products-3\";}s:15:\"product-sidebar\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(105,'cron','a:56:{i:1705889390;a:1:{s:26:\"action_scheduler_run_queue\";a:1:{s:32:\"0d04ed39571b55704c122d726248bbac\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:1:{i:0;s:7:\"WP Cron\";}s:8:\"interval\";i:60;}}}i:1705889399;a:1:{s:23:\"mo_hourly_recurring_job\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1705889428;a:1:{s:33:\"wpvivid_clean_backup_data_event_2\";a:1:{s:32:\"dd5f58ea015456cb0001d5d8f2d36da6\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;s:21:\"wpvivid-65adbe43bc863\";}}}}i:1705889454;a:1:{s:28:\"wpvivid_task_monitor_event_2\";a:1:{s:32:\"dd5f58ea015456cb0001d5d8f2d36da6\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;s:21:\"wpvivid-65adbe43bc863\";}}}}i:1705890160;a:1:{s:23:\"mainwp_cronstats_action\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1705890325;a:1:{s:33:\"wc_admin_process_orders_milestone\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1705890331;a:1:{s:29:\"wc_admin_unsnooze_admin_notes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1705890432;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:1705890490;a:1:{s:39:\"cartflows_ca_update_order_status_action\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:21:\"every_fifteen_minutes\";s:4:\"args\";a:0:{}s:8:\"interval\";i:1200;}}}i:1705890546;a:4:{s:33:\"wpaicg_remove_chat_tokens_limited\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}s:34:\"wpaicg_remove_image_tokens_limited\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}s:34:\"wpaicg_remove_forms_tokens_limited\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}s:39:\"wpaicg_remove_promptbase_tokens_limited\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1705890729;a:1:{s:44:\"googlesitekit_cron_synchronize_property_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1705890802;a:1:{s:21:\"wordfence_ls_ntp_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1705890807;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:1705891077;a:1:{s:32:\"woocommerce_cancel_unpaid_orders\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1705891626;a:1:{s:23:\"rocket_purge_time_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:34:\"rocket_expired_cache_cron_interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1705892057;a:1:{s:20:\"jetpack_clean_nonces\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1705894032;a:3:{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;}}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:1705898150;a:1:{s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1705922522;a:1:{s:28:\"woocommerce_cleanup_sessions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1705924600;a:1:{s:41:\"googlesitekit_cron_update_remote_features\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1705936219;a:1:{s:19:\"jwt_auth_share_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1705936332;a:1:{s:22:\"mwp_update_public_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1705936960;a:1:{s:28:\"mainwp_cronpingchilds_action\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1705937232;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1705937235;a:1:{s:37:\"siteground_optimizer_check_assets_dir\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1705937267;a:1:{s:35:\"siteground_security_clear_logs_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:1705938280;a:1:{s:35:\"rank_math/content-ai/update_prompts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1705941506;a:1:{s:20:\"wpse_delete_old_csvs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1705942632;a:1:{s:29:\"seedprod_lite_fetch_help_docs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1705944132;a:2:{s:33:\"woocommerce_cleanup_personal_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:30:\"woocommerce_tracker_send_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:1705945812;a:1:{s:20:\"jetpack_v2_heartbeat\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1705951752;a:1:{s:22:\"vi_wbe_remove_revision\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1705954922;a:2:{s:24:\"woocommerce_cleanup_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:31:\"woocommerce_cleanup_rate_limits\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1705955730;a:1:{s:30:\"scheduled_cron_shipment_length\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1705959440;a:1:{s:22:\"mo_daily_recurring_job\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1705960083;a:1:{s:34:\"yith_wcwl_delete_expired_wishlists\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1705960568;a:1:{s:13:\"wpseo-reindex\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1705962792;a:1:{s:26:\"wordfence_daily_autoUpdate\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1705962807;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:1705963413;a:1:{s:22:\"seedprod_notifications\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1705964400;a:1:{s:27:\"woocommerce_scheduled_sales\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1705967899;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1705967900;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:1705968000;a:2:{s:35:\"rank_math/redirection/clean_trashed\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:30:\"rank_math/links/internal_links\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1705969523;a:1:{s:14:\"wc_admin_daily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1705970295;a:1:{s:25:\"ast-pro_license_cron_hook\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:19:\"license_cron_events\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1706030399;a:1:{s:30:\"wordfence_start_scheduled_scan\";a:1:{s:32:\"0de8b86aabb24847de7d672da0f8e5d8\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:1706030399;}}}}i:1706110032;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:1706247807;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1706289599;a:1:{s:30:\"wordfence_start_scheduled_scan\";a:1:{s:32:\"4c63d7a229feaa5c6e2526165fcb4a89\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:1706289599;}}}}i:1706295801;a:1:{s:40:\"flatsome_instagram_refresh_access_tokens\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1706328370;a:1:{s:27:\"rocket_update_dynamic_lists\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1706328970;a:1:{s:36:\"rocket_preload_clean_rows_time_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1706548799;a:1:{s:30:\"wordfence_start_scheduled_scan\";a:1:{s:32:\"78aa49af576467d83cc20c0a815a8f19\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:1706548799;}}}}i:1706894582;a:1:{s:25:\"woocommerce_geoip_updater\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:11:\"fifteendays\";s:4:\"args\";a:0:{}s:8:\"interval\";i:1296000;}}}s:7:\"version\";i:2;}','yes'),(106,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:25:\"Waar ben je naar op zoek?\";}s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_recent-posts','a:2:{i:2;a:3:{s:5:\"title\";s:17:\"Laatste artikelen\";s:6:\"number\";i:4;s:9:\"show_date\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(117,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(119,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(125,'siteground_optimizer_heartbeat_post_interval','120','yes'),(126,'siteground_optimizer_heartbeat_dashboard_interval','0','yes'),(127,'siteground_optimizer_heartbeat_frontend_interval','0','yes'),(128,'siteground_optimizer_excluded_lazy_load_media_types','a:9:{i:0;s:15:\"lazyload_mobile\";i:1;s:16:\"lazyload_iframes\";i:2;s:15:\"lazyload_videos\";i:3;s:18:\"lazyload_gravatars\";i:4;s:19:\"lazyload_thumbnails\";i:5;s:19:\"lazyload_responsive\";i:6;s:20:\"lazyload_textwidgets\";i:7;s:19:\"lazyload_shortcodes\";i:8;s:20:\"lazyload_woocommerce\";}','yes'),(129,'siteground_optimizer_enable_cache','1','yes'),(130,'siteground_optimizer_autoflush_cache','1','yes'),(131,'siteground_optimizer_version','7.2.3','yes'),(134,'siteground_optimizer_update_timestamp','1669130834','yes'),(135,'siteground_optimizer_database_optimization','a:0:{}','yes'),(136,'sgo_install_service','1','yes'),(137,'sgo_pre_migration_speed_test','a:6:{s:4:\"data\";a:1:{s:6:\"hidden\";a:2:{s:4:\"info\";N;s:4:\"data\";a:1:{s:5:\"other\";a:11:{i:0;a:8:{s:2:\"id\";s:17:\"max-potential-fid\";s:5:\"title\";s:31:\"Max Potential First Input Delay\";s:11:\"description\";s:170:\"The maximum potential First Input Delay that your users could experience is the duration of the longest task. [Learn more](https://web.dev/lighthouse-max-potential-fid/).\";s:5:\"score\";i:1;s:16:\"scoreDisplayMode\";s:7:\"numeric\";s:12:\"displayValue\";s:6:\"20 ms\";s:12:\"numericValue\";i:16;s:11:\"numericUnit\";s:11:\"millisecond\";}i:1;a:8:{s:2:\"id\";s:22:\"first-meaningful-paint\";s:5:\"title\";s:22:\"First Meaningful Paint\";s:11:\"description\";s:133:\"First Meaningful Paint measures when the primary content of a page is visible. [Learn more](https://web.dev/first-meaningful-paint/).\";s:5:\"score\";i:1;s:16:\"scoreDisplayMode\";s:7:\"numeric\";s:12:\"displayValue\";s:6:\"0.3 s\";s:12:\"numericValue\";i:292;s:11:\"numericUnit\";s:11:\"millisecond\";}i:2;a:6:{s:2:\"id\";s:16:\"network-requests\";s:5:\"title\";s:16:\"Network Requests\";s:11:\"description\";s:59:\"Lists the network requests that were made during page load.\";s:5:\"score\";N;s:16:\"scoreDisplayMode\";s:11:\"informative\";s:7:\"details\";a:4:{s:8:\"headings\";a:9:{i:0;a:3:{s:8:\"itemType\";s:3:\"url\";s:3:\"key\";s:3:\"url\";s:4:\"text\";s:3:\"URL\";}i:1;a:3:{s:3:\"key\";s:8:\"protocol\";s:8:\"itemType\";s:4:\"text\";s:4:\"text\";s:8:\"Protocol\";}i:2;a:4:{s:8:\"itemType\";s:2:\"ms\";s:11:\"granularity\";i:1;s:3:\"key\";s:9:\"startTime\";s:4:\"text\";s:10:\"Start Time\";}i:3;a:4:{s:3:\"key\";s:7:\"endTime\";s:8:\"itemType\";s:2:\"ms\";s:11:\"granularity\";i:1;s:4:\"text\";s:8:\"End Time\";}i:4;a:5:{s:4:\"text\";s:13:\"Transfer Size\";s:8:\"itemType\";s:5:\"bytes\";s:11:\"displayUnit\";s:2:\"kb\";s:11:\"granularity\";i:1;s:3:\"key\";s:12:\"transferSize\";}i:5;a:5:{s:11:\"granularity\";i:1;s:8:\"itemType\";s:5:\"bytes\";s:3:\"key\";s:12:\"resourceSize\";s:4:\"text\";s:13:\"Resource Size\";s:11:\"displayUnit\";s:2:\"kb\";}i:6;a:3:{s:3:\"key\";s:10:\"statusCode\";s:8:\"itemType\";s:4:\"text\";s:4:\"text\";s:11:\"Status Code\";}i:7;a:3:{s:3:\"key\";s:8:\"mimeType\";s:8:\"itemType\";s:4:\"text\";s:4:\"text\";s:9:\"MIME Type\";}i:8;a:3:{s:4:\"text\";s:13:\"Resource Type\";s:3:\"key\";s:12:\"resourceType\";s:8:\"itemType\";s:4:\"text\";}}s:5:\"items\";a:5:{i:0;a:11:{s:25:\"experimentalFromMainFrame\";b:1;s:7:\"endTime\";d:676.41499987803399562835693359375;s:9:\"startTime\";i:0;s:8:\"protocol\";s:2:\"h2\";s:12:\"resourceType\";s:8:\"Document\";s:12:\"transferSize\";i:10187;s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:8:\"finished\";b:1;s:12:\"resourceSize\";i:51898;s:10:\"statusCode\";i:200;s:8:\"mimeType\";s:9:\"text/html\";}i:1;a:11:{s:8:\"finished\";b:1;s:9:\"startTime\";d:689.97899978421628475189208984375;s:8:\"protocol\";s:2:\"h2\";s:25:\"experimentalFromMainFrame\";b:1;s:12:\"resourceType\";s:10:\"Stylesheet\";s:12:\"transferSize\";i:2421;s:12:\"resourceSize\";i:15342;s:3:\"url\";s:87:\"https://www.nl.ecom-expansion.com/wp-includes/blocks/navigation/style.min.css?ver=6.1.1\";s:7:\"endTime\";d:909.134999848902225494384765625;s:8:\"mimeType\";s:8:\"text/css\";s:10:\"statusCode\";i:200;}i:2;a:11:{s:8:\"mimeType\";s:22:\"application/javascript\";s:12:\"resourceSize\";i:1144;s:12:\"resourceType\";s:6:\"Script\";s:12:\"transferSize\";i:600;s:10:\"statusCode\";i:200;s:25:\"experimentalFromMainFrame\";b:1;s:7:\"endTime\";d:1103.2289997674524784088134765625;s:8:\"protocol\";s:2:\"h2\";s:9:\"startTime\";d:690.1349998079240322113037109375;s:8:\"finished\";b:1;s:3:\"url\";s:100:\"https://www.nl.ecom-expansion.com/wp-includes/blocks/navigation/view.min.js?ver=c24330f635f5cb9d5e0e\";}i:3;a:11:{s:12:\"transferSize\";i:2935;s:25:\"experimentalFromMainFrame\";b:1;s:8:\"finished\";b:1;s:8:\"protocol\";s:2:\"h2\";s:12:\"resourceType\";s:6:\"Script\";s:12:\"resourceSize\";i:7779;s:10:\"statusCode\";i:200;s:3:\"url\";s:106:\"https://www.nl.ecom-expansion.com/wp-includes/blocks/navigation/view-modal.min.js?ver=45f05135277abf0b0408\";s:8:\"mimeType\";s:22:\"application/javascript\";s:9:\"startTime\";d:690.26799988932907581329345703125;s:7:\"endTime\";d:796.02299979887902736663818359375;}i:4;a:11:{s:7:\"endTime\";d:1104.9199998378753662109375;s:12:\"transferSize\";i:5087;s:8:\"mimeType\";s:22:\"application/javascript\";s:10:\"statusCode\";i:200;s:8:\"finished\";b:1;s:9:\"startTime\";d:910.69499985314905643463134765625;s:12:\"resourceSize\";i:18617;s:3:\"url\";s:82:\"https://www.nl.ecom-expansion.com/wp-includes/js/wp-emoji-release.min.js?ver=6.1.1\";s:25:\"experimentalFromMainFrame\";b:1;s:8:\"protocol\";s:2:\"h2\";s:12:\"resourceType\";s:6:\"Script\";}}s:9:\"debugData\";a:2:{s:4:\"type\";s:9:\"debugdata\";s:18:\"networkStartTimeTs\";i:1305596373517;}s:4:\"type\";s:5:\"table\";}}i:3;a:9:{s:2:\"id\";s:11:\"network-rtt\";s:5:\"title\";s:24:\"Network Round Trip Times\";s:11:\"description\";s:241:\"Network round trip times (RTT) have a large impact on performance. If the RTT to an origin is high, it\'s an indication that servers closer to the user could improve performance. [Learn more](https://hpbn.co/primer-on-latency-and-bandwidth/).\";s:5:\"score\";N;s:16:\"scoreDisplayMode\";s:11:\"informative\";s:12:\"displayValue\";s:5:\"0 ms\";s:7:\"details\";a:3:{s:4:\"type\";s:5:\"table\";s:8:\"headings\";a:0:{}s:5:\"items\";a:0:{}}s:12:\"numericValue\";i:0;s:11:\"numericUnit\";s:11:\"millisecond\";}i:4;a:9:{s:2:\"id\";s:22:\"network-server-latency\";s:5:\"title\";s:24:\"Server Backend Latencies\";s:11:\"description\";s:256:\"Server latencies can impact web performance. If the server latency of an origin is high, it\'s an indication the server is overloaded or has poor backend performance. [Learn more](https://hpbn.co/primer-on-web-performance/#analyzing-the-resource-waterfall).\";s:5:\"score\";N;s:16:\"scoreDisplayMode\";s:11:\"informative\";s:12:\"displayValue\";s:5:\"0 ms\";s:7:\"details\";a:3:{s:8:\"headings\";a:0:{}s:5:\"items\";a:0:{}s:4:\"type\";s:5:\"table\";}s:12:\"numericValue\";i:0;s:11:\"numericUnit\";s:11:\"millisecond\";}i:5;a:6:{s:2:\"id\";s:17:\"main-thread-tasks\";s:5:\"title\";s:5:\"Tasks\";s:11:\"description\";s:68:\"Lists the toplevel main thread tasks that executed during page load.\";s:5:\"score\";N;s:16:\"scoreDisplayMode\";s:11:\"informative\";s:7:\"details\";a:3:{s:8:\"headings\";a:2:{i:0;a:4:{s:4:\"text\";s:10:\"Start Time\";s:11:\"granularity\";i:1;s:8:\"itemType\";s:2:\"ms\";s:3:\"key\";s:9:\"startTime\";}i:1;a:4:{s:3:\"key\";s:8:\"duration\";s:8:\"itemType\";s:2:\"ms\";s:4:\"text\";s:8:\"End Time\";s:11:\"granularity\";i:1;}}s:5:\"items\";a:3:{i:0;a:2:{s:8:\"duration\";d:12.7260000000000008668621376273222267627716064453125;s:9:\"startTime\";d:681.9389999999999645297066308557987213134765625;}i:1;a:2:{s:8:\"duration\";d:41.99600000000000221689333557151257991790771484375;s:9:\"startTime\";d:695.029999999999972715158946812152862548828125;}i:2;a:2:{s:8:\"duration\";d:14.407000000000000028421709430404007434844970703125;s:9:\"startTime\";d:1108.865999999999985448084771633148193359375;}}s:4:\"type\";s:5:\"table\";}}i:6;a:6:{s:2:\"id\";s:11:\"diagnostics\";s:5:\"title\";s:11:\"Diagnostics\";s:11:\"description\";s:33:\"Collection of useful page vitals.\";s:5:\"score\";N;s:16:\"scoreDisplayMode\";s:11:\"informative\";s:7:\"details\";a:2:{s:4:\"type\";s:9:\"debugdata\";s:5:\"items\";a:1:{i:0;a:17:{s:16:\"numTasksOver25ms\";i:1;s:8:\"numTasks\";i:113;s:17:\"numTasksOver500ms\";i:0;s:6:\"maxRtt\";d:5.0730674999999987306864568381570279598236083984375;s:24:\"mainDocumentTransferSize\";i:10187;s:15:\"totalByteWeight\";i:21230;s:16:\"maxServerLatency\";N;s:3:\"rtt\";d:5.0730674999999987306864568381570279598236083984375;s:10:\"throughput\";d:7076750087.8232021331787109375;s:8:\"numFonts\";i:0;s:11:\"numRequests\";i:5;s:17:\"numTasksOver100ms\";i:0;s:13:\"totalTaskTime\";d:94.8260000000000076170181273482739925384521484375;s:10:\"numScripts\";i:3;s:14:\"numStylesheets\";i:1;s:16:\"numTasksOver50ms\";i:0;s:16:\"numTasksOver10ms\";i:3;}}}}i:7;a:8:{s:2:\"id\";s:7:\"metrics\";s:5:\"title\";s:7:\"Metrics\";s:11:\"description\";s:31:\"Collects all available metrics.\";s:5:\"score\";N;s:16:\"scoreDisplayMode\";s:11:\"informative\";s:7:\"details\";a:2:{s:5:\"items\";a:2:{i:0;a:41:{s:20:\"firstContentfulPaint\";i:292;s:25:\"observedNavigationStartTs\";i:1305596371825;s:26:\"observedLastVisualChangeTs\";i:1305597523825;s:15:\"maxPotentialFID\";i:16;s:24:\"observedLastVisualChange\";i:1152;s:22:\"largestContentfulPaint\";i:292;s:18:\"observedFirstPaint\";i:1146;s:20:\"firstMeaningfulPaint\";i:292;s:38:\"observedCumulativeLayoutShiftMainFrame\";i:0;s:30:\"observedFirstContentfulPaintTs\";i:1305597518274;s:30:\"observedLargestContentfulPaint\";i:1146;s:32:\"observedLargestContentfulPaintTs\";i:1305597518274;s:23:\"observedNavigationStart\";i:0;s:29:\"observedCumulativeLayoutShift\";i:0;s:10:\"speedIndex\";i:782;s:16:\"observedTraceEnd\";i:3462;s:26:\"observedDomContentLoadedTs\";i:1305597499791;s:21:\"cumulativeLayoutShift\";i:0;s:30:\"observedFirstMeaningfulPaintTs\";i:1305597518274;s:28:\"observedFirstMeaningfulPaint\";i:1146;s:18:\"observedTraceEndTs\";i:1305599834074;s:27:\"observedFirstVisualChangeTs\";i:1305597506825;s:24:\"observedDomContentLoaded\";i:1128;s:14:\"observedLoadTs\";i:1305597506113;s:12:\"observedLoad\";i:1134;s:20:\"observedFirstPaintTs\";i:1305597518274;s:26:\"totalCumulativeLayoutShift\";i:0;s:39:\"observedFirstContentfulPaintAllFramesTs\";i:1305597518274;s:34:\"observedTotalCumulativeLayoutShift\";i:0;s:20:\"observedTimeOriginTs\";i:1305596371825;s:11:\"interactive\";i:292;s:28:\"observedFirstContentfulPaint\";i:1146;s:18:\"observedTimeOrigin\";i:0;s:20:\"observedSpeedIndexTs\";i:1305597508177;s:17:\"totalBlockingTime\";i:0;s:41:\"observedLargestContentfulPaintAllFramesTs\";i:1305597518274;s:25:\"observedFirstVisualChange\";i:1135;s:18:\"observedSpeedIndex\";i:1136;s:39:\"observedLargestContentfulPaintAllFrames\";i:1146;s:37:\"observedFirstContentfulPaintAllFrames\";i:1146;s:30:\"cumulativeLayoutShiftMainFrame\";i:0;}i:1;a:1:{s:14:\"lcpInvalidated\";b:0;}}s:4:\"type\";s:9:\"debugdata\";}s:12:\"numericValue\";i:292;s:11:\"numericUnit\";s:11:\"millisecond\";}i:8;a:6:{s:2:\"id\";s:21:\"screenshot-thumbnails\";s:5:\"title\";s:21:\"Screenshot Thumbnails\";s:11:\"description\";s:47:\"This is what the load of your site looked like.\";s:5:\"score\";N;s:16:\"scoreDisplayMode\";s:11:\"informative\";s:7:\"details\";a:3:{s:4:\"type\";s:9:\"filmstrip\";s:5:\"items\";a:10:{i:0;a:3:{s:9:\"timestamp\";i:1305596671825;s:4:\"data\";s:1223:\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAMCAgMCAgMDAwMEAwMEBQgFBQQEBQoHBwYIDAoMDAsKCwsNDhIQDQ4RDgsLEBYQERMUFRUVDA8XGBYUGBIUFRQBAwQEBQQFCQUFCRQNCw0UFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFP/AABEIAFMAeAMBEQACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4+Tl5ufo6ery8/T19vf4+fr/2gAMAwEAAhEDEQA/AP1ToAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgD//Z\";s:6:\"timing\";i:300;}i:1;a:3:{s:4:\"data\";s:1223:\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAMCAgMCAgMDAwMEAwMEBQgFBQQEBQoHBwYIDAoMDAsKCwsNDhIQDQ4RDgsLEBYQERMUFRUVDA8XGBYUGBIUFRQBAwQEBQQFCQUFCRQNCw0UFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFP/AABEIAFMAeAMBEQACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4+Tl5ufo6ery8/T19vf4+fr/2gAMAwEAAhEDEQA/AP1ToAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgD//Z\";s:6:\"timing\";i:600;s:9:\"timestamp\";i:1305596971825;}i:2;a:3:{s:6:\"timing\";i:900;s:9:\"timestamp\";i:1305597271825;s:4:\"data\";s:1223:\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAMCAgMCAgMDAwMEAwMEBQgFBQQEBQoHBwYIDAoMDAsKCwsNDhIQDQ4RDgsLEBYQERMUFRUVDA8XGBYUGBIUFRQBAwQEBQQFCQUFCRQNCw0UFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFP/AABEIAFMAeAMBEQACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4+Tl5ufo6ery8/T19vf4+fr/2gAMAwEAAhEDEQA/AP1ToAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgD//Z\";}i:3;a:3:{s:9:\"timestamp\";i:1305597571825;s:4:\"data\";s:3667:\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAMCAgMCAgMDAwMEAwMEBQgFBQQEBQoHBwYIDAoMDAsKCwsNDhIQDQ4RDgsLEBYQERMUFRUVDA8XGBYUGBIUFRQBAwQEBQQFCQUFCRQNCw0UFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFP/AABEIAFMAeAMBEQACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4+Tl5ufo6ery8/T19vf4+fr/2gAMAwEAAhEDEQA/AP1NvJ5La0nmit5LuWNGZbeIqHkIGQoLEKCenJA9SKAM+y1m8umthLoV/ZiVSXaaS3IhPHDbJWyeT93I+U89MgGtQAUAFABQAUAFABQAUAFABQAhoAyb7Wry0sxNFoOoXsnnNGbeCS3DhRnEmXlVdpwMDO7kZA5wAW9JvZtR0+K4uLC40uZ87rS6aNpI8EgbjGzryBnhj19aALlABQAUAFABQAUAFABQAUAFABQAUAFABQAUAc58R215Ph54nbwr/wAjQNLuf7J4Q/6Z5TeR/rPk/wBZt+98vrxQB4Vpmt/tNWXiLxZ/aGheH7zTltp30s2phmie4S3sI4RADPBII5Jn1CdknOR5YiEyqUkIBoaj4m/aGXx3bS6b4W0y58MjQAHhvzb2TNqrranLCO6uGMaP5yna67FNwR9paO3E4B0M/ij40FfCUyeF9LhS616CDWrdEjnltNLli84yqTexr5kDn7LIVMhcg3EcWMQEAj1HxB8am8P6s8ehaZb6ofFs9lp8dtBFOo0EZEVzI0l7GFlbG4sA5Usq/ZmwWoApD4nfFgeM/FGhS+DVS5t/DF5qmiLBp7y2d3eJM0cMMl+1xHCru23bBgM0WJne3LmCIAVfG3x0tra+nbwJp9/JHpNpNFbFoLUm+Nn5lxEkgvpRIgmygZ1h2uI0Bkjke7gAK/xJ8ffGWe+/snwZ4Nezl1HRdTuILvVIYB/Z90lvp5tlkmS5lhLCS5vV2Ff3slsqjbCHuSAdr4/1n4k6HFoSeGNKtPEd2NPvpNR/0SOG3mu47bdbIJJL5Htlln+X5YrrAOGMeN5AOO8V+IfjpqGqDT/DWk6fpkH/AAkvlPqmqabB5cWjrLF+8CJqLmZ2HmdomaPzCUgdYhMAemeAvE+veIrvX/7Y0OTSrSC/ni06ZkKCWCOaSD5g5Dl2aBpg3lrGYrmAI0hDtQB19ABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFAGJ44u9c0/wAF6/deGLKDUvEsOn3Eml2V0+yKe6EbGGNzuXCs+0E5HBPIoA4vwr43+JdxPFa+IPhwlqE0+3kl1Gz1i3aOW8eQK8awliyJGjCR2LsQVlSPztsbygFuw8ceOptVtUu/h1Na6dM4Ekw1W2eWBDczxBiobDN5QtZ2UHCpJOod5IkjmAL2ga547vYfEw1HwxpdnNaTTrorNqjBdRUSS+UZQsTm3UxiDLfvG3NIfLUKoYAg8JeNPGWsyP8A238P7jw4j6hJbwk6nbXRFsElaO4l2N8rFo40Ma79pmUh2UMVAO8U5UHGM9qAFoAKACgAoAKACgAoAKACgCrqlvJeabdwQyCKWWJ40kO7CkggH5WVuP8AZZT6EHmgDz7T9CSyb7XDqmsm8OI5xdf2tJEWllEeUhechFBByRny1Ikyq8kAraRpA8TX0TDU9ZRbhGmCzQa1p4EKFYQh8ydQkuBKckBn3RybTt3MAdlH4ZuI4RF9vk8uM2qxZnuS6xwuGId/OzIzDILnlsjeHA20AQWngOEaalleahqU6Rq8cbw6rexyFGHO9/PLs2SxDFsrkAYxmgDo7O1SxtIbaNpHjhRY1aaVpXIAwNzsSzHjksST1JNAE1ABQAUAFABQAUAFABQAUARzxmWF0WRomI4dMZU+oyCPzoA5+y8KajazNJN4u1m9BZm2TxWYABQqF+S3XhSdw75AySMggGzpllJp9mIZbya+cO7GedUVjuYsBhFVcAHaOM4AySckgFugAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKAK2p6nZ6Lp11qGoXUFjYWsTT3F1cyCOKGNQSzuxICqACSTwAKAMK++JfhbR/DGm+IdW1yz0HR9RWI21zrb/YN5kTeiFZ9jK5GfkYBgQQQCCKAKL/ABp8BRata6bL4w0WG8vLSzvrRZb2NFu4bqSSO2eFyQsvmPE6qEJJO3j5lyAaNr8SfCV/r40O28UaNc62YpJhpsN/E9yY45XhkcRht21JYpY2OMBo3U4KkUAaUPiPSrm5e3i1K0lnSQwtEk6lhIM5TAOdwweOtAGTF8TvCc3jO/8ACSeIdPPiWwjgludM88edGJklkiBHdikEr7R8wRdxAUgkAXRviX4W8SyRromvWOvBr+TS3fSJReJBdJE0rxTNFuWFgiHPmFeSi/edQQDpGbbjgsT2FADfMb/nk/5j/GgA8xv+eT/mP8aADzG/55P+Y/xoAPMb/nk/5j/GgA8xv+eT/mP8aADzG/55P+Y/xoAepyOQV9jQBS1zUDpOj316qCQ20EkwQnG7apOM/hXnZjipYLBVsVFXcIykl3aTaRE5ckXLsjwS3+J2k2trb2UHw706GyFwHEUaQiOIxRCGKXaB/wA8o440wCwXapChSF/Gl4i1Wk/ZQ2v8U/u+Hc8D+1Jfyr8f8j0T4b2Xh3xZ4dlnXwnpOnQqHsPs0dpEV8lgXZCAoG0maTK9Ms3941+kcM53LPsJPETgouM3HR3WiTvrZ9T1sLXeIpubVtTstR8MaPq91FdX+k2N7cxSRTRzXFskjo8TM0TAkEgozuVI5UsxGMmvrjsGR+E9Di0N9FTRtPTRng+zNpy2qC3aLbt8sx42ldvG3GMcUAQan4C8M63rFvq2o+HdJv8AVbYqYL66sYpJ4irBl2uyllwyqRg8EA9qAG6X4A8L6JfG907w3pFheGRZTcWtjFHIXVZEVtyqDkLNKoPYSOOjHIBv0AFABQAUAFABQAUAFACEA9Rmk0nugDaPQVVyeVdgAA6DFIoWgAoAKACgAoAKACgAoAKACgAoAKAP/9k=\";s:6:\"timing\";i:1200;}i:4;a:3:{s:6:\"timing\";i:1500;s:4:\"data\";s:3667:\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAMCAgMCAgMDAwMEAwMEBQgFBQQEBQoHBwYIDAoMDAsKCwsNDhIQDQ4RDgsLEBYQERMUFRUVDA8XGBYUGBIUFRQBAwQEBQQFCQUFCRQNCw0UFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFP/AABEIAFMAeAMBEQACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4+Tl5ufo6ery8/T19vf4+fr/2gAMAwEAAhEDEQA/AP1NvJ5La0nmit5LuWNGZbeIqHkIGQoLEKCenJA9SKAM+y1m8umthLoV/ZiVSXaaS3IhPHDbJWyeT93I+U89MgGtQAUAFABQAUAFABQAUAFABQAhoAyb7Wry0sxNFoOoXsnnNGbeCS3DhRnEmXlVdpwMDO7kZA5wAW9JvZtR0+K4uLC40uZ87rS6aNpI8EgbjGzryBnhj19aALlABQAUAFABQAUAFABQAUAFABQAUAFABQAUAc58R215Ph54nbwr/wAjQNLuf7J4Q/6Z5TeR/rPk/wBZt+98vrxQB4Vpmt/tNWXiLxZ/aGheH7zTltp30s2phmie4S3sI4RADPBII5Jn1CdknOR5YiEyqUkIBoaj4m/aGXx3bS6b4W0y58MjQAHhvzb2TNqrranLCO6uGMaP5yna67FNwR9paO3E4B0M/ij40FfCUyeF9LhS616CDWrdEjnltNLli84yqTexr5kDn7LIVMhcg3EcWMQEAj1HxB8am8P6s8ehaZb6ofFs9lp8dtBFOo0EZEVzI0l7GFlbG4sA5Usq/ZmwWoApD4nfFgeM/FGhS+DVS5t/DF5qmiLBp7y2d3eJM0cMMl+1xHCru23bBgM0WJne3LmCIAVfG3x0tra+nbwJp9/JHpNpNFbFoLUm+Nn5lxEkgvpRIgmygZ1h2uI0Bkjke7gAK/xJ8ffGWe+/snwZ4Nezl1HRdTuILvVIYB/Z90lvp5tlkmS5lhLCS5vV2Ff3slsqjbCHuSAdr4/1n4k6HFoSeGNKtPEd2NPvpNR/0SOG3mu47bdbIJJL5Htlln+X5YrrAOGMeN5AOO8V+IfjpqGqDT/DWk6fpkH/AAkvlPqmqabB5cWjrLF+8CJqLmZ2HmdomaPzCUgdYhMAemeAvE+veIrvX/7Y0OTSrSC/ni06ZkKCWCOaSD5g5Dl2aBpg3lrGYrmAI0hDtQB19ABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFAGJ44u9c0/wAF6/deGLKDUvEsOn3Eml2V0+yKe6EbGGNzuXCs+0E5HBPIoA4vwr43+JdxPFa+IPhwlqE0+3kl1Gz1i3aOW8eQK8awliyJGjCR2LsQVlSPztsbygFuw8ceOptVtUu/h1Na6dM4Ekw1W2eWBDczxBiobDN5QtZ2UHCpJOod5IkjmAL2ga547vYfEw1HwxpdnNaTTrorNqjBdRUSS+UZQsTm3UxiDLfvG3NIfLUKoYAg8JeNPGWsyP8A238P7jw4j6hJbwk6nbXRFsElaO4l2N8rFo40Ma79pmUh2UMVAO8U5UHGM9qAFoAKACgAoAKACgAoAKACgCrqlvJeabdwQyCKWWJ40kO7CkggH5WVuP8AZZT6EHmgDz7T9CSyb7XDqmsm8OI5xdf2tJEWllEeUhechFBByRny1Ikyq8kAraRpA8TX0TDU9ZRbhGmCzQa1p4EKFYQh8ydQkuBKckBn3RybTt3MAdlH4ZuI4RF9vk8uM2qxZnuS6xwuGId/OzIzDILnlsjeHA20AQWngOEaalleahqU6Rq8cbw6rexyFGHO9/PLs2SxDFsrkAYxmgDo7O1SxtIbaNpHjhRY1aaVpXIAwNzsSzHjksST1JNAE1ABQAUAFABQAUAFABQAUARzxmWF0WRomI4dMZU+oyCPzoA5+y8KajazNJN4u1m9BZm2TxWYABQqF+S3XhSdw75AySMggGzpllJp9mIZbya+cO7GedUVjuYsBhFVcAHaOM4AySckgFugAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKAK2p6nZ6Lp11qGoXUFjYWsTT3F1cyCOKGNQSzuxICqACSTwAKAMK++JfhbR/DGm+IdW1yz0HR9RWI21zrb/YN5kTeiFZ9jK5GfkYBgQQQCCKAKL/ABp8BRata6bL4w0WG8vLSzvrRZb2NFu4bqSSO2eFyQsvmPE6qEJJO3j5lyAaNr8SfCV/r40O28UaNc62YpJhpsN/E9yY45XhkcRht21JYpY2OMBo3U4KkUAaUPiPSrm5e3i1K0lnSQwtEk6lhIM5TAOdwweOtAGTF8TvCc3jO/8ACSeIdPPiWwjgludM88edGJklkiBHdikEr7R8wRdxAUgkAXRviX4W8SyRromvWOvBr+TS3fSJReJBdJE0rxTNFuWFgiHPmFeSi/edQQDpGbbjgsT2FADfMb/nk/5j/GgA8xv+eT/mP8aADzG/55P+Y/xoAPMb/nk/5j/GgA8xv+eT/mP8aADzG/55P+Y/xoAepyOQV9jQBS1zUDpOj316qCQ20EkwQnG7apOM/hXnZjipYLBVsVFXcIykl3aTaRE5ckXLsjwS3+J2k2trb2UHw706GyFwHEUaQiOIxRCGKXaB/wA8o440wCwXapChSF/Gl4i1Wk/ZQ2v8U/u+Hc8D+1Jfyr8f8j0T4b2Xh3xZ4dlnXwnpOnQqHsPs0dpEV8lgXZCAoG0maTK9Ms3941+kcM53LPsJPETgouM3HR3WiTvrZ9T1sLXeIpubVtTstR8MaPq91FdX+k2N7cxSRTRzXFskjo8TM0TAkEgozuVI5UsxGMmvrjsGR+E9Di0N9FTRtPTRng+zNpy2qC3aLbt8sx42ldvG3GMcUAQan4C8M63rFvq2o+HdJv8AVbYqYL66sYpJ4irBl2uyllwyqRg8EA9qAG6X4A8L6JfG907w3pFheGRZTcWtjFHIXVZEVtyqDkLNKoPYSOOjHIBv0AFABQAUAFABQAUAFACEA9Rmk0nugDaPQVVyeVdgAA6DFIoWgAoAKACgAoAKACgAoAKACgAoAKAP/9k=\";s:9:\"timestamp\";i:1305597871825;}i:5;a:3:{s:9:\"timestamp\";i:1305598171825;s:6:\"timing\";i:1800;s:4:\"data\";s:3667:\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAMCAgMCAgMDAwMEAwMEBQgFBQQEBQoHBwYIDAoMDAsKCwsNDhIQDQ4RDgsLEBYQERMUFRUVDA8XGBYUGBIUFRQBAwQEBQQFCQUFCRQNCw0UFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFP/AABEIAFMAeAMBEQACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4+Tl5ufo6ery8/T19vf4+fr/2gAMAwEAAhEDEQA/AP1NvJ5La0nmit5LuWNGZbeIqHkIGQoLEKCenJA9SKAM+y1m8umthLoV/ZiVSXaaS3IhPHDbJWyeT93I+U89MgGtQAUAFABQAUAFABQAUAFABQAhoAyb7Wry0sxNFoOoXsnnNGbeCS3DhRnEmXlVdpwMDO7kZA5wAW9JvZtR0+K4uLC40uZ87rS6aNpI8EgbjGzryBnhj19aALlABQAUAFABQAUAFABQAUAFABQAUAFABQAUAc58R215Ph54nbwr/wAjQNLuf7J4Q/6Z5TeR/rPk/wBZt+98vrxQB4Vpmt/tNWXiLxZ/aGheH7zTltp30s2phmie4S3sI4RADPBII5Jn1CdknOR5YiEyqUkIBoaj4m/aGXx3bS6b4W0y58MjQAHhvzb2TNqrranLCO6uGMaP5yna67FNwR9paO3E4B0M/ij40FfCUyeF9LhS616CDWrdEjnltNLli84yqTexr5kDn7LIVMhcg3EcWMQEAj1HxB8am8P6s8ehaZb6ofFs9lp8dtBFOo0EZEVzI0l7GFlbG4sA5Usq/ZmwWoApD4nfFgeM/FGhS+DVS5t/DF5qmiLBp7y2d3eJM0cMMl+1xHCru23bBgM0WJne3LmCIAVfG3x0tra+nbwJp9/JHpNpNFbFoLUm+Nn5lxEkgvpRIgmygZ1h2uI0Bkjke7gAK/xJ8ffGWe+/snwZ4Nezl1HRdTuILvVIYB/Z90lvp5tlkmS5lhLCS5vV2Ff3slsqjbCHuSAdr4/1n4k6HFoSeGNKtPEd2NPvpNR/0SOG3mu47bdbIJJL5Htlln+X5YrrAOGMeN5AOO8V+IfjpqGqDT/DWk6fpkH/AAkvlPqmqabB5cWjrLF+8CJqLmZ2HmdomaPzCUgdYhMAemeAvE+veIrvX/7Y0OTSrSC/ni06ZkKCWCOaSD5g5Dl2aBpg3lrGYrmAI0hDtQB19ABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFAGJ44u9c0/wAF6/deGLKDUvEsOn3Eml2V0+yKe6EbGGNzuXCs+0E5HBPIoA4vwr43+JdxPFa+IPhwlqE0+3kl1Gz1i3aOW8eQK8awliyJGjCR2LsQVlSPztsbygFuw8ceOptVtUu/h1Na6dM4Ekw1W2eWBDczxBiobDN5QtZ2UHCpJOod5IkjmAL2ga547vYfEw1HwxpdnNaTTrorNqjBdRUSS+UZQsTm3UxiDLfvG3NIfLUKoYAg8JeNPGWsyP8A238P7jw4j6hJbwk6nbXRFsElaO4l2N8rFo40Ma79pmUh2UMVAO8U5UHGM9qAFoAKACgAoAKACgAoAKACgCrqlvJeabdwQyCKWWJ40kO7CkggH5WVuP8AZZT6EHmgDz7T9CSyb7XDqmsm8OI5xdf2tJEWllEeUhechFBByRny1Ikyq8kAraRpA8TX0TDU9ZRbhGmCzQa1p4EKFYQh8ydQkuBKckBn3RybTt3MAdlH4ZuI4RF9vk8uM2qxZnuS6xwuGId/OzIzDILnlsjeHA20AQWngOEaalleahqU6Rq8cbw6rexyFGHO9/PLs2SxDFsrkAYxmgDo7O1SxtIbaNpHjhRY1aaVpXIAwNzsSzHjksST1JNAE1ABQAUAFABQAUAFABQAUARzxmWF0WRomI4dMZU+oyCPzoA5+y8KajazNJN4u1m9BZm2TxWYABQqF+S3XhSdw75AySMggGzpllJp9mIZbya+cO7GedUVjuYsBhFVcAHaOM4AySckgFugAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKAK2p6nZ6Lp11qGoXUFjYWsTT3F1cyCOKGNQSzuxICqACSTwAKAMK++JfhbR/DGm+IdW1yz0HR9RWI21zrb/YN5kTeiFZ9jK5GfkYBgQQQCCKAKL/ABp8BRata6bL4w0WG8vLSzvrRZb2NFu4bqSSO2eFyQsvmPE6qEJJO3j5lyAaNr8SfCV/r40O28UaNc62YpJhpsN/E9yY45XhkcRht21JYpY2OMBo3U4KkUAaUPiPSrm5e3i1K0lnSQwtEk6lhIM5TAOdwweOtAGTF8TvCc3jO/8ACSeIdPPiWwjgludM88edGJklkiBHdikEr7R8wRdxAUgkAXRviX4W8SyRromvWOvBr+TS3fSJReJBdJE0rxTNFuWFgiHPmFeSi/edQQDpGbbjgsT2FADfMb/nk/5j/GgA8xv+eT/mP8aADzG/55P+Y/xoAPMb/nk/5j/GgA8xv+eT/mP8aADzG/55P+Y/xoAepyOQV9jQBS1zUDpOj316qCQ20EkwQnG7apOM/hXnZjipYLBVsVFXcIykl3aTaRE5ckXLsjwS3+J2k2trb2UHw706GyFwHEUaQiOIxRCGKXaB/wA8o440wCwXapChSF/Gl4i1Wk/ZQ2v8U/u+Hc8D+1Jfyr8f8j0T4b2Xh3xZ4dlnXwnpOnQqHsPs0dpEV8lgXZCAoG0maTK9Ms3941+kcM53LPsJPETgouM3HR3WiTvrZ9T1sLXeIpubVtTstR8MaPq91FdX+k2N7cxSRTRzXFskjo8TM0TAkEgozuVI5UsxGMmvrjsGR+E9Di0N9FTRtPTRng+zNpy2qC3aLbt8sx42ldvG3GMcUAQan4C8M63rFvq2o+HdJv8AVbYqYL66sYpJ4irBl2uyllwyqRg8EA9qAG6X4A8L6JfG907w3pFheGRZTcWtjFHIXVZEVtyqDkLNKoPYSOOjHIBv0AFABQAUAFABQAUAFACEA9Rmk0nugDaPQVVyeVdgAA6DFIoWgAoAKACgAoAKACgAoAKACgAoAKAP/9k=\";}i:6;a:3:{s:6:\"timing\";i:2100;s:4:\"data\";s:3667:\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAMCAgMCAgMDAwMEAwMEBQgFBQQEBQoHBwYIDAoMDAsKCwsNDhIQDQ4RDgsLEBYQERMUFRUVDA8XGBYUGBIUFRQBAwQEBQQFCQUFCRQNCw0UFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFP/AABEIAFMAeAMBEQACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4+Tl5ufo6ery8/T19vf4+fr/2gAMAwEAAhEDEQA/AP1NvJ5La0nmit5LuWNGZbeIqHkIGQoLEKCenJA9SKAM+y1m8umthLoV/ZiVSXaaS3IhPHDbJWyeT93I+U89MgGtQAUAFABQAUAFABQAUAFABQAhoAyb7Wry0sxNFoOoXsnnNGbeCS3DhRnEmXlVdpwMDO7kZA5wAW9JvZtR0+K4uLC40uZ87rS6aNpI8EgbjGzryBnhj19aALlABQAUAFABQAUAFABQAUAFABQAUAFABQAUAc58R215Ph54nbwr/wAjQNLuf7J4Q/6Z5TeR/rPk/wBZt+98vrxQB4Vpmt/tNWXiLxZ/aGheH7zTltp30s2phmie4S3sI4RADPBII5Jn1CdknOR5YiEyqUkIBoaj4m/aGXx3bS6b4W0y58MjQAHhvzb2TNqrranLCO6uGMaP5yna67FNwR9paO3E4B0M/ij40FfCUyeF9LhS616CDWrdEjnltNLli84yqTexr5kDn7LIVMhcg3EcWMQEAj1HxB8am8P6s8ehaZb6ofFs9lp8dtBFOo0EZEVzI0l7GFlbG4sA5Usq/ZmwWoApD4nfFgeM/FGhS+DVS5t/DF5qmiLBp7y2d3eJM0cMMl+1xHCru23bBgM0WJne3LmCIAVfG3x0tra+nbwJp9/JHpNpNFbFoLUm+Nn5lxEkgvpRIgmygZ1h2uI0Bkjke7gAK/xJ8ffGWe+/snwZ4Nezl1HRdTuILvVIYB/Z90lvp5tlkmS5lhLCS5vV2Ff3slsqjbCHuSAdr4/1n4k6HFoSeGNKtPEd2NPvpNR/0SOG3mu47bdbIJJL5Htlln+X5YrrAOGMeN5AOO8V+IfjpqGqDT/DWk6fpkH/AAkvlPqmqabB5cWjrLF+8CJqLmZ2HmdomaPzCUgdYhMAemeAvE+veIrvX/7Y0OTSrSC/ni06ZkKCWCOaSD5g5Dl2aBpg3lrGYrmAI0hDtQB19ABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFAGJ44u9c0/wAF6/deGLKDUvEsOn3Eml2V0+yKe6EbGGNzuXCs+0E5HBPIoA4vwr43+JdxPFa+IPhwlqE0+3kl1Gz1i3aOW8eQK8awliyJGjCR2LsQVlSPztsbygFuw8ceOptVtUu/h1Na6dM4Ekw1W2eWBDczxBiobDN5QtZ2UHCpJOod5IkjmAL2ga547vYfEw1HwxpdnNaTTrorNqjBdRUSS+UZQsTm3UxiDLfvG3NIfLUKoYAg8JeNPGWsyP8A238P7jw4j6hJbwk6nbXRFsElaO4l2N8rFo40Ma79pmUh2UMVAO8U5UHGM9qAFoAKACgAoAKACgAoAKACgCrqlvJeabdwQyCKWWJ40kO7CkggH5WVuP8AZZT6EHmgDz7T9CSyb7XDqmsm8OI5xdf2tJEWllEeUhechFBByRny1Ikyq8kAraRpA8TX0TDU9ZRbhGmCzQa1p4EKFYQh8ydQkuBKckBn3RybTt3MAdlH4ZuI4RF9vk8uM2qxZnuS6xwuGId/OzIzDILnlsjeHA20AQWngOEaalleahqU6Rq8cbw6rexyFGHO9/PLs2SxDFsrkAYxmgDo7O1SxtIbaNpHjhRY1aaVpXIAwNzsSzHjksST1JNAE1ABQAUAFABQAUAFABQAUARzxmWF0WRomI4dMZU+oyCPzoA5+y8KajazNJN4u1m9BZm2TxWYABQqF+S3XhSdw75AySMggGzpllJp9mIZbya+cO7GedUVjuYsBhFVcAHaOM4AySckgFugAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKAK2p6nZ6Lp11qGoXUFjYWsTT3F1cyCOKGNQSzuxICqACSTwAKAMK++JfhbR/DGm+IdW1yz0HR9RWI21zrb/YN5kTeiFZ9jK5GfkYBgQQQCCKAKL/ABp8BRata6bL4w0WG8vLSzvrRZb2NFu4bqSSO2eFyQsvmPE6qEJJO3j5lyAaNr8SfCV/r40O28UaNc62YpJhpsN/E9yY45XhkcRht21JYpY2OMBo3U4KkUAaUPiPSrm5e3i1K0lnSQwtEk6lhIM5TAOdwweOtAGTF8TvCc3jO/8ACSeIdPPiWwjgludM88edGJklkiBHdikEr7R8wRdxAUgkAXRviX4W8SyRromvWOvBr+TS3fSJReJBdJE0rxTNFuWFgiHPmFeSi/edQQDpGbbjgsT2FADfMb/nk/5j/GgA8xv+eT/mP8aADzG/55P+Y/xoAPMb/nk/5j/GgA8xv+eT/mP8aADzG/55P+Y/xoAepyOQV9jQBS1zUDpOj316qCQ20EkwQnG7apOM/hXnZjipYLBVsVFXcIykl3aTaRE5ckXLsjwS3+J2k2trb2UHw706GyFwHEUaQiOIxRCGKXaB/wA8o440wCwXapChSF/Gl4i1Wk/ZQ2v8U/u+Hc8D+1Jfyr8f8j0T4b2Xh3xZ4dlnXwnpOnQqHsPs0dpEV8lgXZCAoG0maTK9Ms3941+kcM53LPsJPETgouM3HR3WiTvrZ9T1sLXeIpubVtTstR8MaPq91FdX+k2N7cxSRTRzXFskjo8TM0TAkEgozuVI5UsxGMmvrjsGR+E9Di0N9FTRtPTRng+zNpy2qC3aLbt8sx42ldvG3GMcUAQan4C8M63rFvq2o+HdJv8AVbYqYL66sYpJ4irBl2uyllwyqRg8EA9qAG6X4A8L6JfG907w3pFheGRZTcWtjFHIXVZEVtyqDkLNKoPYSOOjHIBv0AFABQAUAFABQAUAFACEA9Rmk0nugDaPQVVyeVdgAA6DFIoWgAoAKACgAoAKACgAoAKACgAoAKAP/9k=\";s:9:\"timestamp\";i:1305598471825;}i:7;a:3:{s:9:\"timestamp\";i:1305598771825;s:4:\"data\";s:3667:\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAMCAgMCAgMDAwMEAwMEBQgFBQQEBQoHBwYIDAoMDAsKCwsNDhIQDQ4RDgsLEBYQERMUFRUVDA8XGBYUGBIUFRQBAwQEBQQFCQUFCRQNCw0UFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFP/AABEIAFMAeAMBEQACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4+Tl5ufo6ery8/T19vf4+fr/2gAMAwEAAhEDEQA/AP1NvJ5La0nmit5LuWNGZbeIqHkIGQoLEKCenJA9SKAM+y1m8umthLoV/ZiVSXaaS3IhPHDbJWyeT93I+U89MgGtQAUAFABQAUAFABQAUAFABQAhoAyb7Wry0sxNFoOoXsnnNGbeCS3DhRnEmXlVdpwMDO7kZA5wAW9JvZtR0+K4uLC40uZ87rS6aNpI8EgbjGzryBnhj19aALlABQAUAFABQAUAFABQAUAFABQAUAFABQAUAc58R215Ph54nbwr/wAjQNLuf7J4Q/6Z5TeR/rPk/wBZt+98vrxQB4Vpmt/tNWXiLxZ/aGheH7zTltp30s2phmie4S3sI4RADPBII5Jn1CdknOR5YiEyqUkIBoaj4m/aGXx3bS6b4W0y58MjQAHhvzb2TNqrranLCO6uGMaP5yna67FNwR9paO3E4B0M/ij40FfCUyeF9LhS616CDWrdEjnltNLli84yqTexr5kDn7LIVMhcg3EcWMQEAj1HxB8am8P6s8ehaZb6ofFs9lp8dtBFOo0EZEVzI0l7GFlbG4sA5Usq/ZmwWoApD4nfFgeM/FGhS+DVS5t/DF5qmiLBp7y2d3eJM0cMMl+1xHCru23bBgM0WJne3LmCIAVfG3x0tra+nbwJp9/JHpNpNFbFoLUm+Nn5lxEkgvpRIgmygZ1h2uI0Bkjke7gAK/xJ8ffGWe+/snwZ4Nezl1HRdTuILvVIYB/Z90lvp5tlkmS5lhLCS5vV2Ff3slsqjbCHuSAdr4/1n4k6HFoSeGNKtPEd2NPvpNR/0SOG3mu47bdbIJJL5Htlln+X5YrrAOGMeN5AOO8V+IfjpqGqDT/DWk6fpkH/AAkvlPqmqabB5cWjrLF+8CJqLmZ2HmdomaPzCUgdYhMAemeAvE+veIrvX/7Y0OTSrSC/ni06ZkKCWCOaSD5g5Dl2aBpg3lrGYrmAI0hDtQB19ABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFAGJ44u9c0/wAF6/deGLKDUvEsOn3Eml2V0+yKe6EbGGNzuXCs+0E5HBPIoA4vwr43+JdxPFa+IPhwlqE0+3kl1Gz1i3aOW8eQK8awliyJGjCR2LsQVlSPztsbygFuw8ceOptVtUu/h1Na6dM4Ekw1W2eWBDczxBiobDN5QtZ2UHCpJOod5IkjmAL2ga547vYfEw1HwxpdnNaTTrorNqjBdRUSS+UZQsTm3UxiDLfvG3NIfLUKoYAg8JeNPGWsyP8A238P7jw4j6hJbwk6nbXRFsElaO4l2N8rFo40Ma79pmUh2UMVAO8U5UHGM9qAFoAKACgAoAKACgAoAKACgCrqlvJeabdwQyCKWWJ40kO7CkggH5WVuP8AZZT6EHmgDz7T9CSyb7XDqmsm8OI5xdf2tJEWllEeUhechFBByRny1Ikyq8kAraRpA8TX0TDU9ZRbhGmCzQa1p4EKFYQh8ydQkuBKckBn3RybTt3MAdlH4ZuI4RF9vk8uM2qxZnuS6xwuGId/OzIzDILnlsjeHA20AQWngOEaalleahqU6Rq8cbw6rexyFGHO9/PLs2SxDFsrkAYxmgDo7O1SxtIbaNpHjhRY1aaVpXIAwNzsSzHjksST1JNAE1ABQAUAFABQAUAFABQAUARzxmWF0WRomI4dMZU+oyCPzoA5+y8KajazNJN4u1m9BZm2TxWYABQqF+S3XhSdw75AySMggGzpllJp9mIZbya+cO7GedUVjuYsBhFVcAHaOM4AySckgFugAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKAK2p6nZ6Lp11qGoXUFjYWsTT3F1cyCOKGNQSzuxICqACSTwAKAMK++JfhbR/DGm+IdW1yz0HR9RWI21zrb/YN5kTeiFZ9jK5GfkYBgQQQCCKAKL/ABp8BRata6bL4w0WG8vLSzvrRZb2NFu4bqSSO2eFyQsvmPE6qEJJO3j5lyAaNr8SfCV/r40O28UaNc62YpJhpsN/E9yY45XhkcRht21JYpY2OMBo3U4KkUAaUPiPSrm5e3i1K0lnSQwtEk6lhIM5TAOdwweOtAGTF8TvCc3jO/8ACSeIdPPiWwjgludM88edGJklkiBHdikEr7R8wRdxAUgkAXRviX4W8SyRromvWOvBr+TS3fSJReJBdJE0rxTNFuWFgiHPmFeSi/edQQDpGbbjgsT2FADfMb/nk/5j/GgA8xv+eT/mP8aADzG/55P+Y/xoAPMb/nk/5j/GgA8xv+eT/mP8aADzG/55P+Y/xoAepyOQV9jQBS1zUDpOj316qCQ20EkwQnG7apOM/hXnZjipYLBVsVFXcIykl3aTaRE5ckXLsjwS3+J2k2trb2UHw706GyFwHEUaQiOIxRCGKXaB/wA8o440wCwXapChSF/Gl4i1Wk/ZQ2v8U/u+Hc8D+1Jfyr8f8j0T4b2Xh3xZ4dlnXwnpOnQqHsPs0dpEV8lgXZCAoG0maTK9Ms3941+kcM53LPsJPETgouM3HR3WiTvrZ9T1sLXeIpubVtTstR8MaPq91FdX+k2N7cxSRTRzXFskjo8TM0TAkEgozuVI5UsxGMmvrjsGR+E9Di0N9FTRtPTRng+zNpy2qC3aLbt8sx42ldvG3GMcUAQan4C8M63rFvq2o+HdJv8AVbYqYL66sYpJ4irBl2uyllwyqRg8EA9qAG6X4A8L6JfG907w3pFheGRZTcWtjFHIXVZEVtyqDkLNKoPYSOOjHIBv0AFABQAUAFABQAUAFACEA9Rmk0nugDaPQVVyeVdgAA6DFIoWgAoAKACgAoAKACgAoAKACgAoAKAP/9k=\";s:6:\"timing\";i:2400;}i:8;a:3:{s:9:\"timestamp\";i:1305599071825;s:6:\"timing\";i:2700;s:4:\"data\";s:3667:\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAMCAgMCAgMDAwMEAwMEBQgFBQQEBQoHBwYIDAoMDAsKCwsNDhIQDQ4RDgsLEBYQERMUFRUVDA8XGBYUGBIUFRQBAwQEBQQFCQUFCRQNCw0UFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFP/AABEIAFMAeAMBEQACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4+Tl5ufo6ery8/T19vf4+fr/2gAMAwEAAhEDEQA/AP1NvJ5La0nmit5LuWNGZbeIqHkIGQoLEKCenJA9SKAM+y1m8umthLoV/ZiVSXaaS3IhPHDbJWyeT93I+U89MgGtQAUAFABQAUAFABQAUAFABQAhoAyb7Wry0sxNFoOoXsnnNGbeCS3DhRnEmXlVdpwMDO7kZA5wAW9JvZtR0+K4uLC40uZ87rS6aNpI8EgbjGzryBnhj19aALlABQAUAFABQAUAFABQAUAFABQAUAFABQAUAc58R215Ph54nbwr/wAjQNLuf7J4Q/6Z5TeR/rPk/wBZt+98vrxQB4Vpmt/tNWXiLxZ/aGheH7zTltp30s2phmie4S3sI4RADPBII5Jn1CdknOR5YiEyqUkIBoaj4m/aGXx3bS6b4W0y58MjQAHhvzb2TNqrranLCO6uGMaP5yna67FNwR9paO3E4B0M/ij40FfCUyeF9LhS616CDWrdEjnltNLli84yqTexr5kDn7LIVMhcg3EcWMQEAj1HxB8am8P6s8ehaZb6ofFs9lp8dtBFOo0EZEVzI0l7GFlbG4sA5Usq/ZmwWoApD4nfFgeM/FGhS+DVS5t/DF5qmiLBp7y2d3eJM0cMMl+1xHCru23bBgM0WJne3LmCIAVfG3x0tra+nbwJp9/JHpNpNFbFoLUm+Nn5lxEkgvpRIgmygZ1h2uI0Bkjke7gAK/xJ8ffGWe+/snwZ4Nezl1HRdTuILvVIYB/Z90lvp5tlkmS5lhLCS5vV2Ff3slsqjbCHuSAdr4/1n4k6HFoSeGNKtPEd2NPvpNR/0SOG3mu47bdbIJJL5Htlln+X5YrrAOGMeN5AOO8V+IfjpqGqDT/DWk6fpkH/AAkvlPqmqabB5cWjrLF+8CJqLmZ2HmdomaPzCUgdYhMAemeAvE+veIrvX/7Y0OTSrSC/ni06ZkKCWCOaSD5g5Dl2aBpg3lrGYrmAI0hDtQB19ABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFAGJ44u9c0/wAF6/deGLKDUvEsOn3Eml2V0+yKe6EbGGNzuXCs+0E5HBPIoA4vwr43+JdxPFa+IPhwlqE0+3kl1Gz1i3aOW8eQK8awliyJGjCR2LsQVlSPztsbygFuw8ceOptVtUu/h1Na6dM4Ekw1W2eWBDczxBiobDN5QtZ2UHCpJOod5IkjmAL2ga547vYfEw1HwxpdnNaTTrorNqjBdRUSS+UZQsTm3UxiDLfvG3NIfLUKoYAg8JeNPGWsyP8A238P7jw4j6hJbwk6nbXRFsElaO4l2N8rFo40Ma79pmUh2UMVAO8U5UHGM9qAFoAKACgAoAKACgAoAKACgCrqlvJeabdwQyCKWWJ40kO7CkggH5WVuP8AZZT6EHmgDz7T9CSyb7XDqmsm8OI5xdf2tJEWllEeUhechFBByRny1Ikyq8kAraRpA8TX0TDU9ZRbhGmCzQa1p4EKFYQh8ydQkuBKckBn3RybTt3MAdlH4ZuI4RF9vk8uM2qxZnuS6xwuGId/OzIzDILnlsjeHA20AQWngOEaalleahqU6Rq8cbw6rexyFGHO9/PLs2SxDFsrkAYxmgDo7O1SxtIbaNpHjhRY1aaVpXIAwNzsSzHjksST1JNAE1ABQAUAFABQAUAFABQAUARzxmWF0WRomI4dMZU+oyCPzoA5+y8KajazNJN4u1m9BZm2TxWYABQqF+S3XhSdw75AySMggGzpllJp9mIZbya+cO7GedUVjuYsBhFVcAHaOM4AySckgFugAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKAK2p6nZ6Lp11qGoXUFjYWsTT3F1cyCOKGNQSzuxICqACSTwAKAMK++JfhbR/DGm+IdW1yz0HR9RWI21zrb/YN5kTeiFZ9jK5GfkYBgQQQCCKAKL/ABp8BRata6bL4w0WG8vLSzvrRZb2NFu4bqSSO2eFyQsvmPE6qEJJO3j5lyAaNr8SfCV/r40O28UaNc62YpJhpsN/E9yY45XhkcRht21JYpY2OMBo3U4KkUAaUPiPSrm5e3i1K0lnSQwtEk6lhIM5TAOdwweOtAGTF8TvCc3jO/8ACSeIdPPiWwjgludM88edGJklkiBHdikEr7R8wRdxAUgkAXRviX4W8SyRromvWOvBr+TS3fSJReJBdJE0rxTNFuWFgiHPmFeSi/edQQDpGbbjgsT2FADfMb/nk/5j/GgA8xv+eT/mP8aADzG/55P+Y/xoAPMb/nk/5j/GgA8xv+eT/mP8aADzG/55P+Y/xoAepyOQV9jQBS1zUDpOj316qCQ20EkwQnG7apOM/hXnZjipYLBVsVFXcIykl3aTaRE5ckXLsjwS3+J2k2trb2UHw706GyFwHEUaQiOIxRCGKXaB/wA8o440wCwXapChSF/Gl4i1Wk/ZQ2v8U/u+Hc8D+1Jfyr8f8j0T4b2Xh3xZ4dlnXwnpOnQqHsPs0dpEV8lgXZCAoG0maTK9Ms3941+kcM53LPsJPETgouM3HR3WiTvrZ9T1sLXeIpubVtTstR8MaPq91FdX+k2N7cxSRTRzXFskjo8TM0TAkEgozuVI5UsxGMmvrjsGR+E9Di0N9FTRtPTRng+zNpy2qC3aLbt8sx42ldvG3GMcUAQan4C8M63rFvq2o+HdJv8AVbYqYL66sYpJ4irBl2uyllwyqRg8EA9qAG6X4A8L6JfG907w3pFheGRZTcWtjFHIXVZEVtyqDkLNKoPYSOOjHIBv0AFABQAUAFABQAUAFACEA9Rmk0nugDaPQVVyeVdgAA6DFIoWgAoAKACgAoAKACgAoAKACgAoAKAP/9k=\";}i:9;a:3:{s:9:\"timestamp\";i:1305599371825;s:6:\"timing\";i:3000;s:4:\"data\";s:3667:\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAMCAgMCAgMDAwMEAwMEBQgFBQQEBQoHBwYIDAoMDAsKCwsNDhIQDQ4RDgsLEBYQERMUFRUVDA8XGBYUGBIUFRQBAwQEBQQFCQUFCRQNCw0UFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFP/AABEIAFMAeAMBEQACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4+Tl5ufo6ery8/T19vf4+fr/2gAMAwEAAhEDEQA/AP1NvJ5La0nmit5LuWNGZbeIqHkIGQoLEKCenJA9SKAM+y1m8umthLoV/ZiVSXaaS3IhPHDbJWyeT93I+U89MgGtQAUAFABQAUAFABQAUAFABQAhoAyb7Wry0sxNFoOoXsnnNGbeCS3DhRnEmXlVdpwMDO7kZA5wAW9JvZtR0+K4uLC40uZ87rS6aNpI8EgbjGzryBnhj19aALlABQAUAFABQAUAFABQAUAFABQAUAFABQAUAc58R215Ph54nbwr/wAjQNLuf7J4Q/6Z5TeR/rPk/wBZt+98vrxQB4Vpmt/tNWXiLxZ/aGheH7zTltp30s2phmie4S3sI4RADPBII5Jn1CdknOR5YiEyqUkIBoaj4m/aGXx3bS6b4W0y58MjQAHhvzb2TNqrranLCO6uGMaP5yna67FNwR9paO3E4B0M/ij40FfCUyeF9LhS616CDWrdEjnltNLli84yqTexr5kDn7LIVMhcg3EcWMQEAj1HxB8am8P6s8ehaZb6ofFs9lp8dtBFOo0EZEVzI0l7GFlbG4sA5Usq/ZmwWoApD4nfFgeM/FGhS+DVS5t/DF5qmiLBp7y2d3eJM0cMMl+1xHCru23bBgM0WJne3LmCIAVfG3x0tra+nbwJp9/JHpNpNFbFoLUm+Nn5lxEkgvpRIgmygZ1h2uI0Bkjke7gAK/xJ8ffGWe+/snwZ4Nezl1HRdTuILvVIYB/Z90lvp5tlkmS5lhLCS5vV2Ff3slsqjbCHuSAdr4/1n4k6HFoSeGNKtPEd2NPvpNR/0SOG3mu47bdbIJJL5Htlln+X5YrrAOGMeN5AOO8V+IfjpqGqDT/DWk6fpkH/AAkvlPqmqabB5cWjrLF+8CJqLmZ2HmdomaPzCUgdYhMAemeAvE+veIrvX/7Y0OTSrSC/ni06ZkKCWCOaSD5g5Dl2aBpg3lrGYrmAI0hDtQB19ABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFAGJ44u9c0/wAF6/deGLKDUvEsOn3Eml2V0+yKe6EbGGNzuXCs+0E5HBPIoA4vwr43+JdxPFa+IPhwlqE0+3kl1Gz1i3aOW8eQK8awliyJGjCR2LsQVlSPztsbygFuw8ceOptVtUu/h1Na6dM4Ekw1W2eWBDczxBiobDN5QtZ2UHCpJOod5IkjmAL2ga547vYfEw1HwxpdnNaTTrorNqjBdRUSS+UZQsTm3UxiDLfvG3NIfLUKoYAg8JeNPGWsyP8A238P7jw4j6hJbwk6nbXRFsElaO4l2N8rFo40Ma79pmUh2UMVAO8U5UHGM9qAFoAKACgAoAKACgAoAKACgCrqlvJeabdwQyCKWWJ40kO7CkggH5WVuP8AZZT6EHmgDz7T9CSyb7XDqmsm8OI5xdf2tJEWllEeUhechFBByRny1Ikyq8kAraRpA8TX0TDU9ZRbhGmCzQa1p4EKFYQh8ydQkuBKckBn3RybTt3MAdlH4ZuI4RF9vk8uM2qxZnuS6xwuGId/OzIzDILnlsjeHA20AQWngOEaalleahqU6Rq8cbw6rexyFGHO9/PLs2SxDFsrkAYxmgDo7O1SxtIbaNpHjhRY1aaVpXIAwNzsSzHjksST1JNAE1ABQAUAFABQAUAFABQAUARzxmWF0WRomI4dMZU+oyCPzoA5+y8KajazNJN4u1m9BZm2TxWYABQqF+S3XhSdw75AySMggGzpllJp9mIZbya+cO7GedUVjuYsBhFVcAHaOM4AySckgFugAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKAK2p6nZ6Lp11qGoXUFjYWsTT3F1cyCOKGNQSzuxICqACSTwAKAMK++JfhbR/DGm+IdW1yz0HR9RWI21zrb/YN5kTeiFZ9jK5GfkYBgQQQCCKAKL/ABp8BRata6bL4w0WG8vLSzvrRZb2NFu4bqSSO2eFyQsvmPE6qEJJO3j5lyAaNr8SfCV/r40O28UaNc62YpJhpsN/E9yY45XhkcRht21JYpY2OMBo3U4KkUAaUPiPSrm5e3i1K0lnSQwtEk6lhIM5TAOdwweOtAGTF8TvCc3jO/8ACSeIdPPiWwjgludM88edGJklkiBHdikEr7R8wRdxAUgkAXRviX4W8SyRromvWOvBr+TS3fSJReJBdJE0rxTNFuWFgiHPmFeSi/edQQDpGbbjgsT2FADfMb/nk/5j/GgA8xv+eT/mP8aADzG/55P+Y/xoAPMb/nk/5j/GgA8xv+eT/mP8aADzG/55P+Y/xoAepyOQV9jQBS1zUDpOj316qCQ20EkwQnG7apOM/hXnZjipYLBVsVFXcIykl3aTaRE5ckXLsjwS3+J2k2trb2UHw706GyFwHEUaQiOIxRCGKXaB/wA8o440wCwXapChSF/Gl4i1Wk/ZQ2v8U/u+Hc8D+1Jfyr8f8j0T4b2Xh3xZ4dlnXwnpOnQqHsPs0dpEV8lgXZCAoG0maTK9Ms3941+kcM53LPsJPETgouM3HR3WiTvrZ9T1sLXeIpubVtTstR8MaPq91FdX+k2N7cxSRTRzXFskjo8TM0TAkEgozuVI5UsxGMmvrjsGR+E9Di0N9FTRtPTRng+zNpy2qC3aLbt8sx42ldvG3GMcUAQan4C8M63rFvq2o+HdJv8AVbYqYL66sYpJ4irBl2uyllwyqRg8EA9qAG6X4A8L6JfG907w3pFheGRZTcWtjFHIXVZEVtyqDkLNKoPYSOOjHIBv0AFABQAUAFABQAUAFACEA9Rmk0nugDaPQVVyeVdgAA6DFIoWgAoAKACgAoAKACgAoAKACgAoAKAP/9k=\";}}s:5:\"scale\";i:3000;}}i:9;a:6:{s:2:\"id\";s:16:\"final-screenshot\";s:5:\"title\";s:16:\"Final Screenshot\";s:11:\"description\";s:45:\"The last screenshot captured of the pageload.\";s:5:\"score\";N;s:16:\"scoreDisplayMode\";s:11:\"informative\";s:7:\"details\";a:4:{s:9:\"timestamp\";i:1305597524010;s:6:\"timing\";i:1152;s:4:\"data\";s:15847:\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAFcAfQDASIAAhEBAxEB/8QAHAABAAIDAQEBAAAAAAAAAAAAAAUGAQQHAwII/8QASBAAAQMDAwEFBQYDBQYDCQAAAQACAwQFEQYSITEHEyJBURQWMmGRFVJWcZTSI0JUCGKBgpIXJDM1crI0Njd0dnehscLE0fH/xAAaAQEBAAMBAQAAAAAAAAAAAAAABAIDBgUB/8QAJhEBAAIBAwIFBQAAAAAAAAAAAAECAwQFERQhEhZRU6EGYXGRsf/aAAwDAQACEQMRAD8A/VKIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICr2sLlcLXFRz2/u3RmR4mjNO6V7mtie/wYe3B8GOc/ErCiCiR6+kdDHK60gRPIZ3jakOYHHvMHcG42AREud1GehXtcdXVDKexVVM2mjgrsmRh/iOd42tAjO5odwXHjLumGnlXGpp4amB8NREyWF4w5j25B/MJBDFTwRwwRsihjaGsYwYa0DoAPJBQYu0KogtUc9xtQbUCFksjGTY37o43/wwW847zLh/KATkq4afun2vbW1QjYzL3M/hyd4x2DjLXYGR88LfmijmifFMxr43tLXNcMhwPUEei+wABgcBAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQF8TucyCR7BlzWkgepwvtEFFi1deKKGkF3s5M1QN4MYMYjaWZBeAX4G4OBw4kDacZOFu2nV81xpKqoFpmjZFDHKxxflr94HyyGjOc4PAJxxhWuWNksbo5WNfG4Yc1wyCPQhZYxsbGsY0NY0YDQMAD0QUs6wuFPFTGoslRUPlpWVJ9nBGC7PgDSMkjHXjlzQcZyPpmsa+WSRkGn53bXubudKQ0gPawHhhPO7dgj4efkrmiChSa8q97H09iqJ4CZWnY48OY8NALiAGnh3h55LOeTi+g5APRYa1rRhrQBnOAFlAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQERc17e9Rag05pO2y6Rmjhu1bdIKGMyRteD3gdxhwI6gcoOlIqVbddU0/ZNHrObAjFuNXLGOMSNb4ox894LfzVF7P9a6juXZzW12qr5TWu7Ut/FufOaMPaAHxgw7Gjq4uc3d5Zz5IO3oqdfu0vSdhuFVQXO6hlfSua2amjgklkblgeDta0kja4EkcDPKkJNaacj0mzUz7vTCxvaHMq8ktdk4wB1Ls8bcZzxhBYUXLqDtIp7/2m2S1aerxLbpaGqlq4JKd0UrZGd3sJa9oc0YcceRUd2adsllq9I2p+rL3E28zPeyokFO4RRu71zWB72t2MJaG8Ej180HYkVI94a//AGz+7/fM+yfsD2/u9gz3vtGzdu642+XRZg7VNGT3VlBFe4jK+b2dk3dSCB8n3BNt7sn8nILsih4dS2iY3kMrWZs7i2vDmub3GGb+cjkbecjIWvHrOwS6et98juLH2u4SsgpZmsce9e92xrQ3Gcl3HRBYEVFufazoq21E8NXe2iWnlfDO2Onlk7lzHFrt+1p2jcCMng44yrDVans1LJZmS18ebw7ZQFgL2znbuGCARjHOTwgmUXxNLHBC+WZ7Y4mNLnPccBoHUk+QVKoO1bRtfcqWiprxmSrk7mnkfTyshmf0DWSuaGOJ8sHnyQXhFpXueSls1fUQnEsVPJIw4zghpIXN+zvtdsFy05p2O+XqL7brIImzv7hzYfaHNB2GQN7trufhzlB1VFSaDUVa7tXv9mqaiNtporVT1bGuaBse57w5xd1xho6r6tXajo663WC30V5jfPUPMUD3QyMineP5Y5HNDHn5AnPkguiKran7QNM6ZuLKC8XIRVjo+9MMUMkzmR/feGNO1vzOFKab1DatTUD62w1sdbSMldAZY87S9vUAnr+Y4KCVRVrVOuNP6Xq4aS8VxZWTMMjKaGGSeUsBxu2RtcQ35kYVX152i0w7NhqbSF1p5IBXU1O+oLOGNdMxsjXNeMtIaT1AI6oOmoqppvtC0xqS6G3Wi6NlrdhlZFJFJEZWDq6Pe0B7fm3K17x2oaPs91nt9feWMqKdwZUOZDJJHA49BJI1paw/mRjzQXNFGPv9rZdrfbTWRmsuEL6ilY0FwljZgucHAYx4h5854UJq/XdqsNr1K9lQ2S42WlbPNT9287XPae6BwOjiOo6eeEFuRVjs11RHrDRdru7HB08sDPaQ2J8bWzbGl7WhwyQCeDyPmVrXvtK0pZbnVW6vuhFwpXAT00NNLNJGC0P3FrGk7drgd3QZ6oLgi5r2hdoEFrtWjr1Z7tSCyXK7RQ1NX4XRupyx5dyenw/mMYVh0vr3Tmqquqo7Jce9rKePvXwywyQvDD0eGvaCW/McchBaUXJ7brC5PrOzWGnvkF3pb1PWsq6yOk7ltQI43ubhpGWYIxx1x81Zbz2n6Ps10nt9wvDGVFO4NqCyGSSOAnoJHtaWsP8A1EILmiruo9a6f07BRS3O4NHtwLqVkEb53zgAEuY2MOJGCOQMchZt+tdO3DTdRf6a7UxtFOXCeokJjETm9WvDgC13I4IzyPVBYUVU0x2haY1NcfYLRct9aY+9ZDNBJA+Rn3mCRrdw+YytGt7V9F0dRPBNeQX00r4ajZTyvFO5riw94Q0hg3AjLsA444QXlFzXXOv4tN630g2e508OnbjS1c08m0PEpa1hi2EAk5LuA3rlTdF2k6TrbDcrxBdR7DbXNbWF8EjZKck4G+Mt3gHPXGOvoUFvRRl3v1ttEFFNcKpsUdbUR0tOQC7vZZPgaAAeqk0BERAREQEREBERAREQEREBERAREQEREBERAREQFzHt3/8AA6K/96rd/wBzl05ec9PDUBgnijlDHB7d7Q7a4dCM9CPVBwFtNMzXFT2X90/7OmvTb6Dt8HsB/jOj/L2hob/mKiqn/wBPtW//ABB//KiX6S9nh9p9p7mP2jZ3fe7Ru25ztz1xnyXmaCjMb4zSU+x8neub3Yw5+c7iMdc+fVBzjs/gjPbP2pTlje9325m/HO32bOFzW291b9K6VuVcwDT1r1nWvrPD4IGmSVscjh5Na8jnyyF+lo6eGOaWWOKNksuO8e1oDn4GBk+eAvhtHTNp5IG08IgkyXxhg2uz1yOhz5oOR1F8sV7/ALQenX2Orpa2eGzVjaiopniRmCWFjN44JHiOPLcPVUzROp9KU/8AZpuNoqKqjFykp6yndQEjv5qiR7+72s+JxOWYIB6fLj9E0Npt1A2NtDb6SmbHu2CGFrNu7rjA4zgZ/JfDbJam1MFQ22UQqIBiKUQMDox1w04yOp6IOFfZd4Go/sr+J9vf7NvZsbvF3+/bjPru80uuptK1X9m2KxUk9LLdJLbFQQ2phBqRWgBu3uviDhIN2ceWV+gfZ4fafaO6j9o2d33u0btuc4z1xnyWq20W1lxNwbb6NteeDUiFokP+bGUHAu0amuNjv0dny/2jXVro7XNI0Z/3qORkcrj+cMruf7q9NG0D3dptPoHuS216WutXemt2+ARSNa6maD8nTyH/ACL9BTU0E0kUk0MckkR3Ruc0EsPqD5IymgZUPqGQxtnkAa+QNAc4DoCepQcj7L6WB2lO04uiYTPf7qJMtzvHTB9RhS/ZHd7ZQdl2gKe5VMMVVW0ccNIyT4pHhmcN+eF0WKmgiZI2KGJjZHF7w1gAc49SfUlfAoaQNp2ilgDafmEd2MRf9Pp/gghe0a4MtWg7/XS29tyjgopXuo3DLZhtOWuH3fX5ZX581ve5qnRemTU6ysdVE+soJYrNZ6NjWUzBIzlz9zntawcZO3kgfJfqUgEEEZBUbT2G0U0c0dPaqCJkxBlaynY0SEHOXADnn1QNS/8Alu6/+yS/9hX58h1Fpir/ALL1LYKGellvFRQx0kNsjINQ6sc4YIj+LO/x7sdOV+lHNa5pa4AtIwQRwQtKKzWyGsZVxW6jZVRsEbJmwND2txjaHYyB8kHCNaW661d57Q6Cj3zXV2kKNhEfLpHB0m8D1JAcP8Vs9o2pdM6h7GLbZtK1dJU3arNHDa6CmcDPDM17D8A5YWAOyTjH+K7w2CFtQ6dsUYnc0NdIGjcQOgJ64WrT2i201dJW09vo4qyT452QtbI783AZKDlWm79aNH9o+vo9Y11Lbqyunhq6aoq3CNtTTCENDWE/FtcHDaOcnot3+zhNS1GjLvNb4TBRSX2ufBEWbCxhky0bfLAxx5KX1Hp3Vz9QVVbYrpZqmiqNjmUt5pHS+xPaMF0LmkcHqQfPzU32faXbpHTcdtNW6tqXyyVNTVOYGGaaR5e920dBk8D0AQc91NqKYdq16t1HdNP6TkpaGB0t0uFO2SorWO3ECPc9rdjOQc55XM2VdNN2Q65nq6l90pTrCGWWYwBhqYzJAS8RgADeMkADzX6luFpttxlikuFvpKqSI5jdPC15Z+RI4Xo6go3d5upKc945r35jHicOhPHJGBgoOTavvdn1Vrjs7p9I11JcK+lrnVsktG8SCnpBE4P3lvwh2WjBxkqL7NNSaa012X3mz6urKOlu9JUVrbpSVTgJqh75HkENPMm9pbgjOei7XQ2ugt8kz6ChpaZ8zt0roYmsLz6uIHJ/NfFTaLbVVsVZVW+jmq4v+HPJC1z2fk4jIQcB0hK/SdZ2PT6tmFvjFprqZ01W7Y2Jztjo43OPDTsAGD6YUjBdaPUGpO2iqs8zaylfZIIopovEyUtgmaSw/wAw3AjI4yCu5XCgo7jTmnuFLT1UBOTHPGHtJ/I8L6pqKlpc+zU0MOWhn8OMN8I6DjyGeAgqfY1cqK5dmGmnW+rgqRBb6eCUxPDu7kbE3cx2Ojh5g8ql6W1HpyxdsvaYy919Fb6yWSjeyWqkbGHxNpm5DXO64JyR8wuv0NDSUETo6Glgpo3OL3NhjDAXHqSB5/NVO1aGpodWaqut1jorhT3iennigmgD+5MUQj/myMnGchBxm30jajT+kp3QYtFx7QH1luikZgeyuMhYQ09ASC4D0K6bfWtb2/6fe0AOfYKxriOpAljIB+pXSJKaCURCWGJ4icHR7mA7COhHoVl1PC6ds7oozM1pa2QtG4A9QD1wg/N/Zx/y7sNx/U3X/slVg7M9Sab0z2c3206vraOku1LV1v2pS1TgJahz5HEODTzIHsLQCM56LtcdBRxCARUtOwQEmINjA7vPXbxxn5LyqrRbausiq6q30c9XF/w5pIWuez8nEZCD88WKhFs072dx3LUVZpDVbLVMKWuqoWPpnwukDvZ5BIQN4bsIHGB/gF5XW71l40jcJbjTWqtttl1TRVF0udngIguUAwZXuaM7i3wbsEjj5L9I3C30Vyp+4uNJT1cGc93PG2RufyIwvumpKalpW01LTww07RtbFGwNYB6ADhByPXV8tGqNbdnlNpOvpLldKe5itklopGy9xRiNwl3ubnaHZaMHqVE9m+rdIWSydoNNfK6hpaht8uMlVBO5ofUMLyBtaeXggbcDPIwu1260262GQ22gpKQynL+4hbHvPqcDlVfRWhKWxxXH7TiorhUT3apuUEroAXQiV+4NBOSCPUIOV6DtVVR3nsTpb3C4VcFsuMgZKPFGC1pYCD0IY4D5K40tqpbv2wdolrq4waWvstFFO0fzBwlaT+ePNdUfBC+eOZ8UbpowQx5aC5oPXB8srUulNUex1stnbSRXaSItimnjJaXAHbvxgloPllBw7swmr9SapsVkvTXEaBgmjrHOHhlqtzoYDz1xE1zwfVy7jYrxb7/aoLlZ6qOroZ93dzRnwuw4tOP8QR/goLs90vUadorjPd6uKuvd1qnVldURR7GFxAa1jAckMa0ADPz9VaKanhpYGw0sMcMLfhZG0NaPPgBB6IiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAuddr1VUw1ekqanN5dDVXGSOeC0z9zPM0U0rgA7c3gOaCeR0XRVA6r0zBqM258ldX0NRb5zUQT0T2te1xY5h+Jrhja9w6IOe6X1fX2tt2twiuVTXPusFHbrfeZsVELZYt26WUB2Y/BK4EF5w3HXgTU+vbtDXx2Y2akdfvtJtvfGKxwg2vp3zslD9m7GGEEbc5B68KUb2eWv2aq76ruc9xqJ4qk3KWoBqWSRZEZacbQGguG3bjxOyDkrYoND26lq6askqK2quEVb9oPqp5Gl80vcuhG7DQNoY4gNaABgfPIVaftCMEtNV3iilp5aA3OOripaoviJpmNcSAWjeCCCM4wStu7a/u9go5pL/ZKSKaS2zXGkZTVhkDu62b4pCWDa4CRpyMg8+nPtWaGbPq+H/dRJY5G11RWummBMslS1rHRtaBkNw0nJPmt9nZ3bJIKiG6VtzujZKJ9ujNZOCYIH43NYWtHJ2t8Ry7wjlB46x11NYKy4U1PbG1ktNS0dQwGbZ3jp6kwbehxjGc/NZ7QbrqC19mNfcImUdLe442lwimc+OPLwCWuLMng+bQvtvZ3b3vqZa+5XavqahlNHJPUzMLtsE3exgBrAB4uuBzk+fKseo7NTagsdZaq4yCmqozG90Ttr2+YIPqCAUFOuOurrSQXmvZZ6SW1WKRsNxkFW4SFwYx8phbsw5rA8fEWl2D089463d9mVVWKFp7m+ss4b3vxB0zIu86f384+XVfVV2e2+qfUCe43R1LWGN9fSiVoirnsa1u+QBuQXBjQ4MLQ7HIWars9ttRcpKk11zjp5K+O5mijmaIPaWOa4Pxt3clgy3OOpwDygz2Z3O8XW2XeW+GAyRXWsp4jE8uwxkzmhvwt4GMD1AyeVR7D2mVVDp+y0LjS1VyNuFdUT3KrfHvDpHtYxpDHkuOx3JwAAOuV1KwWCnsb7l7JUVL4q2qfVmGVwc2J7yXP2cAgFxJwSfkoJnZ3b6anpGWu5Xa2y09L7E6elmaHzQ7i4NfuaRwXOIcACMnB5Qe931iKTs5bqqkoJZRJTwzspJXd2/wDiFo2k4OCN3/yVeuOv9Q2x18FdYLdtsnczVjorg926KXkd3mIZcAHZDsDgYPPF1uWnKG4aZFhlM7aEMjjG2Ql+GFpb4nZJPhGSckrVu2jrbdBfhUvqAL1FFDU7HgYbGCG7eODyc9UEFV67rofbbmy1QO05RXH7OmnNSRUEiURPkbHsxta84wXZIBPoD5UWvrnJVUdRVWelistTdp7Q2ZtWXTB8b5WCQs2AbSYiMbsjKl6jQVtnuE0rqq4NoJ6ttfNbWyj2aScODt5G3d8TQ4tDg0kZI6rbj0fbWUVHSh1QYqW5PurMvGTM+R7yDx8OZHcemOUFIm1teKqt0feqqkZQabrXVNWDDVOfJJC2klkYJWbQMkNDwATgjCk9EdpLtRXi30c1JSMZcad1RCaWodM6DaA7ZMCxoaS09QSMgj0Jk6Ls5tVLWUEhq7jNR28y+x0EsrXU8DZGOY5gbtyW7XkDcTjgDAyFu6d0dTWOqp5Y7ndaqGkhNPSU9TOHR08Zxw0AAu4AALy4gDr1QeMMtce1erhNRKba2ywvbBuOwSmeQF2OmcADPyVtWo2hAu76/v5y50Ag7ncO7ADid2MZ3c4znottAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQFhz2tIDnNBd0BPVZVT1tpmpv8AWW+ammhj9njljJk6tL3RODgNpzju+mW5z1CC2AgjI5CKgw6PvgmxLqCp9n7sM2R1D2DiLaMBuC3DhuyDznkcLZqNM3+SsglGoagRxzl2xsjmAs3NcAeDuI/iNxxlrm5PhQXVFRTpfUUcM0FNf5RHJG1okkmke+NwiLSRnOcvcXcnjAx8tqfT16dbbVBFeJmT00j3TSOned7XOyASAC/a3gZx6nPQhcCQBknAWA4E4BBP5qq0WnbhOy6C9V7pm1lKKZkUczyyLO7c4A4BJy3nGeFEt0TdYRLJT3ZrKiXxucxz4w2V7Hd64FpzgybJA3oduD1yg6A97WDL3Bo9ScLLSHAFpBB6ELn910PcLjJTNnuj5ImTMmc6WZ8hGHEuDWOyznPBI4xjGFsVOjK2BscdmvFXSwNlD9gnLBzuc47QNvxuJ2hoB4HAAQXhYLmhwaXDceQM8qmWjT2oKG5QVE12dUxRPkJilqZHB4LcDcMYJ3c+jR5OPK2b1p2tqq+vnopKOOWpbmOskYTPSuERYBH6DJ3ZzwXO4OUFrJA6oqbbNN3innpnVd0fUMje15MtRI8hofu7vGA13H85G7y6Lwl0tfn1k0n27UOifV96IzUPDRHuccYAB+Fwbtzjwg56hBeUVSm07dfs+2U9LdH04pqRkMzGyvxK9gwMO6gEOfk/Fww/yqMGjb0PansvdRHJK8yjZVSjk9yNhJznDIntDiCfHnGUHQEVLudgv1S2Cnp7pNF3dvbAav2h4Jmw8F21uA4nLfEeR1HK8hpG8Goqt1/rvZ3SF0Lfa5ctb49o4wRgOaDyd23J5KC8gg5weiLn9Ro/UDpKj2fUVREx4eI9szwWZjaxpdwS8+HqSCOoOVfYImwwxxMLi1jQ0F7i44HqTyT8yg+0REBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBV7VV5uFqqLfHbrbNWid+JCyJzwxu9jeSPh4cXc5+E/mLCo673qhtJaK6R7N0b5SWxOftYzG5ztoOANzeT6oKpDqDUsVTKKu3OLS9gBZSylkbTCH44Bc478syOATyOMLf0jfLxWztpr1bZqfEEZMroXt3SFrSc8beSXem3bg8njak1nZo5zDJLUtkb8bTSy/w/i+Lw8cMcefIZ8wvB2vtPNj7ySrljZgFpkp5Gh2Qw8ZbzxIw/k780EML5quGtc2WhmfTw1UzHPNKSHwulxG/DRk7GhxIHLht9V5XHUWq6ggUVunpnGlldtFI922TumuY4lzcHLi4BowQRg88K0U2sLNVSiOnmnlcThu2mkO4AuBcPDy0FjgT04+YWbRq6zXd9M221L6j2h7mRlkL8ZDQ85OOBtLTk+oHU4QV4ao1FCKiCSz1BdE1rY5n0ssneOOzxHYMBvidnAyNnR2cDer7/fafUEMENnnfQzCId46MuDSXuDuW5xluHZPw7eQMrfk1jamW651bpsMoJu4kByMvJw0cjzJA+X5LB1naDSNqYZJ5YntLmSNp5Nj8NLjh23HABz6dOqDUuupLtRXGojjs889NGXjdHBI4jDMs5AIfvdgeH4cHPy97rf7lQ3dsDLXPNSd1E90sUEj9pdI1r8kDqGknABPBzhbVr1bZ7pXNo6Kpc+qdH3rY3RuYS3AIPIHUEEfI5UpaawXG10da2N8TamFkwY/4mhzQcH5jKChM1zen0tO8WciaaR0XdGCbLZGxyP7vp4nEx4yOG58XopF171N7e2NlqaI5ADudG8tjBmbHjjz2uLzz0aenVXXa3jgcHPTzWUFBh1ZqCSIGaxTUsjjEA11LNIGlwy7JaOmMnPljaRkreqb/fKe/RQfY8/sMsgBkcwuEbfAD4mZH8znZP3ccdRcEQVK8amraa9ey2+gdVwCljqXFsUhdteJueBgY7po29SX8dOfO16ivFReoYZrTUx0U9RIwSOgeC1gYC1xyBtBOeuTnhXHAznAz6ogIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgLTuFrobiYzX0kNRsBDe9YHYBwSOfLIBx6gei3Fo3C4iiqqGA008xq5e6a6PbhhwXZdlwOMAngHp+SDzjsVqjYWNoKfaQQcsBzncDn1+N3+orD7BaXMaw2+m2tGG4YBgYaOPTiNg/yhR0OtLRJLPHI+aF8Ej43h8RO0tc4EnbnDcMLt3TGM46L6k1pp9krY/tAOkexr2tZE9xcHHDcADkk8YHPB9CgkHWG1O2Zt9L4Dlv8MDHLj/9XuP+YrFJYbXRzxz0tDBDLGNrXMbggcDH5YAGPkPRRh1xYWh75KuSOFrWOEr4Hta7cSA0cfFx06kcjjlbUup7eLdHX0/fVNI+fuO8jZgZzgkbsbhnjw56HHQoNtljtjIJoWUMDYpXNc9objJactP+B6enkvllgtLC4st1K3c3YcRjG3GMfljhRzNXUzmg+xVjTsMhDjENoGCc+PAABac9BkDOeFP0c7aqkgqGskY2VjZA2Ru1zQRnBHkUGvTWqgpp2zU9JDFK1giDmNxhoGAPoAPyC24o2xRsjjaGsYA1oHkAvpEBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBfDoo3SMkcxpezO1xHLc9cL7RBHS2S1zS95Lb6V0nHiMQz1cev5vf8A6j6lBZLWJGvFvpQ5pyCIhwdxfn89xJ/Mn1UiiCLdp+0OcXOttJnaG57odAcj6Hp6L2daLe6OnjNFBsp3mSJoYAGOOckehOT9St5EET7t2baR9mUmC0MI7sctDtwH+BJI9FKRsbHG1jAGtaMADyC+kQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQERCcDJQEWN7fvN+qb2/eb9UGUWN7fvN+qb2/eb9UGUWN7fvN+qb2/eb9UGUWN7fvN+qb2/eb9UGUWN7fvN+qb2/eb9UGUWN7fvN+qb2/eb9UGUWN7fvN+qb2/eb9UGUWN7fvN+qb2/eb9UGUWN7fvN+qb2/eb9UGUWN7fvN+qb2/eb9UGUWN7fvN+qb2/eb9UGUWN7fvN+qb2/eb9UGUWN7fvN+qb2/eb9UGUWN7fvN+qygIiICIiAiIgKta0v1XanWq32eGCa73WpNPT+0EiKMNY575H45Ia1p4GMkgZHVWVVzWWn6i8fZtZa6qOku9rqDU0kssZfGSWOY9j2gglrmuI4OQcHyQaVDeLxaaytGqquzz2uClfUvuFI0wdwWEbmSROe89CSHA/ykEDjOhf+0ygodOXeupKOvNfRUntcdJVUkkLpYydokAIyWZIyfLzxlQ9Z2Z1moK+4117ZYrXUVNDUUebTTEvlfNtJllkdtLyCwYbjzPPK3b7oq/6nguMl7q7ZBWOtM1spW0ge6PMjmOdI8uwRkxsAaM4GeSgu1xvlJbrIy6VraiOBwjxH3DnSlzyA1ndgbtxJAxhQju0Kxx0r5agV8MzKxtA6lfRyd+Jns3sbsAydzeQRkHK99W2i83vSkNJT1UNJcd8MlQ2KaSOOYNcDJF3jcPa13I3Dn5Kq2Ps4r6G6e1vlt0EbrvT3PuKfvHBgjgfEWbncuJLgdxxnngILdaNa2e6VFJTwvqIqmpnmpmw1ED43MmiaHvjcCOHbTuHqOQvi9aqiZoG96isxbOKKmqpIjK0hj3w7wfQlu5h5HUchU7XlgrKC1XT2CZ5v1yvsdfaHQQPk7qTZFGd5Aw0bGybiSBtJVyuelmO7OKvS1se2FrrY+3wvk5Dcxlgc7HX1KDVou0Kxy0M89bJU0Rp6VtY9tVSyRGSJxAD4wRl4LiAAMnJAxyM+rde2RtLWS1RraSakMQkpaikkZOe9dtj2x4y/c4EDbnkEeRVfumhb3qEme919vgrKWkZTULqSN7mF7Zopu9kDscF0EY2A8Dd4jnjNz0Re73cpL5cqu3U96gNL7FFAHyQN7iR0n8QnDnby8jgDaMYyUEhctf0zWUBoQYX/AGpDQ10NfE6GSnY9jn7iDjHABDuRjKtFqvdHdLN9q0hlNCWueyR8ZbvYM+NoPJacZB8xyOCqFd+ziq1NUTVepnW+R9XXUs1RSRbzCKeBsgEYcQC5xMjiSQB5Y45tunbNcLfpaWzV9YyrMTZKemqDne6HGI+89XgYBI64z5oI6k7RrJWUNJVUcN1mFYT7JEygl7ypYGhxkY3GSwBw8XTJAzyFsT6+sbKajmpnVlaaqJ87IqSkklkbGx217nsAyza7wkHBzkYyFXbj2dVEls0j3XsFZWWO3fZ8kFS+SOGZpZGC5rmeJpDogRwcgkH1HpadE3rTj6OtsMtoNd7HJSVUMkb44AXTOlD48bneFz3Ag/FnJIKCbqe0TT0Di4T1M1KyOKWeqgppHw07JGhzDI8DDctIPPQEE4C+Lh2j2Cgr6ilndXn2apFHNNFRSyRMmcAWx7mtILnbm4AzyR6hQtbojULqG+2yG6UFRSagjYK+rniLZo3mFkMr42N8J3NYCASNpJ6jhbztDVApK6COphAnv9Nd2ZB4jiMBLD/ePcn5chBvHtDsgpYpHNuInkrHUApPYpDOJ2x95sMeM/Bh2emDnKWjtDsN1q6OCmdXMFU6SKOWejkij72MOL4i5wAD2hjsj+6fMLVi0ZVM1eLuamAwi8yXPZg7tjqEU2389wz+S8G6CnfbbTR1FVEY6W7V9fMWZBdHUCpAa3+8PaG/QoJKl7QrDURvl31kUHs0lZDNNSyRsqYYxl74iR48DnA5IORkcrFJ2iafniqpZJauligpPbw+qpZIhLT5A7yPI8QyQOOeRxyFT7X2V1lNbxRSizRimts9DBVRNldLM58Ria9wccR4aTkN3ZJ8hwp3UfZ/Peo6SM1sUAgszreHhpcRMJIJGPx5tBh5GRnKD0pO0Smkv13hqqerpLfQUNNUFs9HKyoMkssjA0MxlwO1mMDqSPkF67SaOkoBLSUFwkq47jS0NRSS0sjJYhM4YdtxzluduOCeOq0bppHVd2qbtX1Nxt1HWVVNSUzIqOSZrSyGZ8j2ukGHgSB5blvLQfPqdKm7N7tTMu09LJaqeoqqy31sFO10ro2Opn7ix73eJ24Y8eM5PThBaItcUMMb2VL5ayrfW1NPBTUFJI+QiF+HZbyfDkAu4BJGOoCzN2iWFrKM0zq6tfVU76mKKko5JZNjHbHlzQMtLXcEHBB468KJpNF3q0XZt5tVRb5bgKivLoKgvbE+GplbJjcAS1zSxvkQckehW1pLQ9VZLvBX1FbDUSGjq46gsYW5mqKnv3Fo5wwHIHOeiDfm7QbC32d0D6yrhlpoq10tNSSSsihlz3b3kDwg7XfMYOcKN1PqHUtlrPa3x2ttvfcIaKkt5a59VWse5oc9jw/DSMudt2HwsJJGeK/VdmF2NotFHTz2xtVR2yGhjuTHSwVNI9gIL43R4MjTnIY8gAj5ldFns5m1PbLnK2CVtFSTQNkeXd417zHy0fDyGHJxnyHBKCaREQF41lLT11LJTVsEVRTyDD4pWB7HD0IPBXsiCA9ytLfhqyfoIv2p7laW/DVk/QRftU+iCA9ytLfhqyfoIv2p7laW/DVk/QRftU+iCA9ytLfhqyfoIv2p7laW/DVk/QRftU+iCA9ytLfhqyfoIv2p7laW/DVk/QRftU+iCA9ytLfhqyfoIv2p7laW/DVk/QRftU+iCA9ytLfhqyfoIv2p7laW/DVk/QRftU+iCA9ytLfhqyfoIv2p7laW/DVk/QRftU+iCA9ytLfhqyfoIv2p7laW/DVk/QRftU+iCA9ytLfhqyfoIv2p7laW/DVk/QRftU+iCA9ytLfhqyfoIv2p7laW/DVk/QRftU+iCA9ytLfhqyfoIv2p7laW/DVk/QRftU+iCA9ytLfhqyfoIv2p7laW/DVk/QRftU+iCA9ytLfhqyfoIv2p7laW/DVk/QRftU+iCA9ytLfhqyfoIv2qfaA1oDQABwAPJEQEREBERAREQERVXW1VPTSUgglfHuDs7TjPRSa7V10eC2e0cxHHzPDDJeMdfFK1IuWuu1Y0ZdVyAdOXLP2pWjrVS/6l4PmrB7c/CbrK+jqKLlrrtWNGXVkgHqXYWftSt/qpf9S+easHtz8HWV9HUUXLvtSt/qpf9SsOjayoqK6Zs8z5GhmQHHKp0n1Fi1WauGtJiZ/DOmqre0ViFwREXQqRERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBERAREQEREBU7X3/Eovyf/wDariou9WaK6uiMsj2d3nG0dc4//S83d9Nk1WkvixR3nj+xLVnpN6TWHIr7a3XONgjmjjc1r2/xYu8bhwxnbkcjHB9CR5rRi07UB1Wai6S1Hfwzwt7xpOwSbenOONv/APF1j3Ppv6iX6BPc+m/qJfoFyVNk3KkeGsR+4Qxp8sdnMfsUPopqaoqHTtkkbKDKC/aQQeMk+mFpRafuEbQwXqYs8OWkP5wwtx8fAJO4/McYXW/c+m/qJfoE9z6b+ol+gSNl3KOe0d/vB0+VzWyWp9t73dVPm7zktJdgO3OcSNzj13Af5cnKvOhf+YTf9Ckfc+m/qJfoFIWexQ2ud8sUr3lwxhwVW37NrcWspnzRHET37x6NmLBkreLWS6Ii7VeIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiIP//Z\";s:4:\"type\";s:10:\"screenshot\";}}i:10;a:6:{s:2:\"id\";s:19:\"script-treemap-data\";s:5:\"title\";s:19:\"Script Treemap Data\";s:11:\"description\";s:20:\"Used for treemap app\";s:5:\"score\";N;s:16:\"scoreDisplayMode\";s:11:\"informative\";s:7:\"details\";a:2:{s:4:\"type\";s:12:\"treemap-data\";s:5:\"nodes\";a:4:{i:0;a:2:{s:4:\"name\";s:34:\"https://www.nl.ecom-expansion.com/\";s:13:\"resourceBytes\";i:3152;}i:1;a:3:{s:4:\"name\";s:82:\"https://www.nl.ecom-expansion.com/wp-includes/js/wp-emoji-release.min.js?ver=6.1.1\";s:11:\"unusedBytes\";i:3012;s:13:\"resourceBytes\";i:18617;}i:2;a:3:{s:4:\"name\";s:100:\"https://www.nl.ecom-expansion.com/wp-includes/blocks/navigation/view.min.js?ver=c24330f635f5cb9d5e0e\";s:13:\"resourceBytes\";i:1144;s:11:\"unusedBytes\";i:935;}i:3;a:3:{s:4:\"name\";s:106:\"https://www.nl.ecom-expansion.com/wp-includes/blocks/navigation/view-modal.min.js?ver=45f05135277abf0b0408\";s:11:\"unusedBytes\";i:4574;s:13:\"resourceBytes\";i:7775;}}}}}}}}s:9:\"timeStamp\";i:1669130835;s:13:\"optimizations\";a:0:{}s:24:\"human_readable_timestamp\";s:22:\"22 Nov 2022, 15:27 UTC\";s:6:\"scores\";a:4:{s:3:\"fcp\";a:3:{s:10:\"class_name\";s:39:\"placeholder-without-svg placeholder-top\";s:16:\"class_name_table\";s:7:\"success\";s:5:\"score\";i:292;}s:4:\"ttfb\";a:3:{s:10:\"class_name\";s:39:\"placeholder-without-svg placeholder-low\";s:16:\"class_name_table\";s:5:\"error\";s:5:\"score\";d:677;}s:5:\"score\";a:3:{s:10:\"class_name\";s:39:\"placeholder-without-svg placeholder-top\";s:16:\"class_name_table\";s:7:\"success\";s:5:\"score\";d:100;}s:12:\"descriptions\";a:3:{s:4:\"ttfb\";s:78:\"Time to First Byte identifies the time for which your server sends a response.\";s:5:\"score\";s:34:\"Summarizes the page\'s performance.\";s:3:\"fcp\";s:75:\"Speed Index shows how quickly the contents of a page are visibly populated.\";}}s:6:\"device\";s:7:\"desktop\";}','no'),(142,'sg_security_lock_system_folders','1','yes'),(143,'sg_security_disable_file_edit','1','yes'),(144,'sg_security_wp_remove_version','1','yes'),(145,'sg_security_disable_xml_rpc','1','yes'),(146,'sg_security_xss_protection','1','yes'),(147,'sg_security_disable_usernames','1','yes'),(148,'sg_security_login_attempts','5','yes'),(149,'sg_security_version','1.3.7','yes'),(150,'sg_security_update_timestamp','1669130839','yes'),(151,'sg_security_server_address','35.215.72.30','no'),(152,'sg_security_login_type','default','yes'),(153,'sg_security_notification_emails','a:1:{i:0;s:19:\"example@example.com\";}','yes'),(154,'sg_security_weekly_email_timestamp','1669130839','yes'),(155,'sgs_install_1_3_6','1','yes'),(156,'sgs_install_1_3_7','1','yes'),(158,'sg_security_unsuccessful_login','a:1:{s:14:\"187.190.30.233\";a:2:{s:8:\"attempts\";i:5;s:9:\"timestamp\";i:1669165031;}}','yes'),(159,'sg_security_total_blocked_logins','3','yes'),(181,'theme_mods_twentytwentythree','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1669161942;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}}','yes'),(182,'current_theme','Flatsome Child','yes'),(183,'theme_mods_flatsome','a:35:{i:0;b:0;s:17:\"flatsome_fallback\";i:0;s:20:\"topbar_elements_left\";a:1:{i:0;s:4:\"html\";}s:21:\"topbar_elements_right\";a:3:{i:0;s:7:\"nav-top\";i:1;s:10:\"newsletter\";i:2;s:6:\"social\";}s:20:\"header_elements_left\";a:2:{i:0;s:6:\"search\";i:1;s:3:\"nav\";}s:21:\"header_elements_right\";a:3:{i:0;s:7:\"account\";i:1;s:7:\"divider\";i:2;s:4:\"cart\";}s:27:\"header_elements_bottom_left\";a:0:{}s:29:\"header_elements_bottom_center\";a:0:{}s:28:\"header_elements_bottom_right\";a:0:{}s:27:\"header_mobile_elements_left\";a:1:{i:0;s:9:\"menu-icon\";}s:28:\"header_mobile_elements_right\";a:1:{i:0;s:4:\"cart\";}s:26:\"header_mobile_elements_top\";a:1:{i:0;s:4:\"html\";}s:14:\"mobile_sidebar\";a:7:{i:0;s:11:\"search-form\";i:1;s:3:\"nav\";i:2;s:7:\"account\";i:3;s:10:\"newsletter\";i:4;s:6:\"social\";i:5;s:6:\"html-2\";i:6;s:6:\"html-3\";}s:14:\"product_layout\";s:19:\"right-sidebar-small\";s:23:\"payment_icons_placement\";s:6:\"footer\";s:14:\"follow_twitter\";s:10:\"http://url\";s:15:\"follow_facebook\";s:10:\"http://url\";s:16:\"follow_instagram\";s:10:\"http://url\";s:12:\"follow_email\";s:10:\"your@email\";s:16:\"flatsome_version\";i:3;s:24:\"portfolio_archive_filter\";s:4:\"left\";s:13:\"type_headings\";a:2:{s:11:\"font-family\";s:4:\"Lato\";s:7:\"variant\";s:3:\"700\";}s:10:\"type_texts\";a:2:{s:11:\"font-family\";s:4:\"Lato\";s:7:\"variant\";s:7:\"regular\";}s:8:\"type_nav\";a:2:{s:11:\"font-family\";s:4:\"Lato\";s:7:\"variant\";s:3:\"700\";}s:8:\"type_alt\";a:2:{s:11:\"font-family\";s:14:\"Dancing Script\";s:7:\"variant\";s:7:\"regular\";}s:14:\"pages_template\";s:7:\"default\";s:11:\"site_loader\";s:0:\"\";s:19:\"flatsome_db_version\";s:6:\"3.16.2\";s:18:\"nav_menu_locations\";a:0:{}s:7:\"backups\";N;s:9:\"smof_init\";s:31:\"Wed, 23 Nov 2022 00:05:42 +0000\";s:18:\"custom_css_post_id\";i:-1;s:17:\"header_cart_total\";b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1669326499;s:4:\"data\";a:6:{s:19:\"wp_inactive_widgets\";a:0:{}s:12:\"sidebar-main\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:16:\"sidebar-footer-1\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}s:16:\"sidebar-footer-2\";a:0:{}s:12:\"shop-sidebar\";a:0:{}s:15:\"product-sidebar\";a:0:{}}}s:16:\"activated_before\";b:1;}','yes'),(184,'theme_switched','','yes'),(185,'widget_flatsome_recent_posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(186,'widget_block_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(191,'siteground_settings_optimizer_timestamp','1669161977','yes'),(193,'siteground_data_consent_timestamp','1669161977','yes'),(194,'recently_activated','a:0:{}','yes'),(195,'siteground_data_token','eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1cmwiOiJodHRwczovL3Rlbmctc2hvcC5jb20iLCJ1cGRhdGVkX2F0IjoiMjAyMi0xMS0yMyAwMDowNjo0OSIsImV4cCI6MTk4NDUyMjAwOX0.Huy7cv_JkNC5KY781IIDG9DruhDW8zmmBCzWKLoPnF0','yes'),(196,'siteground_last_data_tracking','1669162010','yes'),(199,'kirki_downloaded_font_files','a:14:{s:68:\"https://fonts.gstatic.com/s/lato/v23/S6uyw4BMUTPHjxAwWCWtFCfQ7A.woff\";s:98:\"/home/customer/www/teng-shop.com/public_html/wp-content/fonts/lato/S6uyw4BMUTPHjxAwWCWtFCfQ7A.woff\";s:65:\"https://fonts.gstatic.com/s/lato/v23/S6uyw4BMUTPHjx4wWCWtFCc.woff\";s:95:\"/home/customer/www/teng-shop.com/public_html/wp-content/fonts/lato/S6uyw4BMUTPHjx4wWCWtFCc.woff\";s:72:\"https://fonts.gstatic.com/s/lato/v23/S6u9w4BMUTPHh6UVSwaPHw3q5d0N7w.woff\";s:102:\"/home/customer/www/teng-shop.com/public_html/wp-content/fonts/lato/S6u9w4BMUTPHh6UVSwaPHw3q5d0N7w.woff\";s:69:\"https://fonts.gstatic.com/s/lato/v23/S6u9w4BMUTPHh6UVSwiPHw3q5d0.woff\";s:99:\"/home/customer/www/teng-shop.com/public_html/wp-content/fonts/lato/S6u9w4BMUTPHh6UVSwiPHw3q5d0.woff\";s:110:\"https://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSo3Rep6hNX6pmRMjLo.woff\";s:141:\"/home/customer/www/teng-shop.com/public_html/wp-content/fonts/dancing-script/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSo3Rep6hNX6pmRMjLo.woff\";s:110:\"https://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSo3ROp6hNX6pmRMjLo.woff\";s:141:\"/home/customer/www/teng-shop.com/public_html/wp-content/fonts/dancing-script/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSo3ROp6hNX6pmRMjLo.woff\";s:107:\"https://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSo3Sup6hNX6pmRM.woff\";s:138:\"/home/customer/www/teng-shop.com/public_html/wp-content/fonts/dancing-script/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSo3Sup6hNX6pmRM.woff\";s:68:\"https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHjxAwWCWtFCfQ7A.woff\";s:98:\"/home/customer/www/teng-shop.com/public_html/wp-content/fonts/lato/S6uyw4BMUTPHjxAwWCWtFCfQ7A.woff\";s:65:\"https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHjx4wWCWtFCc.woff\";s:95:\"/home/customer/www/teng-shop.com/public_html/wp-content/fonts/lato/S6uyw4BMUTPHjx4wWCWtFCc.woff\";s:72:\"https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh6UVSwaPHw3q5d0N7w.woff\";s:102:\"/home/customer/www/teng-shop.com/public_html/wp-content/fonts/lato/S6u9w4BMUTPHh6UVSwaPHw3q5d0N7w.woff\";s:69:\"https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh6UVSwiPHw3q5d0.woff\";s:99:\"/home/customer/www/teng-shop.com/public_html/wp-content/fonts/lato/S6u9w4BMUTPHh6UVSwiPHw3q5d0.woff\";s:110:\"https://fonts.gstatic.com/s/dancingscript/v25/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSo3Rep6hNX6pmRMjLo.woff\";s:144:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/fonts/dancing-script/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSo3Rep6hNX6pmRMjLo.woff\";s:110:\"https://fonts.gstatic.com/s/dancingscript/v25/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSo3ROp6hNX6pmRMjLo.woff\";s:144:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/fonts/dancing-script/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSo3ROp6hNX6pmRMjLo.woff\";s:107:\"https://fonts.gstatic.com/s/dancingscript/v25/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSo3Sup6hNX6pmRM.woff\";s:141:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/fonts/dancing-script/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSo3Sup6hNX6pmRM.woff\";}','yes'),(226,'flatsome_registration','a:8:{s:2:\"id\";s:13:\"new_id_123456\";s:4:\"type\";s:6:\"PUBLIC\";s:6:\"domain\";s:25:\"www.nl.ecom-expansion.com\";s:12:\"registeredAt\";s:24:\"2021-07-18T12:51:10.826Z\";s:12:\"purchaseCode\";s:36:\"abcd1234-5678-90ef-ghij-klmnopqrstuv\";s:11:\"licenseType\";s:15:\"Regular License\";s:6:\"errors\";a:0:{}s:11:\"show_notice\";b:0;}','yes'),(233,'WPLANG','nl_NL','yes'),(259,'flatsome_update_cache','a:2:{s:12:\"last_checked\";i:1705884506;s:7:\"version\";s:6:\"3.18.1\";}','yes'),(261,'wordfence_ls_version','1.1.8','yes'),(262,'wfls_last_role_change','1704234792','no'),(263,'wordfence_version','7.11.1','yes'),(264,'wordfence_case','1','yes'),(265,'wordfence_installed','1','yes'),(270,'wordfenceActivated','1','yes'),(271,'wf_plugin_act_error','','yes'),(280,'action_scheduler_hybrid_store_demarkation','7','yes'),(281,'schema-ActionScheduler_StoreSchema','7.0.1689702613','yes'),(282,'schema-ActionScheduler_LoggerSchema','3.0.1669163123','yes'),(285,'woocommerce_schema_version','430','yes'),(286,'woocommerce_store_address','Regiomontana 325','yes'),(287,'woocommerce_store_address_2','','yes'),(288,'woocommerce_store_city','Tampico','yes'),(289,'woocommerce_default_country','MX:DF','yes'),(290,'woocommerce_store_postcode','89110','yes'),(291,'woocommerce_allowed_countries','all','yes'),(292,'woocommerce_all_except_countries','a:0:{}','yes'),(293,'woocommerce_specific_allowed_countries','a:0:{}','yes'),(294,'woocommerce_ship_to_countries','','yes'),(295,'woocommerce_specific_ship_to_countries','a:0:{}','yes'),(296,'woocommerce_default_customer_address','base','yes'),(297,'woocommerce_calc_taxes','no','yes'),(298,'woocommerce_enable_coupons','yes','yes'),(299,'woocommerce_calc_discounts_sequentially','no','no'),(300,'woocommerce_currency','EUR','yes'),(301,'woocommerce_currency_pos','left','yes'),(302,'woocommerce_price_thousand_sep',',','yes'),(303,'woocommerce_price_decimal_sep','.','yes'),(304,'woocommerce_price_num_decimals','2','yes'),(305,'woocommerce_shop_page_id','8','yes'),(306,'woocommerce_cart_redirect_after_add','no','yes'),(307,'woocommerce_enable_ajax_add_to_cart','yes','yes'),(308,'woocommerce_placeholder_image','10176','yes'),(309,'woocommerce_weight_unit','kg','yes'),(310,'woocommerce_dimension_unit','cm','yes'),(311,'woocommerce_enable_reviews','no','yes'),(312,'woocommerce_review_rating_verification_label','yes','no'),(313,'woocommerce_review_rating_verification_required','no','no'),(314,'woocommerce_enable_review_rating','yes','yes'),(315,'woocommerce_review_rating_required','yes','no'),(316,'woocommerce_manage_stock','yes','yes'),(317,'woocommerce_hold_stock_minutes','60','no'),(318,'woocommerce_notify_low_stock','no','no'),(319,'woocommerce_notify_no_stock','no','no'),(320,'woocommerce_stock_email_recipient','example@example.com','no'),(321,'woocommerce_notify_low_stock_amount','2','no'),(322,'woocommerce_notify_no_stock_amount','0','yes'),(323,'woocommerce_hide_out_of_stock_items','no','yes'),(324,'woocommerce_stock_format','no_amount','yes'),(325,'woocommerce_file_download_method','force','no'),(326,'woocommerce_downloads_redirect_fallback_allowed','no','no'),(327,'woocommerce_downloads_require_login','no','no'),(328,'woocommerce_downloads_grant_access_after_payment','yes','no'),(329,'woocommerce_downloads_deliver_inline','','no'),(330,'woocommerce_downloads_add_hash_to_filename','yes','yes'),(332,'woocommerce_attribute_lookup_direct_updates','no','yes'),(333,'woocommerce_prices_include_tax','no','yes'),(334,'woocommerce_tax_based_on','shipping','yes'),(335,'woocommerce_shipping_tax_class','inherit','yes'),(336,'woocommerce_tax_round_at_subtotal','no','yes'),(337,'woocommerce_tax_classes','','yes'),(338,'woocommerce_tax_display_shop','excl','yes'),(339,'woocommerce_tax_display_cart','excl','yes'),(340,'woocommerce_price_display_suffix','','yes'),(341,'woocommerce_tax_total_display','itemized','no'),(342,'woocommerce_enable_shipping_calc','yes','no'),(343,'woocommerce_shipping_cost_requires_address','no','yes'),(344,'woocommerce_ship_to_destination','shipping','no'),(345,'woocommerce_shipping_debug_mode','no','yes'),(346,'woocommerce_enable_guest_checkout','no','no'),(347,'woocommerce_enable_checkout_login_reminder','yes','no'),(348,'woocommerce_enable_signup_and_login_from_checkout','yes','no'),(349,'woocommerce_enable_myaccount_registration','yes','no'),(350,'woocommerce_registration_generate_username','yes','no'),(351,'woocommerce_registration_generate_password','yes','no'),(352,'woocommerce_erasure_request_removes_order_data','no','no'),(353,'woocommerce_erasure_request_removes_download_data','no','no'),(354,'woocommerce_allow_bulk_remove_personal_data','no','no'),(355,'woocommerce_registration_privacy_policy_text','Uw persoonlijke gegevens worden gebruikt om uw bezoek aan de website te ondersteunen, de toegang tot uw account te beheren en voor andere doeleinden zoals beschreven in ons Privacybeleid: [privacy_policy].','yes'),(356,'woocommerce_checkout_privacy_policy_text','','yes'),(357,'woocommerce_delete_inactive_accounts','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(358,'woocommerce_trash_pending_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}','no'),(359,'woocommerce_trash_failed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}','no'),(360,'woocommerce_trash_cancelled_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}','no'),(361,'woocommerce_anonymize_completed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(362,'woocommerce_email_from_name','Teng Shop','no'),(363,'woocommerce_email_from_address','kontakt@ecom-expansion.com','no'),(364,'woocommerce_email_header_image','','no'),(365,'woocommerce_email_footer_text','','no'),(366,'woocommerce_email_base_color','#7f54b3','no'),(367,'woocommerce_email_background_color','#f7f7f7','no'),(368,'woocommerce_email_body_background_color','#ffffff','no'),(369,'woocommerce_email_text_color','#3c3c3c','no'),(370,'woocommerce_merchant_email_notifications','no','no'),(371,'woocommerce_cart_page_id','9','no'),(372,'woocommerce_checkout_page_id','10','no'),(373,'woocommerce_myaccount_page_id','11','no'),(374,'woocommerce_terms_page_id','','no'),(375,'woocommerce_force_ssl_checkout','no','yes'),(376,'woocommerce_unforce_ssl_checkout','no','yes'),(377,'woocommerce_checkout_pay_endpoint','order-pay','yes'),(378,'woocommerce_checkout_order_received_endpoint','order-received','yes'),(379,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','yes'),(380,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','yes'),(381,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','yes'),(382,'woocommerce_myaccount_orders_endpoint','orders','yes'),(383,'woocommerce_myaccount_view_order_endpoint','view-order','yes'),(384,'woocommerce_myaccount_downloads_endpoint','downloads','yes'),(385,'woocommerce_myaccount_edit_account_endpoint','edit-account','yes'),(386,'woocommerce_myaccount_edit_address_endpoint','edit-address','yes'),(387,'woocommerce_myaccount_payment_methods_endpoint','payment-methods','yes'),(388,'woocommerce_myaccount_lost_password_endpoint','lost-password','yes'),(389,'woocommerce_logout_endpoint','customer-logout','yes'),(390,'woocommerce_api_enabled','no','yes'),(391,'woocommerce_allow_tracking','no','no'),(392,'woocommerce_show_marketplace_suggestions','yes','no'),(393,'woocommerce_analytics_enabled','yes','yes'),(394,'woocommerce_navigation_enabled','no','yes'),(395,'woocommerce_feature_custom_order_tables_enabled','no','yes'),(396,'woocommerce_single_image_width','768','yes'),(397,'woocommerce_thumbnail_image_width','768','yes'),(398,'woocommerce_checkout_highlight_required_fields','yes','yes'),(399,'woocommerce_demo_store','no','no'),(400,'wc_downloads_approved_directories_mode','enabled','yes'),(401,'woocommerce_permalinks','a:5:{s:12:\"product_base\";s:8:\"/product\";s:13:\"category_base\";s:11:\"collections\";s:8:\"tag_base\";s:17:\"etiquette-produit\";s:14:\"attribute_base\";s:0:\"\";s:22:\"use_verbose_page_rules\";b:0;}','yes'),(402,'current_theme_supports_woocommerce','yes','yes'),(403,'woocommerce_queue_flush_rewrite_rules','no','yes'),(406,'default_product_cat','15','yes'),(407,'woocommerce_refund_returns_page_id','12','yes'),(410,'woocommerce_paypal_settings','a:23:{s:7:\"enabled\";s:2:\"no\";s:5:\"title\";s:6:\"PayPal\";s:11:\"description\";s:107:\"Payer avec PayPal, vous pouvez payer avec votre carte de crédit si vous n&rsquo;avez pas de compte PayPal.\";s:5:\"email\";s:19:\"example@example.com\";s:8:\"advanced\";s:0:\"\";s:8:\"testmode\";s:2:\"no\";s:5:\"debug\";s:2:\"no\";s:16:\"ipn_notification\";s:3:\"yes\";s:14:\"receiver_email\";s:19:\"example@example.com\";s:14:\"identity_token\";s:0:\"\";s:14:\"invoice_prefix\";s:3:\"WC-\";s:13:\"send_shipping\";s:3:\"yes\";s:16:\"address_override\";s:2:\"no\";s:13:\"paymentaction\";s:4:\"sale\";s:9:\"image_url\";s:0:\"\";s:11:\"api_details\";s:0:\"\";s:12:\"api_username\";s:0:\"\";s:12:\"api_password\";s:0:\"\";s:13:\"api_signature\";s:0:\"\";s:20:\"sandbox_api_username\";s:0:\"\";s:20:\"sandbox_api_password\";s:0:\"\";s:21:\"sandbox_api_signature\";s:0:\"\";s:12:\"_should_load\";s:2:\"no\";}','yes'),(411,'woocommerce_version','8.5.1','yes'),(412,'woocommerce_db_version','8.5.1','yes'),(413,'woocommerce_admin_install_timestamp','1669163124','yes'),(414,'woocommerce_inbox_variant_assignment','8','yes'),(418,'_transient_jetpack_autoloader_plugin_paths','a:1:{i:0;s:29:\"{{WP_PLUGIN_DIR}}/woocommerce\";}','yes'),(419,'action_scheduler_lock_async-request-runner','65adce34e44416.34740943|1705889392','yes'),(420,'woocommerce_admin_notices','a:0:{}','yes'),(421,'woocommerce_maxmind_geolocation_settings','a:1:{s:15:\"database_prefix\";s:32:\"9O9FFiJYiOq0QNR8NIXdhJup7se3JD8J\";}','yes'),(423,'widget_woocommerce_widget_cart','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(424,'widget_woocommerce_layered_nav_filters','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(425,'widget_woocommerce_layered_nav','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(426,'widget_woocommerce_price_filter','a:2:{i:2;a:1:{s:5:\"title\";s:15:\"Filter op prijs\";}s:12:\"_multiwidget\";i:1;}','yes'),(427,'widget_woocommerce_product_categories','a:2:{i:2;a:8:{s:5:\"title\";s:19:\"Productcategorieën\";s:7:\"orderby\";s:5:\"order\";s:8:\"dropdown\";i:0;s:5:\"count\";i:0;s:12:\"hierarchical\";i:1;s:18:\"show_children_only\";i:0;s:10:\"hide_empty\";i:0;s:9:\"max_depth\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(428,'widget_woocommerce_product_search','a:2:{i:2;a:1:{s:5:\"title\";s:7:\"Zoek op\";}s:12:\"_multiwidget\";i:1;}','yes'),(429,'widget_woocommerce_product_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(430,'widget_woocommerce_products','a:2:{i:2;a:7:{s:5:\"title\";s:18:\"Onze bestsellers :\";s:6:\"number\";i:3;s:4:\"show\";s:8:\"featured\";s:7:\"orderby\";s:5:\"sales\";s:5:\"order\";s:3:\"asc\";s:9:\"hide_free\";i:1;s:11:\"show_hidden\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(431,'widget_woocommerce_recently_viewed_products','a:2:{i:3;a:2:{s:5:\"title\";s:22:\"Laatst bekeken product\";s:6:\"number\";i:1;}s:12:\"_multiwidget\";i:1;}','yes'),(432,'widget_woocommerce_top_rated_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(433,'widget_woocommerce_recent_reviews','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(434,'widget_woocommerce_rating_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(435,'widget_upsell_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(444,'wc_blocks_db_schema_version','260','yes'),(445,'wc_remote_inbox_notifications_stored_state','O:8:\"stdClass\":2:{s:22:\"there_were_no_products\";b:1;s:22:\"there_are_now_products\";b:1;}','no'),(448,'_transient_woocommerce_reports-transient-version','1688580509','yes'),(455,'woocommerce_task_list_tracked_completed_tasks','a:6:{i:0;s:8:\"purchase\";i:1;s:13:\"store_details\";i:2;s:8:\"shipping\";i:3;s:8:\"payments\";i:4;s:15:\"review-shipping\";i:5;s:8:\"products\";}','yes'),(456,'woocommerce_onboarding_profile','a:11:{s:18:\"is_agree_marketing\";b:0;s:11:\"store_email\";s:21:\"contact@teng-shop.com\";s:20:\"is_store_country_set\";b:1;s:8:\"industry\";a:1:{i:0;a:1:{s:4:\"slug\";s:27:\"fashion-apparel-accessories\";}}s:13:\"product_types\";a:1:{i:0;s:8:\"physical\";}s:13:\"product_count\";s:8:\"101-1000\";s:14:\"selling_venues\";s:2:\"no\";s:12:\"setup_client\";b:0;s:19:\"business_extensions\";a:0:{}s:5:\"theme\";s:8:\"flatsome\";s:9:\"completed\";b:1;}','yes'),(457,'woocommerce_task_list_dismissed_tasks','a:0:{}','yes'),(458,'_transient_timeout_woocommerce_admin_remote_inbox_notifications_specs','1706488263','no');
INSERT INTO `wpj7_options` VALUES (459,'_transient_woocommerce_admin_remote_inbox_notifications_specs','a:4:{s:5:\"fr_FR\";a:62:{s:21:\"wayflyer_bnpl_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:21:\"wayflyer_bnpl_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:48:\"Grow your business with funding through Wayflyer\";s:7:\"content\";s:261:\"Fast, flexible financing to boost cash flow and help your business grow – one fee, no interest rates, penalties, equity, or personal guarantees. Based on your store’s performance, Wayflyer provides funding and analytical insights to invest in your business.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"wayflyer_bnpl_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Level up with funding\";}}s:3:\"url\";s:118:\"https://woocommerce.com/products/wayflyer/?utm_source=inbox_note&utm_medium=product&utm_campaign=wayflyer_bnpl_q4_2021\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-17 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-12-18 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:7:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"AU\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"BE\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"CA\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"IE\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"NL\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"GB\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-affirm\";}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:32:\"afterpay-gateway-for-woocommerce\";}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:31:\"klarna-payments-for-woocommerce\";}}}}}}s:35:\"wc_shipping_mobile_app_usps_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:94:\"Print and manage your shipping labels with WooCommerce Shipping and the WooCommerce Mobile App\";s:7:\"content\";s:210:\"Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> – all directly from your mobile device!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Get WooCommerce Shipping\";}}s:3:\"url\";s:135:\"https://woocommerce.com/woocommerce-shipping/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_shipping_mobile_app_usps_q4_2021\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-12 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-11-27 00:00:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:25:\"woocommerce-shipping-usps\";}}i:4;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}}}s:20:\"woocommerce-services\";O:8:\"stdClass\":8:{s:4:\"slug\";s:20:\"woocommerce-services\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:26:\"WooCommerce Shipping & Tax\";s:7:\"content\";s:251:\"WooCommerce Shipping & Tax helps get your store \"ready to sell\" as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:84:\"https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:17:25\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:2;}}}s:18:\"your-first-product\";O:8:\"stdClass\":8:{s:4:\"slug\";s:18:\"your-first-product\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:18:\"Your first product\";s:7:\"content\";s:467:\"That’s huge! You’re well on your way to building a successful online store — now it’s time to think about how you’ll fulfill your orders.<br/><br/>Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with <a href=\"https://href.li/?https://woocommerce.com/shipping\" target=\"_blank\">WooCommerce Shipping</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:130:\"https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:19:13\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_were_no_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_are_now_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:2:\">=\";s:5:\"value\";i:1;}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:13:\"product_types\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"physical\";s:7:\"default\";a:0:{}}}}s:37:\"wc-admin-optimizing-the-checkout-flow\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"wc-admin-optimizing-the-checkout-flow\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:28:\"Optimizing the checkout flow\";s:7:\"content\";s:177:\"It’s crucial to get your store’s checkout as smooth as possible to avoid losing sales. Let’s take a look at how you can optimize the checkout experience for your shoppers.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"optimizing-the-checkout-flow\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:144:\"https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox_note&utm_medium=product&utm_campaign=optimizing-the-checkout-flow\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:19:49\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"payments\";s:7:\"default\";a:0:{}}}}s:32:\"wc-payments-qualitative-feedback\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"wc-payments-qualitative-feedback\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"WooCommerce Payments setup - let us know what you think\";s:7:\"content\";s:146:\"Congrats on enabling WooCommerce Payments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"qualitative-feedback-from-new-users\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:39:\"https://automattic.survey.fm/wc-pay-new\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:21:13\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:20:\"woocommerce-payments\";s:7:\"default\";a:0:{}}}}s:29:\"share-your-feedback-on-paypal\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"share-your-feedback-on-paypal\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:29:\"Share your feedback on PayPal\";s:7:\"content\";s:127:\"Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:43:\"http://automattic.survey.fm/paypal-feedback\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:21:50\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-stripe\";}}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}}}s:31:\"google_listings_and_ads_install\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"google_listings_and_ads_install\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Drive traffic and sales with Google\";s:7:\"content\";s:123:\"Reach online shoppers to drive traffic and sales for your store by showcasing products across Google, for free or with ads.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"get-started\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:11:\"Get started\";}}s:3:\"url\";s:122:\"https://woocommerce.com/products/google-listings-and-ads?utm_source=inbox_note&utm_medium=product&utm_campaign=get-started\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-06-09 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:23:\"google_listings_and_ads\";}}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:10;}}}s:39:\"wc-subscriptions-security-update-3-0-15\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"wc-subscriptions-security-update-3-0-15\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:42:\"WooCommerce Subscriptions security update!\";s:7:\"content\";s:738:\"We recently released an important security update to WooCommerce Subscriptions. To ensure your site’s data is protected, please upgrade <strong>WooCommerce Subscriptions to version 3.0.15</strong> or later.<br/><br/>Click the button below to view and update to the latest Subscriptions version, or log in to <a href=\"https://woocommerce.com/my-dashboard\">WooCommerce.com Dashboard</a> and navigate to your <strong>Downloads</strong> page.<br/><br/>We recommend always using the latest version of WooCommerce Subscriptions, and other software running on your site, to ensure maximum security.<br/><br/>If you have any questions we are here to help — just <a href=\"https://woocommerce.com/my-account/create-a-ticket/\">open a ticket</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"update-wc-subscriptions-3-0-15\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"View latest version\";}}s:3:\"url\";s:30:\"&page=wc-addons&section=helper\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:30:32\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:6:\"3.0.15\";}}}s:29:\"woocommerce-core-update-5-4-0\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"woocommerce-core-update-5-4-0\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Update to WooCommerce 5.4.1 now\";s:7:\"content\";s:140:\"WooCommerce 5.4.1 addresses a checkout issue discovered in WooCommerce 5.4. We recommend upgrading to WooCommerce 5.4.1 as soon as possible.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"update-wc-core-5-4-0\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:25:\"How to update WooCommerce\";}}s:3:\"url\";s:64:\"https://docs.woocommerce.com/document/how-to-update-woocommerce/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:31:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.0\";}}}s:19:\"wcpay-promo-2020-11\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"wcpay-promo-2020-11\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-11\";s:7:\"content\";s:19:\"wcpay-promo-2020-11\";}}s:7:\"actions\";a:0:{}s:5:\"rules\";a:0:{}}s:19:\"wcpay-promo-2020-12\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"wcpay-promo-2020-12\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-12\";s:7:\"content\";s:19:\"wcpay-promo-2020-12\";}}s:7:\"actions\";a:0:{}s:5:\"rules\";a:0:{}}s:34:\"ppxo-pps-upgrade-paypal-payments-1\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-1\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:47:\"Get the latest PayPal extension for WooCommerce\";s:7:\"content\";s:442:\"Heads up! There’s a new PayPal on the block!<br/><br/>Now is a great time to upgrade to our latest <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension</a> to continue to receive support and updates with PayPal.<br/><br/>Get access to a full suite of PayPal payment methods, extensive currency and country coverage, and pay later options with the all-new PayPal extension for WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-1\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:33:53\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;}}}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:7;s:7:\"default\";i:1;s:9:\"operation\";s:1:\"<\";}}}s:34:\"ppxo-pps-upgrade-paypal-payments-2\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-2\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Upgrade your PayPal experience!\";s:7:\"content\";s:358:\"Get access to a full suite of PayPal payment methods, extensive currency and country coverage, offer subscription and recurring payments, and the new PayPal pay later options.<br /><br />Start using our <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">latest PayPal today</a> to continue to receive support and updates.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-2\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:34:30\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;}}}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:6;s:7:\"default\";i:1;s:9:\"operation\";s:1:\">\";}}}s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:56:\"Action required: Critical vulnerabilities in WooCommerce\";s:7:\"content\";s:574:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:59:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:35:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.6\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.8\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.5.9\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.6\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.2\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.3\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.4\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.4\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.5\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.2\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.3\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.4\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.3\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.2\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.3\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.4\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.2\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.2\";}i:32;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.3\";}i:33;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.4\";}i:34;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.1\";}i:35;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:36;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.2\";}i:37;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.3\";}i:38;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.5.1\";}i:39;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"3.5.10\";}i:40;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.7\";}i:41;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.3\";}i:42;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.3\";}i:43;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.5\";}i:44;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.4\";}i:45;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.4\";}i:46;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.5\";}i:47;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.6\";}i:48;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.4\";}i:49;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.5\";}i:50;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.5\";}i:51;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.4\";}i:52;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.3\";}i:53;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.5\";}i:54;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.3\";}i:55;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.3\";}i:56;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.5\";}i:57;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.3\";}i:58;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.4\";}}}s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"Action required: Critical vulnerabilities in WooCommerce Blocks\";s:7:\"content\";s:570:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/>Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br/><br/>For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:32:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:35:42\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"2.5.16\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.6.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.7.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.8.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.9.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.0.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.1.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.2.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.5.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.1\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.2\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.1\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.3\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.2\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.1\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.1\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.5.1\";}}}s:45:\"woocommerce-core-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woocommerce-core-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"Solved: Critical vulnerabilities patched in WooCommerce\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:36:18\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:23:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.6\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.8\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.9\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.6\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.2\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.4\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.2\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.1\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.1\";}}}}}s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:62:\"Solved: Critical vulnerabilities patched in WooCommerce Blocks\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:36:54\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:31:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"2.5.16\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.6.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.7.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.8.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.9.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.0.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.1.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.2.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.1\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.1\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.2\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.2\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.1\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.1\";}}}}}s:19:\"habit-moment-survey\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"habit-moment-survey\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"We’re all ears! Share your experience so far with WooCommerce\";s:7:\"content\";s:136:\"We’d love your input to shape the future of WooCommerce together. Feel free to share any feedback, ideas or suggestions that you have.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:45:\"https://automattic.survey.fm/store-management\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:37:30\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:30;}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:0;}}}s:42:\"woocommerce-core-paypal-march-2022-updated\";O:8:\"stdClass\":8:{s:4:\"slug\";s:42:\"woocommerce-core-paypal-march-2022-updated\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Security auto-update of WooCommerce\";s:7:\"content\";s:391:\"<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy PayPal Standard security updates for stores running WooCommerce (version 3.5 to 6.3). It’s recommended to disable PayPal Standard, and use <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal Payments</a> to accept PayPal.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:88:\"https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:42:\"woocommerce-core-paypal-march-2022-dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-10 18:44:57\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:28:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.5.10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.7\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.3\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.5\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.4\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.5\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.6\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.5\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.5\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.5\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.2.2\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:3:\"5.5\";}i:1;a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}}}}}}}s:47:\"woocommerce-core-paypal-march-2022-updated-nopp\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-core-paypal-march-2022-updated-nopp\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Security auto-update of WooCommerce\";s:7:\"content\";s:237:\"<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy security updates related to PayPal Standard payment gateway for stores running WooCommerce (version 3.5 to 6.3).\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:88:\"https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-10 18:45:04\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:28:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.5.10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.7\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.3\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.5\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.4\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.5\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.6\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.5\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.5\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.5\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.2.2\";}}}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:42:\"woocommerce-core-paypal-march-2022-updated\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}s:24:\"pinterest_03_2022_update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:24:\"pinterest_03_2022_update\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:53:\"Your Pinterest for WooCommerce plugin is out of date!\";s:7:\"content\";s:262:\"Update to the latest version of Pinterest for WooCommerce to continue using this plugin and keep your store connected with Pinterest. To update, visit <strong>Plugins &gt; Installed Plugins</strong>, and click on “update now” under Pinterest for WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"pinterest_03_2022_update\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"Update Instructions\";}}s:3:\"url\";s:148:\"https://woocommerce.com/document/pinterest-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=pinterest_03_2022_update#section-3\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-23 00:00:39\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"pinterest-for-woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"1.0.8\";}}}s:33:\"store_setup_survey_survey_q2_2022\";O:8:\"stdClass\":8:{s:4:\"slug\";s:33:\"store_setup_survey_survey_q2_2022\";s:4:\"type\";s:6:\"survey\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:30:\"How is your store setup going?\";s:7:\"content\";s:232:\"Our goal is to make sure you have all the right tools to start setting up your store in the smoothest way possible.\r\nWe’d love to know if we hit our mark and how we can improve. To collect your thoughts, we made a 2-minute survey.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:53:\"store_setup_survey_survey_q2_2022_share_your_thoughts\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Tell us how it’s going\";}}s:3:\"url\";s:52:\"https://automattic.survey.fm/store-setup-survey-2022\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-05-09 08:42:10\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:7;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:9;}}}s:47:\"woocommerce-payments-august-2022-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-payments-august-2022-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:51:\"Action required: Please update WooCommerce Payments\";s:7:\"content\";s:213:\"An updated secure version of WooCommerce Payments is available – please ensure that you’re using the latest patch version. For more information on what action you need to take, please review the article below.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Find out more\";}}s:3:\"url\";s:96:\"https://developer.woocommerce.com/2022/08/09/woocommerce-payments-3-9-4-4-5-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:9:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-08-09 14:44:17\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"3.9\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"4.5.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.4\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.3\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.1\";}}}s:46:\"woocommerce-payments-august-2022-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-payments-august-2022-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:51:\"WooCommerce Payments has been automatically updated\";s:7:\"content\";s:265:\"You’re now running the latest secure version of WooCommerce Payments. We’ve worked with the WordPress Plugins team to deploy a security update to stores running WooCommerce Payments (version 3.9 to 4.5). For further information, please review the article below.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Find out more\";}}s:3:\"url\";s:96:\"https://developer.woocommerce.com/2022/08/09/woocommerce-payments-3-9-4-4-5-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-08-09 14:41:13\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:47:\"woocommerce-payments-august-2022-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:7:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.4\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.3\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.1\";}}}}}s:48:\"needs-update-eway-payment-gateway-rin-2022-12-20\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"needs-update-eway-payment-gateway-rin-2022-12-20\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:58:\"Security vulnerability patched in WooCommerce Eway Gateway\";s:7:\"content\";s:323:\"In response to a potential vulnerability identified in WooCommerce Eway Gateway versions 3.1.0 to 3.5.0, we’ve worked to deploy security fixes and have released an updated version.\r\nNo external exploits have been detected, but we recommend you update to your latest supported version 3.1.26, 3.2.3, 3.3.1, 3.4.6, or 3.5.1\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:62:\"needs-update-eway-payment-gateway-rin-action-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:16:\"/update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:63:\"needs-update-eway-payment-gateway-rin-dismiss-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:7:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-03 23:45:53\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"3.1.26\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.2.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.6\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"3.5.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"3.1.0\";}}}s:43:\"updated-eway-payment-gateway-rin-2022-12-20\";O:8:\"stdClass\":8:{s:4:\"slug\";s:43:\"updated-eway-payment-gateway-rin-2022-12-20\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"WooCommerce Eway Gateway has been automatically updated\";s:7:\"content\";s:280:\"Your store is now running the latest secure version of WooCommerce Eway Gateway. We worked with the WordPress Plugins team to deploy a software update to stores running WooCommerce Eway Gateway (versions 3.1.0 to 3.5.0) in response to a security vulnerability that was discovered.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:57:\"updated-eway-payment-gateway-rin-action-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"See all updates\";}}s:3:\"url\";s:16:\"/update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"updated-eway-payment-gateway-rin-dismiss-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-03 23:45:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"needs-update-eway-payment-gateway-rin-2022-12-20\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:5:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.1.26\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.2.3\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.6\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.1\";}}}}}s:31:\"ecomm-wc-navigation-survey-2023\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"ecomm-wc-navigation-survey-2023\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:39:\"Navigating WooCommerce on WordPress.com\";s:7:\"content\";s:166:\"We are improving the WooCommerce navigation on WordPress.com and would love your help to make it better! Please share your experience with us in this 2-minute survey.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:32:\"share-navigation-survey-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:58:\"https://automattic.survey.fm/new-ecommerce-plan-navigation\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-01-16 09:53:44\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:12:\"is_ecommerce\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:180;}}}s:39:\"woopay-beta-merchantrecruitment-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"woopay-beta-merchantrecruitment-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:319:\"WooPay, a new express checkout feature built into WooCommerce Payments, is <b>now available</b> —and we’re inviting you to be one of the first to try it. \r\n<br><br>\r\n<b>Boost conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\r\n<br><br>\r\n<b>Get started in seconds.</b>\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:48:\"woopay-beta-merchantrecruitment-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"woopay-beta-merchantrecruitment-activate-learnmore-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:155:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-activate-learnmore-04MAY23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:27\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.handinhandparenting.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://pritikinfoods.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://utahrecsports.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.hunterpta.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.smokinbeans.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://shulabeauty.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bingeworthytvmerch.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://s91.4d8.myftpupload.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://stephanienicolenorris.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://aliensshirt.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://libertyordeathapparelllc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://cowboystatedaily.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:42:\"https://fundrgear.com/beckendorffathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:50:\"http://wordpress-528155-2231771.cloudwaysapps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://checkout.sohaprice.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://amadozstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://eliwehbe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://lunabra.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://nptixx.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://louisianapantry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://aplusanatomy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://wildsvg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://bleachfilm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://benabeautyspa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:47:\"http://barrettfitnessenterprises.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://goabroadable.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://alexoathletica.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.fourpurls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.hagmannreport.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://busybeeorganics.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nallsproduce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://bigtimebats.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://shop.cookingwithkarli.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.queenofpeacemedia.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://bigjohnsbeefjerky.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://paperbyjaney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://carolinarisemembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://veroticaevents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://spira.farm\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://endlessassist.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://betterlifeblog.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://ashleighrenard.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.turkeymerck.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://carfiershop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://normanmusicfestival.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://www.olfactoryfactoryllc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://fundrgear.com/anthonyathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"http://tkechilifestdotcom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://pvsa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://becbatop.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wwmeconvention.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://lswmp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bubbaskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://fusango.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://vcdpostershow.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.rileysribz.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.fakeultrasound.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://onelongfellowsquare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://agodpod.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/littleladybulldogs\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://thecirclelarp.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://byletam.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.nachonite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://designerdab.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2151.temp.domains/~lovebyt2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://shortporchbaseballcompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://distancecme.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://middleswarthchips.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://railblazausa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://mikescountrymeats.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://www.woodenshoe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://rockspringscafe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"http://footballfangears.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://ybtoner.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://simplyclayyy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://naturecreation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://marisrodriguez.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://asanteinternational.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://theatre55.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://carolynscreativeclassroom.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.miiriya.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://trendyds.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wooedbythefood.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://papasteamstores.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://omdurags.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://happydogbarkery.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://kitbose.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://seamossdeals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://zeatala.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://shop.atwaterffa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://www.brettsfirstresponders.org/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://shirtactive.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://boerneparade.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://zorahshrine.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://davidcervenka.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://addisjourney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://305ycle.cc\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"http://yourworstnightmarehaunt.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://westcoastpreps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://checkout.sohaking.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://www.theunshakeablepundit.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.stellaandchewys.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.raywhitcomb.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"http://constellationtheatercompany.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://stacynguyen.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:46:\"https://fundrgear.com/lakecreekgirlsbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://winslowartcenter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://flufftastik.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mygreenbeach.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://ebookvip.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/needvillevolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bifocalmedia.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://clrc.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://hyperpins.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/lakecreekboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://fundrgear.com/kparktennis\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mogadorspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://fundrgear.com/newcaneytrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://sigmascents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://bsharisemoore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://morrflate.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://westbrosinc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://shop.danceplexaz.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://chikepod.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.advanahealth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://tatter.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://greatawakeningbrewing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://waterfowlfestival.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://preppedwellness.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://events.thus.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://stormtide.thefifthtrooper.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.tabsynth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"http://staging.fliptheswitchon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://duffysdough.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodieliving.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://breakerbrotherstcg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://andymation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://recklessmetals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://sophielark.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://wp.arabtherapy.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://creativeappliques.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://altitude.win\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:42:\"woocommerce-wcpay-march-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:42:\"woocommerce-wcpay-march-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:57:\"Action required: Security update for WooCommerce Payments\";s:7:\"content\";s:296:\"<strong>Your store requires a security update for WooCommerce Payments</strong>. Please update to the latest version of WooCommerce Payments immediately to address a potential vulnerability discovered on March 22. For more information on how to update, visit this WooCommerce Developer Blog Post.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:49:\"woocommerce-wcpay-march-2023-update-needed-button\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"See Blog Post\";}}s:3:\"url\";s:122:\"https://developer.woocommerce.com/2023/03/23/critical-vulnerability-detected-in-woocommerce-payments-what-you-need-to-know\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:57:\"woocommerce-wcpay-march-2023-update-needed-dismiss-button\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:11:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-03-22 20:25:44\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.4\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.3\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.5.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"4.8.0\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"5.6.1\";}}}s:34:\"tap_to_pay_iphone_q2_2023_no_wcpay\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"tap_to_pay_iphone_q2_2023_no_wcpay\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:52:\"Accept in-person contactless payments on your iPhone\";s:7:\"content\";s:230:\"Tap to Pay on iPhone and WooCommerce Payments is quick, secure, and simple to set up — no extra terminals or card readers are needed. Accept contactless debit and credit cards, Apple Pay, and other NFC digital wallets in person.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"tap_to_pay_iphone_q2_2023_no_wcpay\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:20:\"Simplify my payments\";}}s:3:\"url\";s:143:\"https://woocommerce.com/products/woocommerce-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=tap_to_pay_iphone_q2_2023_no_wcpay\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-03 23:59:47\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}s:36:\"tap_to_pay_iphone_q2_2023_with_wcpay\";O:8:\"stdClass\":8:{s:4:\"slug\";s:36:\"tap_to_pay_iphone_q2_2023_with_wcpay\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:57:\"New: accept in-person contactless payments on your iPhone\";s:7:\"content\";s:250:\"Tap to Pay on iPhone is quick, secure, and simple to set up in WooCommerce Payments — no extra terminals or card readers are needed. Accept contactless debit and credit cards, Apple Pay, and other NFC digital wallets in person in a few short steps!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:36:\"tap_to_pay_iphone_q2_2023_with_wcpay\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Set up Tap to Pay on iPhone\";}}s:3:\"url\";s:234:\"https://woocommerce.com/document/woocommerce-payments/in-person-payments/woocommerce-in-person-payments-tap-to-pay-on-iphone-quick-start-guide/?utm_source=inbox_note&utm_medium=product&utm_campaign=tap_to_pay_iphone_q2_2023_with_wcpay\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-03 23:59:44\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}s:48:\"woocommerce-WCPreOrders-april-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-WCPreOrders-april-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:68:\"Action required: Security update of WooCommerce Pre-Orders extension\";s:7:\"content\";s:220:\"<strong>Your store requires a security update for the WooCommerce Pre-Orders extension</strong>. Please update the WooCommerce Pre-Orders extension immediately to address a potential vulnerability discovered on April 11.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"extension-settings\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:15:\"update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-12 22:16:37\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:22:\"woocommerce-pre-orders\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"2.0.0\";}}}s:46:\"woopay-beta-merchantrecruitment-update-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woopay-beta-merchantrecruitment-update-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:321:\"WooPay, a new express checkout feature built into WooCommerce Payments, is <b>now available</b> — and you’re invited to try it. \r\n<br /><br />\r\n<b>Boost conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\r\n<br /><br />\r\n<b>Update WooCommerce Payments</b> to get started.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:52:\"woopay-beta-merchantrecruitment-update-WCPay-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:55:\"woopay-beta-merchantrecruitment-update-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.handinhandparenting.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://pritikinfoods.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://utahrecsports.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.hunterpta.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.smokinbeans.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://shulabeauty.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bingeworthytvmerch.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://s91.4d8.myftpupload.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://stephanienicolenorris.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://aliensshirt.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://libertyordeathapparelllc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://cowboystatedaily.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:42:\"https://fundrgear.com/beckendorffathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:50:\"http://wordpress-528155-2231771.cloudwaysapps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://checkout.sohaprice.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://amadozstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://eliwehbe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://lunabra.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://nptixx.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://louisianapantry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://aplusanatomy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://wildsvg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://bleachfilm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://benabeautyspa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:47:\"http://barrettfitnessenterprises.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://goabroadable.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://alexoathletica.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.fourpurls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.hagmannreport.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://busybeeorganics.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nallsproduce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://bigtimebats.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://shop.cookingwithkarli.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.queenofpeacemedia.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://bigjohnsbeefjerky.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://paperbyjaney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://carolinarisemembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://veroticaevents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://spira.farm\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://endlessassist.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://betterlifeblog.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://ashleighrenard.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.turkeymerck.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://carfiershop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://normanmusicfestival.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://www.olfactoryfactoryllc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://fundrgear.com/anthonyathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"http://tkechilifestdotcom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://pvsa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://becbatop.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wwmeconvention.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://lswmp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bubbaskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://fusango.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://vcdpostershow.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.rileysribz.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.fakeultrasound.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://onelongfellowsquare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://agodpod.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/littleladybulldogs\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://thecirclelarp.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://byletam.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.nachonite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://designerdab.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2151.temp.domains/~lovebyt2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://shortporchbaseballcompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://distancecme.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://middleswarthchips.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://railblazausa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://mikescountrymeats.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://www.woodenshoe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://rockspringscafe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"http://footballfangears.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://ybtoner.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://simplyclayyy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://naturecreation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://marisrodriguez.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://asanteinternational.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://theatre55.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://carolynscreativeclassroom.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.miiriya.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://trendyds.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wooedbythefood.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://papasteamstores.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://omdurags.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://happydogbarkery.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://kitbose.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://seamossdeals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://zeatala.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://shop.atwaterffa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://www.brettsfirstresponders.org/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://shirtactive.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://boerneparade.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://zorahshrine.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://davidcervenka.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://addisjourney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://305ycle.cc\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"http://yourworstnightmarehaunt.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://westcoastpreps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://checkout.sohaking.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://www.theunshakeablepundit.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.stellaandchewys.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.raywhitcomb.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"http://constellationtheatercompany.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://stacynguyen.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:46:\"https://fundrgear.com/lakecreekgirlsbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://winslowartcenter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://flufftastik.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mygreenbeach.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://ebookvip.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/needvillevolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bifocalmedia.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://clrc.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://hyperpins.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/lakecreekboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://fundrgear.com/kparktennis\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mogadorspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://fundrgear.com/newcaneytrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://sigmascents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://bsharisemoore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://morrflate.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://westbrosinc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://shop.danceplexaz.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://chikepod.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.advanahealth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://tatter.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://greatawakeningbrewing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://waterfowlfestival.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://preppedwellness.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://events.thus.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://stormtide.thefifthtrooper.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.tabsynth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"http://staging.fliptheswitchon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://duffysdough.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodieliving.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://breakerbrotherstcg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://andymation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://recklessmetals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://sophielark.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://wp.arabtherapy.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://creativeappliques.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://altitude.win\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:46:\"woopay-beta-existingmerchants-noaction-27APR23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woopay-beta-existingmerchants-noaction-27APR23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:15:\"WooPay is back!\";s:7:\"content\";s:361:\"Thanks for previously trying WooPay, the<b> express checkout feature</b> built into WooCommerce Payments. We’re excited to announce that <b>WooPay availability has resumed</b>. No action is required on your part.\r\n<br /><br />\r\nYou can now <b>continue boosting conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-existingmerchants-noaction-documentation-27APR23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Documentation\";}}s:3:\"url\";s:178:\"https://woocommerce.com/document/woopay-merchant-documentation/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-existingmerchants-noaction-documentation-27APR23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-26 19:00:23\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.0\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:38:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://store.startingstrongman.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://joacreativelab.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.pureskincaresalon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mariablaquier.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://getprodigital.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://dalefrickeholsters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://sstour.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://tk-txstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://humanspiritproject.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://viradadrums.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://rosariumblends.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://organicskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://stuckpigmedical.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.seattlegiftbasket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.cloverandviolet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gvscholarship.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://yesimadiva.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://www.old.jmtrashbgone.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://victorialansford.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://craftcosplay.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://thefossilexchange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nextgenspeed.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cappellarecords.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://ontimesupermarket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://new2knox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://lovestudiollc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://socceruniformkits.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://willowcreativ.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://summitprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://howda.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://soapavenuecompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://subsbox.mystagingwebsite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wifflebreakers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.mps-outfitters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://howardharrisassociates.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bettersaferadio.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://bunnyluna.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:44:\"woopay-beta-existingmerchants-update-27APR23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:44:\"woopay-beta-existingmerchants-update-27APR23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:15:\"WooPay is back!\";s:7:\"content\";s:368:\"Thanks for previously trying WooPay, the <b>express checkout feature</b> built into WooCommerce Payments. We’re excited to announce that <b>WooPay availability has resumed</b>.\r\n<br /><br />\r\n\r\nUpdate to the latest WooCommerce Payments version to <b>continue boosting conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:50:\"woopay-beta-existingmerchants-update-WCPay-27APR23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-26 19:00:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.0\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:38:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://store.startingstrongman.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://joacreativelab.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.pureskincaresalon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mariablaquier.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://getprodigital.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://dalefrickeholsters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://sstour.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://tk-txstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://humanspiritproject.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://viradadrums.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://rosariumblends.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://organicskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://stuckpigmedical.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.seattlegiftbasket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.cloverandviolet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gvscholarship.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://yesimadiva.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://www.old.jmtrashbgone.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://victorialansford.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://craftcosplay.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://thefossilexchange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nextgenspeed.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cappellarecords.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://ontimesupermarket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://new2knox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://lovestudiollc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://socceruniformkits.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://willowcreativ.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://summitprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://howda.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://soapavenuecompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://subsbox.mystagingwebsite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wifflebreakers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.mps-outfitters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://howardharrisassociates.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bettersaferadio.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://bunnyluna.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:45:\"woopay-beta-merchantrecruitment-short-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woopay-beta-merchantrecruitment-short-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:54:\"woopay-beta-merchantrecruitment-short-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:64:\"woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:161:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:36\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://pieroatomic3.wpcomstaging.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.bluebeautifly.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://indianrivernatural.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://fouroaksproducts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:14:\"https://acb.la\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://www.sweetpotatoplant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://www.gocaseyourself.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://laugun.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://nebraskadaybyday.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://vintagemarche727.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://kohai.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://gracegaze.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://aliensmeaning.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://myheritagegardens.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://shopmoresport.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://oladino.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://frogjumpstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cagedthundermma.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/mcelwainelementary\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://mgco.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://500gp.io/pay\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://waterglassslimes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://antiqueful.shop/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://deeperkidmin.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/cyspringsboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://houseofminifigs.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2273.temp.domains/~dreambx2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://madebymixture.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://reliabletrash.company\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.daddybutter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://circleqessentials.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://garlicbraids.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://fbdonline.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://galaxysedge.us\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://duckduckbeetfarm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://varsitygraphics.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://jademackenzie.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://kristysketolifestyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://covid19criticalcare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://parkviewprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://rock-fest.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://fillinxsolutions.com/etarix/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://doughremitx.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.montanafiddlecamp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://fococomiccon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://patricendouglas.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://hectue.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://montanamaxbbq.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://smellzoom.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://uptowne.theoandson.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://superbasic.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ppodstore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://kerenzan.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://a13bargains.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://colorgr.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://mindbodysoulcandles.com/Charlotte\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://peaceloveandadhd.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://seymoursmash.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mwtournament.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:43:\"https://fundrgear.com/beckendorffgirlstrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://allswellnyc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://childoftheredwoodsmembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/grandoaksvolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.newhollandrochester.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.purplecatvet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"https://www.mustangmountaincoaster.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.roccanj.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.teerico.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://passportunlimited.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.paladincards20.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://giantshorties.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visualsports.biz\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://thefreakinricanrestaurant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://arequestionscom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://pt.tktxcompanystore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodiechicks.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://nutoshop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://backwoodzhiphop.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://gartapparel.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bodega.badiaspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://rampartrange.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://teeuni.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bearsinthealley.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://vitalbooks.net/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://hair-free-hair-remover.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gangtaynails.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://crochetfoundry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://westcoastbelts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://payment.sundryfiles.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://ccadunkirk.mudhenmama.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://desertsupercup.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://shops-eminem.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://75yearsofracing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://tixpls.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:44:\"http://legacyoutfitters.org/banquet/raffles/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://91170e9fc9.nxcli.io/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://beachwayrentals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://esd.camp\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mfkgamecalls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://1greatce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.luthyouth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://electionintegrityidaho.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://renbundle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://premierseamoss.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://teemart.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/beckendorffgirlsbb\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visiblechild.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ebookvital.me/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://renemarsh.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://www.eventricate.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://transgression.party\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://profadex.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://mxsbattlegrounds.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.poeinbaltimore.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://freefall.gg\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://underthechurchhatblog.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://naksparkle.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"http://bearlyburly.gay/inventory\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.premierboneandjoint.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://farm-2-bowl.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://hollandgrill.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://lividian.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.trainingrange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://sarakepskitchen.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.phoenixyouththeatre.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://drivenarmsco.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://audiobro.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://www.iowaabortionaccessfund.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://findthemenu.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://moderndepot.co\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://granitesupplements.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://healthyrican.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://utest.edsandbox.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://c-pounds.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://littleschoolofsmiths.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://goblinstyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://proper-testing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.cosafoundation.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://farmsteadboxes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://fundraise4books.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://norskenook.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://cajulove.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:52:\"woopay-beta-merchantrecruitment-short-update-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:52:\"woopay-beta-merchantrecruitment-short-update-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:227:\"Be one of the first to try WooPay, our new express checkout feature. <br><b>Boost conversions</b> by letting customers pay with a <b>single click</b>. <br><br>Update to the latest version of WooCommerce Payments to get started.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"woopay-beta-merchantrecruitment-short-update-WCPay-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:61:\"woopay-beta-merchantrecruitment-short-update-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:20\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.bluebeautifly.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://indianrivernatural.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://fouroaksproducts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:14:\"https://acb.la\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://www.sweetpotatoplant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://www.gocaseyourself.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://laugun.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://nebraskadaybyday.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://vintagemarche727.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://kohai.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://gracegaze.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://aliensmeaning.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://myheritagegardens.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://shopmoresport.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://oladino.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://frogjumpstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cagedthundermma.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/mcelwainelementary\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://mgco.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://500gp.io/pay\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://waterglassslimes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://antiqueful.shop/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://deeperkidmin.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/cyspringsboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://houseofminifigs.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2273.temp.domains/~dreambx2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://madebymixture.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://reliabletrash.company\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.daddybutter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://circleqessentials.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://garlicbraids.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://fbdonline.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://galaxysedge.us\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://duckduckbeetfarm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://varsitygraphics.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://jademackenzie.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://kristysketolifestyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://covid19criticalcare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://parkviewprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://rock-fest.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://fillinxsolutions.com/etarix/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://doughremitx.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.montanafiddlecamp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://fococomiccon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://patricendouglas.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://hectue.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://montanamaxbbq.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://smellzoom.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://uptowne.theoandson.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://superbasic.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ppodstore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://kerenzan.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://a13bargains.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://colorgr.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://mindbodysoulcandles.com/Charlotte\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://peaceloveandadhd.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://seymoursmash.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mwtournament.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:43:\"https://fundrgear.com/beckendorffgirlstrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://allswellnyc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://childoftheredwoodsmembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/grandoaksvolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.newhollandrochester.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.purplecatvet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"https://www.mustangmountaincoaster.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.roccanj.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.teerico.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://passportunlimited.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.paladincards20.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://giantshorties.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visualsports.biz\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://thefreakinricanrestaurant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://arequestionscom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://pt.tktxcompanystore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodiechicks.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://nutoshop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://backwoodzhiphop.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://gartapparel.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bodega.badiaspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://rampartrange.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://teeuni.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bearsinthealley.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://vitalbooks.net/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://hair-free-hair-remover.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gangtaynails.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://crochetfoundry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://westcoastbelts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://payment.sundryfiles.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://ccadunkirk.mudhenmama.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://desertsupercup.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://shops-eminem.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://75yearsofracing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://tixpls.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:44:\"http://legacyoutfitters.org/banquet/raffles/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://91170e9fc9.nxcli.io/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://beachwayrentals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://esd.camp\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mfkgamecalls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://1greatce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.luthyouth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://electionintegrityidaho.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://renbundle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://premierseamoss.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://teemart.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/beckendorffgirlsbb\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visiblechild.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ebookvital.me/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://renemarsh.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://www.eventricate.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://transgression.party\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://profadex.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://mxsbattlegrounds.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.poeinbaltimore.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://freefall.gg\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://underthechurchhatblog.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://naksparkle.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"http://bearlyburly.gay/inventory\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.premierboneandjoint.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://farm-2-bowl.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://hollandgrill.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://lividian.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.trainingrange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://sarakepskitchen.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.phoenixyouththeatre.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://drivenarmsco.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://audiobro.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://www.iowaabortionaccessfund.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://findthemenu.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://moderndepot.co\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://granitesupplements.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://healthyrican.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://utest.edsandbox.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://c-pounds.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://littleschoolofsmiths.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://goblinstyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://proper-testing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.cosafoundation.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://farmsteadboxes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://fundraise4books.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://norskenook.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://cajulove.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTA\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTA\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTA\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test A\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:167:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 00:01:32\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTB\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTB\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTB\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test B\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:167:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 20:58:43\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTC\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTC\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTC\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test C\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:167:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 21:03:33\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://pieroatomic3.wpcomstaging.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTD\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTD\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTD\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test D\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:167:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 21:32:09\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://pieroatomic3.wpcomstaging.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:45:\"woopay-beta-merchantrecruitment-short-09MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woopay-beta-merchantrecruitment-short-09MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:61:\"woopay-beta-merchantrecruitment-short-activate-button-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:72:\"woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:169:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-08 19:18:44\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:17:\"platform_checkout\";}}}s:11:\"option_name\";s:41:\"woocommerce_woocommerce_payments_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"no\";s:7:\"default\";b:0;}i:3;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:31:\"data.platform_checkout_eligible\";}}}s:11:\"option_name\";s:18:\"wcpay_account_data\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;s:7:\"default\";b:0;}}}s:52:\"woopay-beta-merchantrecruitment-short-update-09MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:52:\"woopay-beta-merchantrecruitment-short-update-09MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:227:\"Be one of the first to try WooPay, our new express checkout feature. <br><b>Boost conversions</b> by letting customers pay with a <b>single click</b>. <br><br>Update to the latest version of WooCommerce Payments to get started.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"woopay-beta-merchantrecruitment-short-update-WCPay-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:61:\"woopay-beta-merchantrecruitment-short-update-activate-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-08 19:45:57\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:17:\"platform_checkout\";}}}s:11:\"option_name\";s:41:\"woocommerce_woocommerce_payments_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"no\";s:7:\"default\";b:0;}i:3;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:31:\"data.platform_checkout_eligible\";}}}s:11:\"option_name\";s:18:\"wcpay_account_data\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;s:7:\"default\";b:0;}}}s:41:\"ipp_refresh_q2_2023_us_inbox_notification\";O:8:\"stdClass\":8:{s:4:\"slug\";s:41:\"ipp_refresh_q2_2023_us_inbox_notification\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:38:\"Grow on the go with in-person payments\";s:7:\"content\";s:247:\"Sell your products or services on the go with the M2 card reader – a quick, synchronized, and secure way to take payments, no matter where you are. Create an order using the WooCommerce mobile app and connect your card reader to accept payments.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:41:\"ipp_refresh_q2_2023_us_inbox_notification\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:26:\"Grow my business on the go\";}}s:3:\"url\";s:139:\"https://woocommerce.com/in-person-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=ipp_refresh_q2_2023_us_inbox_notification\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-18 04:16:26\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-08-31 23:59:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}s:41:\"ipp_refresh_q2_2023_ca_inbox_notification\";O:8:\"stdClass\":8:{s:4:\"slug\";s:41:\"ipp_refresh_q2_2023_ca_inbox_notification\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:38:\"Grow on the go with in-person payments\";s:7:\"content\";s:254:\"Sell your products or services on the go with the WisePad 3 card reader – a quick, synchronized, and secure way to take payments, no matter where you are. Create an order using the WooCommerce mobile app and connect your card reader to accept payments.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:41:\"ipp_refresh_q2_2023_ca_inbox_notification\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:26:\"Grow my business on the go\";}}s:3:\"url\";s:139:\"https://woocommerce.com/in-person-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=ipp_refresh_q2_2023_ca_inbox_notification\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-18 04:18:49\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-08-31 23:59:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"CA\";}}}s:44:\"woocommerce-WCstripe-May-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:44:\"woocommerce-WCstripe-May-2023-updated-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Action required: Security update of WooCommerce Stripe plugin\";s:7:\"content\";s:183:\"<strong>Your store requires a security update for the WooCommerce Stripe plugin</strong>. Please update the WooCommerce Stripe plugin immediately to address a potential vulnerability.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woocommerce-WCStripe-May-2023-updated-needed-Plugin-Settings\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:68:\"woocommerce-WCStripe-May-2023-updated-needed-Plugin-Settings-dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-31 19:54:10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.0\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"7.4.1\";}}}s:47:\"woocommerce-WCPayments-June-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-WCPayments-June-2023-updated-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:56:\"Action required: Security update of WooCommerce Payments\";s:7:\"content\";s:187:\"<strong>Your store requires a security update for the WooCommerce Payments plugin</strong>. Please update the WooCommerce Payments plugin immediately to address a potential vulnerability.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:63:\"woocommerce-WCPayments-June-2023-updated-needed-Plugin-Settings\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:55:\"woocommerce-WCPayments-June-2023-updated-needed-Dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:20:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-06 08:00:52\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"3.2.0\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.3\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.3\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.2\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.4\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.5.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.6.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.7.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.8.2\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.9.1\";}}}s:52:\"woocommerce-WCSubscriptions-June-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:52:\"woocommerce-WCSubscriptions-June-2023-updated-needed\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Action required: Security update of WooCommerce Subscriptions\";s:7:\"content\";s:197:\"<strong>Your store requires a security update for the WooCommerce Subscriptions plugin</strong>. Please update the WooCommerce Subscriptions plugin immediately to address a potential vulnerability.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:68:\"woocommerce-WCSubscriptions-June-2023-updated-needed-Plugin-Settings\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woocommerce-WCSubscriptions-June-2023-updated-needed-dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-06 08:00:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"2.1.0\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"5.1.2\";}}}s:54:\"woocommerce-WCReturnsWarranty-June-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:54:\"woocommerce-WCReturnsWarranty-June-2023-updated-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:87:\"Action required: Security update of WooCommerce Returns and Warranty Requests extension\";s:7:\"content\";s:270:\"<strong>Your store requires a security update for the Returns and Warranty Requests extension</strong>.  Please update to the latest version of the WooCommerce Returns and Warranty Requests extension immediately to address a potential vulnerability discovered on May 31.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:54:\"woocommerce-WCReturnsWarranty-June-2023-updated-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:54:\"woocommerce-WCReturnsWarranty-June-2023-updated-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-02 23:53:57\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-warranty\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"2.1.8\";}}}s:41:\"woocommerce_hpos_1st_notification_q2_2023\";O:8:\"stdClass\":8:{s:4:\"slug\";s:41:\"woocommerce_hpos_1st_notification_q2_2023\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:51:\"High-Performance Order Storage (HPOS) is on its way\";s:7:\"content\";s:310:\"Our team is targeting August 2023 to roll out a major database upgrade that can unlock faster checkout and order creation for your customers — and lightning-quick order lookup for you. Enablement is optional and you won’t be forced to update, but read on to see why this was our most requested new feature.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:41:\"woocommerce_hpos_1st_notification_q2_2023\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Learn more about HPOS\";}}s:3:\"url\";s:189:\"https://woocommerce.com/posts/platform-update-high-performance-order-storage-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=woocommerce_hpos_1st_notification_q2_2023\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-06 22:14:44\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-07-28 23:59:00\";}}}s:42:\"woocommerce-WCOPC-June-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:42:\"woocommerce-WCOPC-June-2023-updated-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:65:\"Action required: Security update of WooCommerce One Page Checkout\";s:7:\"content\";s:232:\"<strong>Your shop requires a security update to address a vulnerability in the WooCommerce One Page Checkout extension</strong>. The fix for this vulnerability was released for this extension on June 13th. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:42:\"woocommerce-WCOPC-June-2023-updated-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:42:\"woocommerce-WCOPC-June-2023-updated-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-21 14:05:46\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:29:\"woocommerce-one-page-checkout\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"2.4.0\";}}}s:40:\"woocommerce-WCGC-July-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:40:\"woocommerce-WCGC-July-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:68:\"Action required: Security update of WooCommerce GoCardless Extension\";s:7:\"content\";s:205:\"<strong>Your shop requires a security update to address a vulnerability in the WooCommerce GoCardless extension</strong>. The fix for this vulnerability was released on July 4th. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:40:\"woocommerce-WCGC-July-2023-update-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:40:\"woocommerce-WCGC-July-2023-update-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-07-04 15:36:07\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:30:\"woocommerce-gateway-gocardless\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"2.5.6\";}}}s:31:\"wc-admin-wcpay-bulgaria-Q2-2023\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"wc-admin-wcpay-bulgaria-Q2-2023\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:50:\"WooCommerce Payments is now available in Bulgaria!\";s:7:\"content\";s:216:\"We’ve recently released WooCommerce Payments in Bulgaria. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:31:\"wc-admin-wcpay-bulgaria-Q2-2023\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:20:\"Simplify my payments\";}}s:3:\"url\";s:128:\"https://woocommerce.com/payments/bulgaria/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-bulgaria-Q2-2023\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-29 16:32:12\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-08-15 23:59:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"BG\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}}}s:30:\"wc-admin-wcpay-czechia-Q2-2023\";O:8:\"stdClass\":8:{s:4:\"slug\";s:30:\"wc-admin-wcpay-czechia-Q2-2023\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:49:\"WooCommerce Payments is now available in Czechia!\";s:7:\"content\";s:215:\"We’ve recently released WooCommerce Payments in Czechia. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"wc-admin-wcpay-czechia-Q2-2023\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:20:\"Simplify my payments\";}}s:3:\"url\";s:126:\"https://woocommerce.com/payments/czechia/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-czechia-Q2-2023\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-29 16:37:42\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-08-15 23:59:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"CZ\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}}}s:30:\"wc-admin-wcpay-croatia-Q2-2023\";O:8:\"stdClass\":8:{s:4:\"slug\";s:30:\"wc-admin-wcpay-croatia-Q2-2023\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:49:\"WooCommerce Payments is now available in Croatia!\";s:7:\"content\";s:215:\"We’ve recently released WooCommerce Payments in Croatia. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"wc-admin-wcpay-croatia-Q2-2023\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:20:\"Simplify my payments\";}}s:3:\"url\";s:126:\"https://woocommerce.com/payments/croatia/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-croatia-Q2-2023\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-29 16:43:08\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-08-15 23:59:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"HR\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}}}s:30:\"wc-admin-wcpay-hungary-Q2-2023\";O:8:\"stdClass\":8:{s:4:\"slug\";s:30:\"wc-admin-wcpay-hungary-Q2-2023\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:49:\"WooCommerce Payments is now available in Hungary!\";s:7:\"content\";s:215:\"We’ve recently released WooCommerce Payments in Hungary. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"wc-admin-wcpay-hungary-Q2-2023\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:20:\"Simplify my payments\";}}s:3:\"url\";s:126:\"https://woocommerce.com/payments/hungary/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-hungary-Q2-2023\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-29 16:50:53\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-08-15 23:59:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"HU\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}}}s:30:\"wc-admin-wcpay-romania-Q2-2023\";O:8:\"stdClass\":8:{s:4:\"slug\";s:30:\"wc-admin-wcpay-romania-Q2-2023\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:49:\"WooCommerce Payments is now available in Romania!\";s:7:\"content\";s:215:\"We’ve recently released WooCommerce Payments in Romania. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"wc-admin-wcpay-romania-Q2-2023\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:20:\"Simplify my payments\";}}s:3:\"url\";s:126:\"https://woocommerce.com/payments/romania/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-romania-Q2-2023\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-29 16:55:13\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-08-15 23:59:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"RO\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}}}s:29:\"wc-admin-wcpay-sweden-Q2-2023\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"wc-admin-wcpay-sweden-Q2-2023\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:48:\"WooCommerce Payments is now available in Sweden!\";s:7:\"content\";s:214:\"We’ve recently released WooCommerce Payments in Sweden. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:29:\"wc-admin-wcpay-sweden-Q2-2023\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:20:\"Simplify my payments\";}}s:3:\"url\";s:124:\"https://woocommerce.com/payments/sweden/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-sweden-Q2-2023\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-29 16:08:15\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-08-15 23:59:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"SE\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}}}s:48:\"woocommerce-shipping-fedex-api-outage-2023-07-16\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-shipping-fedex-api-outage-2023-07-16\";s:4:\"type\";s:7:\"warning\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:40:\"Scheduled FedEx API outage — July 2023\";s:7:\"content\";s:277:\"On July 16 there will be a full outage of the FedEx API from 04:00 to 08:00 AM UTC. Due to planned maintenance by FedEx, you\'ll be unable to provide FedEx shipping rates during this time. Follow the link below for more information and recommendations on how to minimize impact.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:125:\"https://woocommerce.com/document/fedex/?utm_medium=product&utm_source=inbox_note&utm_campaign=learn-more#july-2023-api-outage\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-07-05 18:19:17\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-shipping-fedex\";}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-07-17 00:00:00\";}}}s:23:\"square_payments_q3_2023\";O:8:\"stdClass\":8:{s:4:\"slug\";s:23:\"square_payments_q3_2023\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:22:\"Square for WooCommerce\";s:7:\"content\";s:291:\"Connect your Square account with WooCommerce to accept online and in-person payments (including contactless payments and cross-channel gift cards) quickly and securely. Save time by syncing sales, customers, and items and inventory — and manage everything through one centralized platform.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"square_button_q3_2023\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:23:\"Get started with Square\";}}s:3:\"url\";s:116:\"https://woocommerce.com/products/square/?utm_source=inbox_note&utm_medium=product&utm_campaign=square_button_q3_2023\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-07-19 13:25:36\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-07-31 23:59:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:8:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"GB\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"AU\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"FR\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"DE\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"ES\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"IR\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"JP\";}}}}}s:35:\"wcship-2023-07-hazmat-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:35:\"wcship-2023-07-hazmat-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:87:\"Action required: USPS HAZMAT compliance update for WooCommerce Shipping & Tax extension\";s:7:\"content\";s:251:\"<strong>Your store requires an update for the WooCommerce Shipping extension</strong>. Please update to the latest version of the WooCommerce Shipping &amp; Tax extension immediately to ensure compliance with new USPS HAZMAT rules currently in effect.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"plugin-list\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:23:\"admin.php?page=wc-admin\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-07-11 20:26:59\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-services\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"2.3.0\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}}s:5:\"en_US\";a:63:{s:27:\"new_in_app_marketplace_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:27:\"new_in_app_marketplace_2021\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:36:\"Customize your store with extensions\";s:7:\"content\";s:164:\"Check out our NEW Extensions tab to see our favorite extensions for customizing your store, and discover the most popular extensions in the WooCommerce Marketplace.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"browse_extensions\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:17:\"Browse extensions\";}}s:3:\"url\";s:24:\"admin.php?page=wc-addons\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:14:23\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.7\";}}}s:21:\"wayflyer_bnpl_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:21:\"wayflyer_bnpl_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:48:\"Grow your business with funding through Wayflyer\";s:7:\"content\";s:261:\"Fast, flexible financing to boost cash flow and help your business grow – one fee, no interest rates, penalties, equity, or personal guarantees. Based on your store’s performance, Wayflyer provides funding and analytical insights to invest in your business.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"wayflyer_bnpl_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Level up with funding\";}}s:3:\"url\";s:118:\"https://woocommerce.com/products/wayflyer/?utm_source=inbox_note&utm_medium=product&utm_campaign=wayflyer_bnpl_q4_2021\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-17 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-12-18 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:7:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"AU\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"BE\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"CA\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"IE\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"NL\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"GB\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-affirm\";}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:32:\"afterpay-gateway-for-woocommerce\";}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:31:\"klarna-payments-for-woocommerce\";}}}}}}s:35:\"wc_shipping_mobile_app_usps_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:94:\"Print and manage your shipping labels with WooCommerce Shipping and the WooCommerce Mobile App\";s:7:\"content\";s:210:\"Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> – all directly from your mobile device!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Get WooCommerce Shipping\";}}s:3:\"url\";s:135:\"https://woocommerce.com/woocommerce-shipping/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_shipping_mobile_app_usps_q4_2021\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-12 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-11-27 00:00:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:25:\"woocommerce-shipping-usps\";}}i:4;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}}}s:20:\"woocommerce-services\";O:8:\"stdClass\":8:{s:4:\"slug\";s:20:\"woocommerce-services\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:26:\"WooCommerce Shipping & Tax\";s:7:\"content\";s:251:\"WooCommerce Shipping & Tax helps get your store \"ready to sell\" as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:84:\"https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:17:25\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:2;}}}s:18:\"your-first-product\";O:8:\"stdClass\":8:{s:4:\"slug\";s:18:\"your-first-product\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:18:\"Your first product\";s:7:\"content\";s:467:\"That’s huge! You’re well on your way to building a successful online store — now it’s time to think about how you’ll fulfill your orders.<br/><br/>Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with <a href=\"https://href.li/?https://woocommerce.com/shipping\" target=\"_blank\">WooCommerce Shipping</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:130:\"https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:19:13\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_were_no_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_are_now_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:2:\">=\";s:5:\"value\";i:1;}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:13:\"product_types\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"physical\";s:7:\"default\";a:0:{}}}}s:37:\"wc-admin-optimizing-the-checkout-flow\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"wc-admin-optimizing-the-checkout-flow\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:28:\"Optimizing the checkout flow\";s:7:\"content\";s:177:\"It’s crucial to get your store’s checkout as smooth as possible to avoid losing sales. Let’s take a look at how you can optimize the checkout experience for your shoppers.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"optimizing-the-checkout-flow\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:144:\"https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox_note&utm_medium=product&utm_campaign=optimizing-the-checkout-flow\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:19:49\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"payments\";s:7:\"default\";a:0:{}}}}s:32:\"wc-payments-qualitative-feedback\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"wc-payments-qualitative-feedback\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"WooCommerce Payments setup - let us know what you think\";s:7:\"content\";s:146:\"Congrats on enabling WooCommerce Payments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"qualitative-feedback-from-new-users\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:39:\"https://automattic.survey.fm/wc-pay-new\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:21:13\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:20:\"woocommerce-payments\";s:7:\"default\";a:0:{}}}}s:29:\"share-your-feedback-on-paypal\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"share-your-feedback-on-paypal\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:29:\"Share your feedback on PayPal\";s:7:\"content\";s:127:\"Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:43:\"http://automattic.survey.fm/paypal-feedback\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:21:50\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-stripe\";}}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}}}s:31:\"google_listings_and_ads_install\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"google_listings_and_ads_install\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Drive traffic and sales with Google\";s:7:\"content\";s:123:\"Reach online shoppers to drive traffic and sales for your store by showcasing products across Google, for free or with ads.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"get-started\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:11:\"Get started\";}}s:3:\"url\";s:122:\"https://woocommerce.com/products/google-listings-and-ads?utm_source=inbox_note&utm_medium=product&utm_campaign=get-started\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-06-09 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:23:\"google_listings_and_ads\";}}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:10;}}}s:39:\"wc-subscriptions-security-update-3-0-15\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"wc-subscriptions-security-update-3-0-15\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:42:\"WooCommerce Subscriptions security update!\";s:7:\"content\";s:738:\"We recently released an important security update to WooCommerce Subscriptions. To ensure your site’s data is protected, please upgrade <strong>WooCommerce Subscriptions to version 3.0.15</strong> or later.<br/><br/>Click the button below to view and update to the latest Subscriptions version, or log in to <a href=\"https://woocommerce.com/my-dashboard\">WooCommerce.com Dashboard</a> and navigate to your <strong>Downloads</strong> page.<br/><br/>We recommend always using the latest version of WooCommerce Subscriptions, and other software running on your site, to ensure maximum security.<br/><br/>If you have any questions we are here to help — just <a href=\"https://woocommerce.com/my-account/create-a-ticket/\">open a ticket</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"update-wc-subscriptions-3-0-15\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"View latest version\";}}s:3:\"url\";s:30:\"&page=wc-addons&section=helper\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:30:32\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:6:\"3.0.15\";}}}s:29:\"woocommerce-core-update-5-4-0\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"woocommerce-core-update-5-4-0\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Update to WooCommerce 5.4.1 now\";s:7:\"content\";s:140:\"WooCommerce 5.4.1 addresses a checkout issue discovered in WooCommerce 5.4. We recommend upgrading to WooCommerce 5.4.1 as soon as possible.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"update-wc-core-5-4-0\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:25:\"How to update WooCommerce\";}}s:3:\"url\";s:64:\"https://docs.woocommerce.com/document/how-to-update-woocommerce/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:31:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.0\";}}}s:19:\"wcpay-promo-2020-11\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"wcpay-promo-2020-11\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-11\";s:7:\"content\";s:19:\"wcpay-promo-2020-11\";}}s:7:\"actions\";a:0:{}s:5:\"rules\";a:0:{}}s:19:\"wcpay-promo-2020-12\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"wcpay-promo-2020-12\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-12\";s:7:\"content\";s:19:\"wcpay-promo-2020-12\";}}s:7:\"actions\";a:0:{}s:5:\"rules\";a:0:{}}s:34:\"ppxo-pps-upgrade-paypal-payments-1\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-1\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:47:\"Get the latest PayPal extension for WooCommerce\";s:7:\"content\";s:442:\"Heads up! There’s a new PayPal on the block!<br/><br/>Now is a great time to upgrade to our latest <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension</a> to continue to receive support and updates with PayPal.<br/><br/>Get access to a full suite of PayPal payment methods, extensive currency and country coverage, and pay later options with the all-new PayPal extension for WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-1\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:33:53\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;}}}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:7;s:7:\"default\";i:1;s:9:\"operation\";s:1:\"<\";}}}s:34:\"ppxo-pps-upgrade-paypal-payments-2\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-2\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Upgrade your PayPal experience!\";s:7:\"content\";s:358:\"Get access to a full suite of PayPal payment methods, extensive currency and country coverage, offer subscription and recurring payments, and the new PayPal pay later options.<br /><br />Start using our <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">latest PayPal today</a> to continue to receive support and updates.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-2\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:34:30\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;}}}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:6;s:7:\"default\";i:1;s:9:\"operation\";s:1:\">\";}}}s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:56:\"Action required: Critical vulnerabilities in WooCommerce\";s:7:\"content\";s:574:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:59:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:35:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.6\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.8\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.5.9\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.6\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.2\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.3\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.4\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.4\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.5\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.2\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.3\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.4\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.3\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.2\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.3\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.4\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.2\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.2\";}i:32;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.3\";}i:33;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.4\";}i:34;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.1\";}i:35;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:36;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.2\";}i:37;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.3\";}i:38;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.5.1\";}i:39;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"3.5.10\";}i:40;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.7\";}i:41;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.3\";}i:42;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.3\";}i:43;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.5\";}i:44;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.4\";}i:45;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.4\";}i:46;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.5\";}i:47;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.6\";}i:48;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.4\";}i:49;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.5\";}i:50;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.5\";}i:51;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.4\";}i:52;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.3\";}i:53;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.5\";}i:54;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.3\";}i:55;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.3\";}i:56;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.5\";}i:57;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.3\";}i:58;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.4\";}}}s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"Action required: Critical vulnerabilities in WooCommerce Blocks\";s:7:\"content\";s:570:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/>Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br/><br/>For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:32:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:35:42\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"2.5.16\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.6.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.7.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.8.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.9.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.0.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.1.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.2.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.5.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.1\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.2\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.1\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.3\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.2\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.1\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.1\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.5.1\";}}}s:45:\"woocommerce-core-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woocommerce-core-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"Solved: Critical vulnerabilities patched in WooCommerce\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:36:18\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:23:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.6\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.8\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.9\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.6\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.2\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.4\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.2\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.1\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.1\";}}}}}s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:62:\"Solved: Critical vulnerabilities patched in WooCommerce Blocks\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:36:54\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:31:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"2.5.16\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.6.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.7.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.8.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.9.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.0.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.1.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.2.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.1\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.1\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.2\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.2\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.1\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.1\";}}}}}s:19:\"habit-moment-survey\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"habit-moment-survey\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"We’re all ears! Share your experience so far with WooCommerce\";s:7:\"content\";s:136:\"We’d love your input to shape the future of WooCommerce together. Feel free to share any feedback, ideas or suggestions that you have.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:45:\"https://automattic.survey.fm/store-management\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:37:30\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:30;}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:0;}}}s:42:\"woocommerce-core-paypal-march-2022-updated\";O:8:\"stdClass\":8:{s:4:\"slug\";s:42:\"woocommerce-core-paypal-march-2022-updated\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Security auto-update of WooCommerce\";s:7:\"content\";s:391:\"<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy PayPal Standard security updates for stores running WooCommerce (version 3.5 to 6.3). It’s recommended to disable PayPal Standard, and use <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal Payments</a> to accept PayPal.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:88:\"https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:42:\"woocommerce-core-paypal-march-2022-dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-10 18:44:57\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:28:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.5.10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.7\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.3\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.5\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.4\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.5\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.6\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.5\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.5\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.5\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.2.2\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:3:\"5.5\";}i:1;a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}}}}}}}s:47:\"woocommerce-core-paypal-march-2022-updated-nopp\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-core-paypal-march-2022-updated-nopp\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Security auto-update of WooCommerce\";s:7:\"content\";s:237:\"<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy security updates related to PayPal Standard payment gateway for stores running WooCommerce (version 3.5 to 6.3).\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:88:\"https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-10 18:45:04\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:28:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.5.10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.7\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.3\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.5\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.4\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.5\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.6\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.5\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.5\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.5\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.2.2\";}}}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:42:\"woocommerce-core-paypal-march-2022-updated\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}s:24:\"pinterest_03_2022_update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:24:\"pinterest_03_2022_update\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:53:\"Your Pinterest for WooCommerce plugin is out of date!\";s:7:\"content\";s:262:\"Update to the latest version of Pinterest for WooCommerce to continue using this plugin and keep your store connected with Pinterest. To update, visit <strong>Plugins &gt; Installed Plugins</strong>, and click on “update now” under Pinterest for WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"pinterest_03_2022_update\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"Update Instructions\";}}s:3:\"url\";s:148:\"https://woocommerce.com/document/pinterest-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=pinterest_03_2022_update#section-3\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-23 00:00:39\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"pinterest-for-woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"1.0.8\";}}}s:33:\"store_setup_survey_survey_q2_2022\";O:8:\"stdClass\":8:{s:4:\"slug\";s:33:\"store_setup_survey_survey_q2_2022\";s:4:\"type\";s:6:\"survey\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:30:\"How is your store setup going?\";s:7:\"content\";s:232:\"Our goal is to make sure you have all the right tools to start setting up your store in the smoothest way possible.\r\nWe’d love to know if we hit our mark and how we can improve. To collect your thoughts, we made a 2-minute survey.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:53:\"store_setup_survey_survey_q2_2022_share_your_thoughts\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Tell us how it’s going\";}}s:3:\"url\";s:52:\"https://automattic.survey.fm/store-setup-survey-2022\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-05-09 08:42:10\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:7;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:9;}}}s:17:\"wc-admin-wisepad3\";O:8:\"stdClass\":8:{s:4:\"slug\";s:17:\"wc-admin-wisepad3\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:74:\"Take your business on the go in Canada with WooCommerce In-Person Payments\";s:7:\"content\";s:275:\"Quickly create new orders, accept payment in person for orders placed online, and automatically sync your inventory – no matter where your business takes you. With WooCommerce In-Person Payments and the WisePad 3 card reader, you can bring the power of your store anywhere.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"wc-admin-wisepad3\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Grow my business offline\";}}s:3:\"url\";s:126:\"https://woocommerce.com/products/wisepad3-card-reader/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wisepad3\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-06-15 10:00:28\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"CA\";}}}s:47:\"woocommerce-payments-august-2022-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-payments-august-2022-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:51:\"Action required: Please update WooCommerce Payments\";s:7:\"content\";s:213:\"An updated secure version of WooCommerce Payments is available – please ensure that you’re using the latest patch version. For more information on what action you need to take, please review the article below.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Find out more\";}}s:3:\"url\";s:96:\"https://developer.woocommerce.com/2022/08/09/woocommerce-payments-3-9-4-4-5-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:9:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-08-09 14:44:17\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"3.9\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"4.5.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.4\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.3\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.1\";}}}s:46:\"woocommerce-payments-august-2022-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-payments-august-2022-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:51:\"WooCommerce Payments has been automatically updated\";s:7:\"content\";s:265:\"You’re now running the latest secure version of WooCommerce Payments. We’ve worked with the WordPress Plugins team to deploy a security update to stores running WooCommerce Payments (version 3.9 to 4.5). For further information, please review the article below.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Find out more\";}}s:3:\"url\";s:96:\"https://developer.woocommerce.com/2022/08/09/woocommerce-payments-3-9-4-4-5-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-08-09 14:41:13\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:47:\"woocommerce-payments-august-2022-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:7:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.4\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.3\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.1\";}}}}}s:52:\"google_listings_ads_custom_attribute_mapping_q4_2022\";O:8:\"stdClass\":8:{s:4:\"slug\";s:52:\"google_listings_ads_custom_attribute_mapping_q4_2022\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:80:\"Our latest improvement to the Google Listings & Ads extension: Attribute Mapping\";s:7:\"content\";s:230:\"You spoke, we listened. This new feature enables you to easily upload your products, customize your product attributes in one place, and target shoppers with more relevant ads. Extend how far your ad dollars go with each campaign.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:52:\"google_listings_ads_custom_attribute_mapping_q4_2022\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:182:\"https://woocommerce.com/document/google-listings-and-ads/?utm_source=inbox_note&utm_medium=product&utm_campaign=google_listings_ads_custom_attribute_mapping_q4_2022#attribute-mapping\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-11-30 21:14:54\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:23:\"google-listings-and-ads\";}}}}s:48:\"needs-update-eway-payment-gateway-rin-2022-12-20\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"needs-update-eway-payment-gateway-rin-2022-12-20\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:58:\"Security vulnerability patched in WooCommerce Eway Gateway\";s:7:\"content\";s:323:\"In response to a potential vulnerability identified in WooCommerce Eway Gateway versions 3.1.0 to 3.5.0, we’ve worked to deploy security fixes and have released an updated version.\r\nNo external exploits have been detected, but we recommend you update to your latest supported version 3.1.26, 3.2.3, 3.3.1, 3.4.6, or 3.5.1\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:62:\"needs-update-eway-payment-gateway-rin-action-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:16:\"/update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:63:\"needs-update-eway-payment-gateway-rin-dismiss-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:7:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-03 23:45:53\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"3.1.26\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.2.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.6\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"3.5.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"3.1.0\";}}}s:43:\"updated-eway-payment-gateway-rin-2022-12-20\";O:8:\"stdClass\":8:{s:4:\"slug\";s:43:\"updated-eway-payment-gateway-rin-2022-12-20\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"WooCommerce Eway Gateway has been automatically updated\";s:7:\"content\";s:280:\"Your store is now running the latest secure version of WooCommerce Eway Gateway. We worked with the WordPress Plugins team to deploy a software update to stores running WooCommerce Eway Gateway (versions 3.1.0 to 3.5.0) in response to a security vulnerability that was discovered.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:57:\"updated-eway-payment-gateway-rin-action-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"See all updates\";}}s:3:\"url\";s:16:\"/update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"updated-eway-payment-gateway-rin-dismiss-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-03 23:45:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"needs-update-eway-payment-gateway-rin-2022-12-20\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:5:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.1.26\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.2.3\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.6\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.1\";}}}}}s:31:\"ecomm-wc-navigation-survey-2023\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"ecomm-wc-navigation-survey-2023\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:39:\"Navigating WooCommerce on WordPress.com\";s:7:\"content\";s:166:\"We are improving the WooCommerce navigation on WordPress.com and would love your help to make it better! Please share your experience with us in this 2-minute survey.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:32:\"share-navigation-survey-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:58:\"https://automattic.survey.fm/new-ecommerce-plan-navigation\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-01-16 09:53:44\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:12:\"is_ecommerce\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:180;}}}s:39:\"woopay-beta-merchantrecruitment-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"woopay-beta-merchantrecruitment-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:319:\"WooPay, a new express checkout feature built into WooCommerce Payments, is <b>now available</b> —and we’re inviting you to be one of the first to try it. \r\n<br><br>\r\n<b>Boost conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\r\n<br><br>\r\n<b>Get started in seconds.</b>\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:48:\"woopay-beta-merchantrecruitment-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"woopay-beta-merchantrecruitment-activate-learnmore-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:155:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-activate-learnmore-04MAY23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:27\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.handinhandparenting.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://pritikinfoods.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://utahrecsports.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.hunterpta.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.smokinbeans.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://shulabeauty.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bingeworthytvmerch.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://s91.4d8.myftpupload.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://stephanienicolenorris.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://aliensshirt.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://libertyordeathapparelllc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://cowboystatedaily.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:42:\"https://fundrgear.com/beckendorffathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:50:\"http://wordpress-528155-2231771.cloudwaysapps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://checkout.sohaprice.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://amadozstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://eliwehbe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://lunabra.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://nptixx.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://louisianapantry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://aplusanatomy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://wildsvg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://bleachfilm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://benabeautyspa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:47:\"http://barrettfitnessenterprises.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://goabroadable.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://alexoathletica.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.fourpurls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.hagmannreport.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://busybeeorganics.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nallsproduce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://bigtimebats.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://shop.cookingwithkarli.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.queenofpeacemedia.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://bigjohnsbeefjerky.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://paperbyjaney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://carolinarisemembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://veroticaevents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://spira.farm\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://endlessassist.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://betterlifeblog.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://ashleighrenard.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.turkeymerck.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://carfiershop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://normanmusicfestival.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://www.olfactoryfactoryllc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://fundrgear.com/anthonyathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"http://tkechilifestdotcom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://pvsa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://becbatop.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wwmeconvention.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://lswmp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bubbaskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://fusango.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://vcdpostershow.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.rileysribz.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.fakeultrasound.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://onelongfellowsquare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://agodpod.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/littleladybulldogs\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://thecirclelarp.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://byletam.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.nachonite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://designerdab.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2151.temp.domains/~lovebyt2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://shortporchbaseballcompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://distancecme.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://middleswarthchips.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://railblazausa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://mikescountrymeats.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://www.woodenshoe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://rockspringscafe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"http://footballfangears.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://ybtoner.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://simplyclayyy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://naturecreation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://marisrodriguez.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://asanteinternational.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://theatre55.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://carolynscreativeclassroom.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.miiriya.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://trendyds.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wooedbythefood.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://papasteamstores.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://omdurags.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://happydogbarkery.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://kitbose.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://seamossdeals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://zeatala.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://shop.atwaterffa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://www.brettsfirstresponders.org/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://shirtactive.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://boerneparade.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://zorahshrine.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://davidcervenka.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://addisjourney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://305ycle.cc\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"http://yourworstnightmarehaunt.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://westcoastpreps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://checkout.sohaking.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://www.theunshakeablepundit.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.stellaandchewys.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.raywhitcomb.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"http://constellationtheatercompany.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://stacynguyen.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:46:\"https://fundrgear.com/lakecreekgirlsbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://winslowartcenter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://flufftastik.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mygreenbeach.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://ebookvip.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/needvillevolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bifocalmedia.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://clrc.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://hyperpins.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/lakecreekboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://fundrgear.com/kparktennis\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mogadorspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://fundrgear.com/newcaneytrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://sigmascents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://bsharisemoore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://morrflate.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://westbrosinc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://shop.danceplexaz.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://chikepod.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.advanahealth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://tatter.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://greatawakeningbrewing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://waterfowlfestival.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://preppedwellness.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://events.thus.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://stormtide.thefifthtrooper.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.tabsynth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"http://staging.fliptheswitchon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://duffysdough.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodieliving.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://breakerbrotherstcg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://andymation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://recklessmetals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://sophielark.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://wp.arabtherapy.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://creativeappliques.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://altitude.win\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:42:\"woocommerce-wcpay-march-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:42:\"woocommerce-wcpay-march-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:57:\"Action required: Security update for WooCommerce Payments\";s:7:\"content\";s:296:\"<strong>Your store requires a security update for WooCommerce Payments</strong>. Please update to the latest version of WooCommerce Payments immediately to address a potential vulnerability discovered on March 22. For more information on how to update, visit this WooCommerce Developer Blog Post.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:49:\"woocommerce-wcpay-march-2023-update-needed-button\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"See Blog Post\";}}s:3:\"url\";s:122:\"https://developer.woocommerce.com/2023/03/23/critical-vulnerability-detected-in-woocommerce-payments-what-you-need-to-know\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:57:\"woocommerce-wcpay-march-2023-update-needed-dismiss-button\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:11:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-03-22 20:25:44\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.4\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.3\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.5.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"4.8.0\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"5.6.1\";}}}s:34:\"tap_to_pay_iphone_q2_2023_no_wcpay\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"tap_to_pay_iphone_q2_2023_no_wcpay\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:52:\"Accept in-person contactless payments on your iPhone\";s:7:\"content\";s:230:\"Tap to Pay on iPhone and WooCommerce Payments is quick, secure, and simple to set up — no extra terminals or card readers are needed. Accept contactless debit and credit cards, Apple Pay, and other NFC digital wallets in person.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"tap_to_pay_iphone_q2_2023_no_wcpay\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:20:\"Simplify my payments\";}}s:3:\"url\";s:143:\"https://woocommerce.com/products/woocommerce-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=tap_to_pay_iphone_q2_2023_no_wcpay\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-03 23:59:47\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}s:36:\"tap_to_pay_iphone_q2_2023_with_wcpay\";O:8:\"stdClass\":8:{s:4:\"slug\";s:36:\"tap_to_pay_iphone_q2_2023_with_wcpay\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:57:\"New: accept in-person contactless payments on your iPhone\";s:7:\"content\";s:250:\"Tap to Pay on iPhone is quick, secure, and simple to set up in WooCommerce Payments — no extra terminals or card readers are needed. Accept contactless debit and credit cards, Apple Pay, and other NFC digital wallets in person in a few short steps!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:36:\"tap_to_pay_iphone_q2_2023_with_wcpay\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Set up Tap to Pay on iPhone\";}}s:3:\"url\";s:234:\"https://woocommerce.com/document/woocommerce-payments/in-person-payments/woocommerce-in-person-payments-tap-to-pay-on-iphone-quick-start-guide/?utm_source=inbox_note&utm_medium=product&utm_campaign=tap_to_pay_iphone_q2_2023_with_wcpay\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-03 23:59:44\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}s:48:\"woocommerce-WCPreOrders-april-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-WCPreOrders-april-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:68:\"Action required: Security update of WooCommerce Pre-Orders extension\";s:7:\"content\";s:220:\"<strong>Your store requires a security update for the WooCommerce Pre-Orders extension</strong>. Please update the WooCommerce Pre-Orders extension immediately to address a potential vulnerability discovered on April 11.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"extension-settings\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:15:\"update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-12 22:16:37\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:22:\"woocommerce-pre-orders\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"2.0.0\";}}}s:46:\"woopay-beta-merchantrecruitment-update-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woopay-beta-merchantrecruitment-update-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:321:\"WooPay, a new express checkout feature built into WooCommerce Payments, is <b>now available</b> — and you’re invited to try it. \r\n<br /><br />\r\n<b>Boost conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\r\n<br /><br />\r\n<b>Update WooCommerce Payments</b> to get started.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:52:\"woopay-beta-merchantrecruitment-update-WCPay-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:55:\"woopay-beta-merchantrecruitment-update-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.handinhandparenting.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://pritikinfoods.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://utahrecsports.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.hunterpta.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.smokinbeans.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://shulabeauty.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bingeworthytvmerch.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://s91.4d8.myftpupload.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://stephanienicolenorris.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://aliensshirt.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://libertyordeathapparelllc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://cowboystatedaily.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:42:\"https://fundrgear.com/beckendorffathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:50:\"http://wordpress-528155-2231771.cloudwaysapps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://checkout.sohaprice.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://amadozstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://eliwehbe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://lunabra.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://nptixx.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://louisianapantry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://aplusanatomy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://wildsvg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://bleachfilm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://benabeautyspa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:47:\"http://barrettfitnessenterprises.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://goabroadable.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://alexoathletica.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.fourpurls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.hagmannreport.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://busybeeorganics.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nallsproduce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://bigtimebats.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://shop.cookingwithkarli.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.queenofpeacemedia.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://bigjohnsbeefjerky.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://paperbyjaney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://carolinarisemembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://veroticaevents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://spira.farm\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://endlessassist.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://betterlifeblog.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://ashleighrenard.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.turkeymerck.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://carfiershop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://normanmusicfestival.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://www.olfactoryfactoryllc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://fundrgear.com/anthonyathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"http://tkechilifestdotcom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://pvsa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://becbatop.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wwmeconvention.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://lswmp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bubbaskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://fusango.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://vcdpostershow.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.rileysribz.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.fakeultrasound.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://onelongfellowsquare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://agodpod.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/littleladybulldogs\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://thecirclelarp.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://byletam.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.nachonite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://designerdab.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2151.temp.domains/~lovebyt2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://shortporchbaseballcompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://distancecme.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://middleswarthchips.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://railblazausa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://mikescountrymeats.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://www.woodenshoe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://rockspringscafe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"http://footballfangears.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://ybtoner.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://simplyclayyy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://naturecreation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://marisrodriguez.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://asanteinternational.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://theatre55.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://carolynscreativeclassroom.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.miiriya.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://trendyds.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wooedbythefood.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://papasteamstores.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://omdurags.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://happydogbarkery.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://kitbose.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://seamossdeals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://zeatala.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://shop.atwaterffa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://www.brettsfirstresponders.org/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://shirtactive.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://boerneparade.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://zorahshrine.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://davidcervenka.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://addisjourney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://305ycle.cc\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"http://yourworstnightmarehaunt.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://westcoastpreps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://checkout.sohaking.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://www.theunshakeablepundit.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.stellaandchewys.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.raywhitcomb.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"http://constellationtheatercompany.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://stacynguyen.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:46:\"https://fundrgear.com/lakecreekgirlsbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://winslowartcenter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://flufftastik.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mygreenbeach.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://ebookvip.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/needvillevolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bifocalmedia.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://clrc.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://hyperpins.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/lakecreekboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://fundrgear.com/kparktennis\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mogadorspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://fundrgear.com/newcaneytrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://sigmascents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://bsharisemoore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://morrflate.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://westbrosinc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://shop.danceplexaz.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://chikepod.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.advanahealth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://tatter.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://greatawakeningbrewing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://waterfowlfestival.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://preppedwellness.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://events.thus.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://stormtide.thefifthtrooper.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.tabsynth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"http://staging.fliptheswitchon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://duffysdough.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodieliving.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://breakerbrotherstcg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://andymation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://recklessmetals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://sophielark.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://wp.arabtherapy.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://creativeappliques.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://altitude.win\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:46:\"woopay-beta-existingmerchants-noaction-27APR23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woopay-beta-existingmerchants-noaction-27APR23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:15:\"WooPay is back!\";s:7:\"content\";s:361:\"Thanks for previously trying WooPay, the<b> express checkout feature</b> built into WooCommerce Payments. We’re excited to announce that <b>WooPay availability has resumed</b>. No action is required on your part.\r\n<br /><br />\r\nYou can now <b>continue boosting conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-existingmerchants-noaction-documentation-27APR23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Documentation\";}}s:3:\"url\";s:178:\"https://woocommerce.com/document/woopay-merchant-documentation/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-existingmerchants-noaction-documentation-27APR23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-26 19:00:23\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.0\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:38:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://store.startingstrongman.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://joacreativelab.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.pureskincaresalon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mariablaquier.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://getprodigital.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://dalefrickeholsters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://sstour.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://tk-txstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://humanspiritproject.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://viradadrums.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://rosariumblends.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://organicskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://stuckpigmedical.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.seattlegiftbasket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.cloverandviolet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gvscholarship.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://yesimadiva.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://www.old.jmtrashbgone.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://victorialansford.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://craftcosplay.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://thefossilexchange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nextgenspeed.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cappellarecords.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://ontimesupermarket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://new2knox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://lovestudiollc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://socceruniformkits.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://willowcreativ.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://summitprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://howda.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://soapavenuecompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://subsbox.mystagingwebsite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wifflebreakers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.mps-outfitters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://howardharrisassociates.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bettersaferadio.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://bunnyluna.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:44:\"woopay-beta-existingmerchants-update-27APR23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:44:\"woopay-beta-existingmerchants-update-27APR23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:15:\"WooPay is back!\";s:7:\"content\";s:368:\"Thanks for previously trying WooPay, the <b>express checkout feature</b> built into WooCommerce Payments. We’re excited to announce that <b>WooPay availability has resumed</b>.\r\n<br /><br />\r\n\r\nUpdate to the latest WooCommerce Payments version to <b>continue boosting conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:50:\"woopay-beta-existingmerchants-update-WCPay-27APR23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-26 19:00:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.0\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:38:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://store.startingstrongman.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://joacreativelab.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.pureskincaresalon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mariablaquier.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://getprodigital.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://dalefrickeholsters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://sstour.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://tk-txstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://humanspiritproject.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://viradadrums.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://rosariumblends.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://organicskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://stuckpigmedical.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.seattlegiftbasket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.cloverandviolet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gvscholarship.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://yesimadiva.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://www.old.jmtrashbgone.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://victorialansford.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://craftcosplay.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://thefossilexchange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nextgenspeed.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cappellarecords.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://ontimesupermarket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://new2knox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://lovestudiollc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://socceruniformkits.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://willowcreativ.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://summitprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://howda.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://soapavenuecompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://subsbox.mystagingwebsite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wifflebreakers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.mps-outfitters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://howardharrisassociates.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bettersaferadio.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://bunnyluna.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:45:\"woopay-beta-merchantrecruitment-short-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woopay-beta-merchantrecruitment-short-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:54:\"woopay-beta-merchantrecruitment-short-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:64:\"woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:161:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:36\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://pieroatomic3.wpcomstaging.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.bluebeautifly.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://indianrivernatural.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://fouroaksproducts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:14:\"https://acb.la\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://www.sweetpotatoplant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://www.gocaseyourself.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://laugun.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://nebraskadaybyday.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://vintagemarche727.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://kohai.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://gracegaze.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://aliensmeaning.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://myheritagegardens.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://shopmoresport.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://oladino.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://frogjumpstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cagedthundermma.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/mcelwainelementary\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://mgco.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://500gp.io/pay\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://waterglassslimes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://antiqueful.shop/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://deeperkidmin.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/cyspringsboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://houseofminifigs.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2273.temp.domains/~dreambx2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://madebymixture.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://reliabletrash.company\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.daddybutter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://circleqessentials.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://garlicbraids.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://fbdonline.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://galaxysedge.us\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://duckduckbeetfarm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://varsitygraphics.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://jademackenzie.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://kristysketolifestyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://covid19criticalcare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://parkviewprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://rock-fest.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://fillinxsolutions.com/etarix/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://doughremitx.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.montanafiddlecamp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://fococomiccon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://patricendouglas.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://hectue.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://montanamaxbbq.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://smellzoom.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://uptowne.theoandson.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://superbasic.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ppodstore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://kerenzan.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://a13bargains.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://colorgr.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://mindbodysoulcandles.com/Charlotte\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://peaceloveandadhd.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://seymoursmash.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mwtournament.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:43:\"https://fundrgear.com/beckendorffgirlstrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://allswellnyc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://childoftheredwoodsmembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/grandoaksvolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.newhollandrochester.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.purplecatvet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"https://www.mustangmountaincoaster.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.roccanj.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.teerico.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://passportunlimited.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.paladincards20.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://giantshorties.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visualsports.biz\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://thefreakinricanrestaurant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://arequestionscom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://pt.tktxcompanystore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodiechicks.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://nutoshop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://backwoodzhiphop.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://gartapparel.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bodega.badiaspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://rampartrange.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://teeuni.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bearsinthealley.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://vitalbooks.net/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://hair-free-hair-remover.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gangtaynails.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://crochetfoundry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://westcoastbelts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://payment.sundryfiles.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://ccadunkirk.mudhenmama.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://desertsupercup.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://shops-eminem.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://75yearsofracing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://tixpls.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:44:\"http://legacyoutfitters.org/banquet/raffles/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://91170e9fc9.nxcli.io/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://beachwayrentals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://esd.camp\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mfkgamecalls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://1greatce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.luthyouth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://electionintegrityidaho.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://renbundle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://premierseamoss.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://teemart.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/beckendorffgirlsbb\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visiblechild.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ebookvital.me/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://renemarsh.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://www.eventricate.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://transgression.party\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://profadex.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://mxsbattlegrounds.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.poeinbaltimore.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://freefall.gg\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://underthechurchhatblog.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://naksparkle.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"http://bearlyburly.gay/inventory\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.premierboneandjoint.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://farm-2-bowl.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://hollandgrill.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://lividian.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.trainingrange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://sarakepskitchen.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.phoenixyouththeatre.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://drivenarmsco.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://audiobro.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://www.iowaabortionaccessfund.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://findthemenu.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://moderndepot.co\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://granitesupplements.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://healthyrican.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://utest.edsandbox.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://c-pounds.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://littleschoolofsmiths.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://goblinstyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://proper-testing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.cosafoundation.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://farmsteadboxes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://fundraise4books.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://norskenook.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://cajulove.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:52:\"woopay-beta-merchantrecruitment-short-update-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:52:\"woopay-beta-merchantrecruitment-short-update-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:227:\"Be one of the first to try WooPay, our new express checkout feature. <br><b>Boost conversions</b> by letting customers pay with a <b>single click</b>. <br><br>Update to the latest version of WooCommerce Payments to get started.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"woopay-beta-merchantrecruitment-short-update-WCPay-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:61:\"woopay-beta-merchantrecruitment-short-update-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:20\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.bluebeautifly.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://indianrivernatural.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://fouroaksproducts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:14:\"https://acb.la\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://www.sweetpotatoplant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://www.gocaseyourself.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://laugun.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://nebraskadaybyday.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://vintagemarche727.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://kohai.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://gracegaze.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://aliensmeaning.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://myheritagegardens.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://shopmoresport.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://oladino.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://frogjumpstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cagedthundermma.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/mcelwainelementary\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://mgco.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://500gp.io/pay\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://waterglassslimes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://antiqueful.shop/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://deeperkidmin.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/cyspringsboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://houseofminifigs.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2273.temp.domains/~dreambx2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://madebymixture.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://reliabletrash.company\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.daddybutter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://circleqessentials.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://garlicbraids.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://fbdonline.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://galaxysedge.us\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://duckduckbeetfarm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://varsitygraphics.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://jademackenzie.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://kristysketolifestyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://covid19criticalcare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://parkviewprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://rock-fest.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://fillinxsolutions.com/etarix/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://doughremitx.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.montanafiddlecamp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://fococomiccon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://patricendouglas.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://hectue.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://montanamaxbbq.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://smellzoom.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://uptowne.theoandson.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://superbasic.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ppodstore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://kerenzan.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://a13bargains.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://colorgr.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://mindbodysoulcandles.com/Charlotte\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://peaceloveandadhd.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://seymoursmash.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mwtournament.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:43:\"https://fundrgear.com/beckendorffgirlstrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://allswellnyc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://childoftheredwoodsmembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/grandoaksvolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.newhollandrochester.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.purplecatvet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"https://www.mustangmountaincoaster.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.roccanj.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.teerico.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://passportunlimited.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.paladincards20.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://giantshorties.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visualsports.biz\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://thefreakinricanrestaurant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://arequestionscom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://pt.tktxcompanystore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodiechicks.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://nutoshop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://backwoodzhiphop.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://gartapparel.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bodega.badiaspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://rampartrange.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://teeuni.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bearsinthealley.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://vitalbooks.net/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://hair-free-hair-remover.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gangtaynails.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://crochetfoundry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://westcoastbelts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://payment.sundryfiles.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://ccadunkirk.mudhenmama.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://desertsupercup.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://shops-eminem.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://75yearsofracing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://tixpls.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:44:\"http://legacyoutfitters.org/banquet/raffles/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://91170e9fc9.nxcli.io/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://beachwayrentals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://esd.camp\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mfkgamecalls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://1greatce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.luthyouth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://electionintegrityidaho.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://renbundle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://premierseamoss.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://teemart.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/beckendorffgirlsbb\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visiblechild.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ebookvital.me/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://renemarsh.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://www.eventricate.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://transgression.party\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://profadex.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://mxsbattlegrounds.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.poeinbaltimore.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://freefall.gg\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://underthechurchhatblog.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://naksparkle.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"http://bearlyburly.gay/inventory\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.premierboneandjoint.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://farm-2-bowl.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://hollandgrill.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://lividian.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.trainingrange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://sarakepskitchen.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.phoenixyouththeatre.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://drivenarmsco.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://audiobro.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://www.iowaabortionaccessfund.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://findthemenu.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://moderndepot.co\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://granitesupplements.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://healthyrican.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://utest.edsandbox.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://c-pounds.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://littleschoolofsmiths.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://goblinstyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://proper-testing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.cosafoundation.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://farmsteadboxes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://fundraise4books.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://norskenook.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://cajulove.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTA\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTA\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTA\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test A\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:167:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 00:01:32\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTB\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTB\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTB\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test B\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:167:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 20:58:43\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTC\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTC\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTC\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test C\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:167:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 21:03:33\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://pieroatomic3.wpcomstaging.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTD\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTD\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTD\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test D\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:167:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 21:32:09\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://pieroatomic3.wpcomstaging.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:45:\"woopay-beta-merchantrecruitment-short-09MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woopay-beta-merchantrecruitment-short-09MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:61:\"woopay-beta-merchantrecruitment-short-activate-button-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:72:\"woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:169:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-08 19:18:44\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:17:\"platform_checkout\";}}}s:11:\"option_name\";s:41:\"woocommerce_woocommerce_payments_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"no\";s:7:\"default\";b:0;}i:3;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:31:\"data.platform_checkout_eligible\";}}}s:11:\"option_name\";s:18:\"wcpay_account_data\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;s:7:\"default\";b:0;}}}s:52:\"woopay-beta-merchantrecruitment-short-update-09MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:52:\"woopay-beta-merchantrecruitment-short-update-09MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:227:\"Be one of the first to try WooPay, our new express checkout feature. <br><b>Boost conversions</b> by letting customers pay with a <b>single click</b>. <br><br>Update to the latest version of WooCommerce Payments to get started.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"woopay-beta-merchantrecruitment-short-update-WCPay-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:61:\"woopay-beta-merchantrecruitment-short-update-activate-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-08 19:45:57\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:17:\"platform_checkout\";}}}s:11:\"option_name\";s:41:\"woocommerce_woocommerce_payments_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"no\";s:7:\"default\";b:0;}i:3;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:31:\"data.platform_checkout_eligible\";}}}s:11:\"option_name\";s:18:\"wcpay_account_data\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;s:7:\"default\";b:0;}}}s:41:\"ipp_refresh_q2_2023_us_inbox_notification\";O:8:\"stdClass\":8:{s:4:\"slug\";s:41:\"ipp_refresh_q2_2023_us_inbox_notification\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:38:\"Grow on the go with in-person payments\";s:7:\"content\";s:247:\"Sell your products or services on the go with the M2 card reader – a quick, synchronized, and secure way to take payments, no matter where you are. Create an order using the WooCommerce mobile app and connect your card reader to accept payments.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:41:\"ipp_refresh_q2_2023_us_inbox_notification\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:26:\"Grow my business on the go\";}}s:3:\"url\";s:139:\"https://woocommerce.com/in-person-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=ipp_refresh_q2_2023_us_inbox_notification\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-18 04:16:26\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-08-31 23:59:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}s:41:\"ipp_refresh_q2_2023_ca_inbox_notification\";O:8:\"stdClass\":8:{s:4:\"slug\";s:41:\"ipp_refresh_q2_2023_ca_inbox_notification\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:38:\"Grow on the go with in-person payments\";s:7:\"content\";s:254:\"Sell your products or services on the go with the WisePad 3 card reader – a quick, synchronized, and secure way to take payments, no matter where you are. Create an order using the WooCommerce mobile app and connect your card reader to accept payments.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:41:\"ipp_refresh_q2_2023_ca_inbox_notification\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:26:\"Grow my business on the go\";}}s:3:\"url\";s:139:\"https://woocommerce.com/in-person-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=ipp_refresh_q2_2023_ca_inbox_notification\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-18 04:18:49\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-08-31 23:59:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"CA\";}}}s:44:\"woocommerce-WCstripe-May-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:44:\"woocommerce-WCstripe-May-2023-updated-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Action required: Security update of WooCommerce Stripe plugin\";s:7:\"content\";s:183:\"<strong>Your store requires a security update for the WooCommerce Stripe plugin</strong>. Please update the WooCommerce Stripe plugin immediately to address a potential vulnerability.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woocommerce-WCStripe-May-2023-updated-needed-Plugin-Settings\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:68:\"woocommerce-WCStripe-May-2023-updated-needed-Plugin-Settings-dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-31 19:54:10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.0\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"7.4.1\";}}}s:47:\"woocommerce-WCPayments-June-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-WCPayments-June-2023-updated-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:56:\"Action required: Security update of WooCommerce Payments\";s:7:\"content\";s:187:\"<strong>Your store requires a security update for the WooCommerce Payments plugin</strong>. Please update the WooCommerce Payments plugin immediately to address a potential vulnerability.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:63:\"woocommerce-WCPayments-June-2023-updated-needed-Plugin-Settings\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:55:\"woocommerce-WCPayments-June-2023-updated-needed-Dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:20:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-06 08:00:52\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"3.2.0\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.3\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.3\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.2\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.4\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.5.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.6.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.7.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.8.2\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.9.1\";}}}s:52:\"woocommerce-WCSubscriptions-June-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:52:\"woocommerce-WCSubscriptions-June-2023-updated-needed\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Action required: Security update of WooCommerce Subscriptions\";s:7:\"content\";s:197:\"<strong>Your store requires a security update for the WooCommerce Subscriptions plugin</strong>. Please update the WooCommerce Subscriptions plugin immediately to address a potential vulnerability.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:68:\"woocommerce-WCSubscriptions-June-2023-updated-needed-Plugin-Settings\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woocommerce-WCSubscriptions-June-2023-updated-needed-dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-06 08:00:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"2.1.0\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"5.1.2\";}}}s:54:\"woocommerce-WCReturnsWarranty-June-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:54:\"woocommerce-WCReturnsWarranty-June-2023-updated-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:87:\"Action required: Security update of WooCommerce Returns and Warranty Requests extension\";s:7:\"content\";s:270:\"<strong>Your store requires a security update for the Returns and Warranty Requests extension</strong>.  Please update to the latest version of the WooCommerce Returns and Warranty Requests extension immediately to address a potential vulnerability discovered on May 31.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:54:\"woocommerce-WCReturnsWarranty-June-2023-updated-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:54:\"woocommerce-WCReturnsWarranty-June-2023-updated-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-02 23:53:57\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-warranty\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"2.1.8\";}}}s:41:\"woocommerce_hpos_1st_notification_q2_2023\";O:8:\"stdClass\":8:{s:4:\"slug\";s:41:\"woocommerce_hpos_1st_notification_q2_2023\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:51:\"High-Performance Order Storage (HPOS) is on its way\";s:7:\"content\";s:310:\"Our team is targeting August 2023 to roll out a major database upgrade that can unlock faster checkout and order creation for your customers — and lightning-quick order lookup for you. Enablement is optional and you won’t be forced to update, but read on to see why this was our most requested new feature.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:41:\"woocommerce_hpos_1st_notification_q2_2023\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Learn more about HPOS\";}}s:3:\"url\";s:189:\"https://woocommerce.com/posts/platform-update-high-performance-order-storage-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=woocommerce_hpos_1st_notification_q2_2023\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-06 22:14:44\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-07-28 23:59:00\";}}}s:42:\"woocommerce-WCOPC-June-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:42:\"woocommerce-WCOPC-June-2023-updated-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:65:\"Action required: Security update of WooCommerce One Page Checkout\";s:7:\"content\";s:232:\"<strong>Your shop requires a security update to address a vulnerability in the WooCommerce One Page Checkout extension</strong>. The fix for this vulnerability was released for this extension on June 13th. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:42:\"woocommerce-WCOPC-June-2023-updated-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:42:\"woocommerce-WCOPC-June-2023-updated-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-21 14:05:46\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:29:\"woocommerce-one-page-checkout\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"2.4.0\";}}}s:40:\"woocommerce-WCGC-July-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:40:\"woocommerce-WCGC-July-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:68:\"Action required: Security update of WooCommerce GoCardless Extension\";s:7:\"content\";s:205:\"<strong>Your shop requires a security update to address a vulnerability in the WooCommerce GoCardless extension</strong>. The fix for this vulnerability was released on July 4th. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:40:\"woocommerce-WCGC-July-2023-update-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:40:\"woocommerce-WCGC-July-2023-update-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-07-04 15:36:07\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:30:\"woocommerce-gateway-gocardless\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"2.5.6\";}}}s:31:\"wc-admin-wcpay-bulgaria-Q2-2023\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"wc-admin-wcpay-bulgaria-Q2-2023\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:50:\"WooCommerce Payments is now available in Bulgaria!\";s:7:\"content\";s:216:\"We’ve recently released WooCommerce Payments in Bulgaria. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:31:\"wc-admin-wcpay-bulgaria-Q2-2023\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:20:\"Simplify my payments\";}}s:3:\"url\";s:128:\"https://woocommerce.com/payments/bulgaria/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-bulgaria-Q2-2023\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-29 16:32:12\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-08-15 23:59:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"BG\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}}}s:30:\"wc-admin-wcpay-czechia-Q2-2023\";O:8:\"stdClass\":8:{s:4:\"slug\";s:30:\"wc-admin-wcpay-czechia-Q2-2023\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:49:\"WooCommerce Payments is now available in Czechia!\";s:7:\"content\";s:215:\"We’ve recently released WooCommerce Payments in Czechia. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"wc-admin-wcpay-czechia-Q2-2023\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:20:\"Simplify my payments\";}}s:3:\"url\";s:126:\"https://woocommerce.com/payments/czechia/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-czechia-Q2-2023\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-29 16:37:42\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-08-15 23:59:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"CZ\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}}}s:30:\"wc-admin-wcpay-croatia-Q2-2023\";O:8:\"stdClass\":8:{s:4:\"slug\";s:30:\"wc-admin-wcpay-croatia-Q2-2023\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:49:\"WooCommerce Payments is now available in Croatia!\";s:7:\"content\";s:215:\"We’ve recently released WooCommerce Payments in Croatia. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"wc-admin-wcpay-croatia-Q2-2023\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:20:\"Simplify my payments\";}}s:3:\"url\";s:126:\"https://woocommerce.com/payments/croatia/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-croatia-Q2-2023\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-29 16:43:08\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-08-15 23:59:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"HR\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}}}s:30:\"wc-admin-wcpay-hungary-Q2-2023\";O:8:\"stdClass\":8:{s:4:\"slug\";s:30:\"wc-admin-wcpay-hungary-Q2-2023\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:49:\"WooCommerce Payments is now available in Hungary!\";s:7:\"content\";s:215:\"We’ve recently released WooCommerce Payments in Hungary. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"wc-admin-wcpay-hungary-Q2-2023\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:20:\"Simplify my payments\";}}s:3:\"url\";s:126:\"https://woocommerce.com/payments/hungary/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-hungary-Q2-2023\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-29 16:50:53\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-08-15 23:59:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"HU\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}}}s:30:\"wc-admin-wcpay-romania-Q2-2023\";O:8:\"stdClass\":8:{s:4:\"slug\";s:30:\"wc-admin-wcpay-romania-Q2-2023\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:49:\"WooCommerce Payments is now available in Romania!\";s:7:\"content\";s:215:\"We’ve recently released WooCommerce Payments in Romania. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"wc-admin-wcpay-romania-Q2-2023\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:20:\"Simplify my payments\";}}s:3:\"url\";s:126:\"https://woocommerce.com/payments/romania/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-romania-Q2-2023\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-29 16:55:13\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-08-15 23:59:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"RO\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}}}s:29:\"wc-admin-wcpay-sweden-Q2-2023\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"wc-admin-wcpay-sweden-Q2-2023\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:48:\"WooCommerce Payments is now available in Sweden!\";s:7:\"content\";s:214:\"We’ve recently released WooCommerce Payments in Sweden. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:29:\"wc-admin-wcpay-sweden-Q2-2023\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:20:\"Simplify my payments\";}}s:3:\"url\";s:124:\"https://woocommerce.com/payments/sweden/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-sweden-Q2-2023\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-29 16:08:15\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-08-15 23:59:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"SE\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}}}s:48:\"woocommerce-shipping-fedex-api-outage-2023-07-16\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-shipping-fedex-api-outage-2023-07-16\";s:4:\"type\";s:7:\"warning\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:40:\"Scheduled FedEx API outage — July 2023\";s:7:\"content\";s:277:\"On July 16 there will be a full outage of the FedEx API from 04:00 to 08:00 AM UTC. Due to planned maintenance by FedEx, you\'ll be unable to provide FedEx shipping rates during this time. Follow the link below for more information and recommendations on how to minimize impact.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:125:\"https://woocommerce.com/document/fedex/?utm_medium=product&utm_source=inbox_note&utm_campaign=learn-more#july-2023-api-outage\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-07-05 18:19:17\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-shipping-fedex\";}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-07-17 00:00:00\";}}}}s:5:\"sv_SE\";a:59:{s:21:\"wayflyer_bnpl_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:21:\"wayflyer_bnpl_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:48:\"Grow your business with funding through Wayflyer\";s:7:\"content\";s:261:\"Fast, flexible financing to boost cash flow and help your business grow – one fee, no interest rates, penalties, equity, or personal guarantees. Based on your store’s performance, Wayflyer provides funding and analytical insights to invest in your business.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"wayflyer_bnpl_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Level up with funding\";}}s:3:\"url\";s:110:\"https://woo.com/products/wayflyer/?utm_source=inbox_note&utm_medium=product&utm_campaign=wayflyer_bnpl_q4_2021\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-17 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-12-18 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:7:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"AU\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"BE\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"CA\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"IE\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"NL\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"GB\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-affirm\";}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:32:\"afterpay-gateway-for-woocommerce\";}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:31:\"klarna-payments-for-woocommerce\";}}}}}}s:35:\"wc_shipping_mobile_app_usps_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:94:\"Print and manage your shipping labels with WooCommerce Shipping and the WooCommerce Mobile App\";s:7:\"content\";s:202:\"Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woo.com/woocommerce-shipping/\">WooCommerce Shipping</a> – all directly from your mobile device!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Get WooCommerce Shipping\";}}s:3:\"url\";s:127:\"https://woo.com/woocommerce-shipping/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_shipping_mobile_app_usps_q4_2021\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-12 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-11-27 00:00:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:25:\"woocommerce-shipping-usps\";}}i:4;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}}}s:20:\"woocommerce-services\";O:8:\"stdClass\":8:{s:4:\"slug\";s:20:\"woocommerce-services\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:26:\"WooCommerce Shipping & Tax\";s:7:\"content\";s:251:\"WooCommerce Shipping & Tax helps get your store \"ready to sell\" as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:84:\"https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:17:25\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:2;}}}s:18:\"your-first-product\";O:8:\"stdClass\":8:{s:4:\"slug\";s:18:\"your-first-product\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:18:\"Your first product\";s:7:\"content\";s:459:\"That’s huge! You’re well on your way to building a successful online store — now it’s time to think about how you’ll fulfill your orders.<br/><br/>Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with <a href=\"https://href.li/?https://woo.com/shipping\" target=\"_blank\">WooCommerce Shipping</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:122:\"https://woo.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:19:13\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_were_no_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_are_now_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:2:\">=\";s:5:\"value\";i:1;}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:13:\"product_types\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"physical\";s:7:\"default\";a:0:{}}}}s:37:\"wc-admin-optimizing-the-checkout-flow\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"wc-admin-optimizing-the-checkout-flow\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:28:\"Optimizing the checkout flow\";s:7:\"content\";s:177:\"It’s crucial to get your store’s checkout as smooth as possible to avoid losing sales. Let’s take a look at how you can optimize the checkout experience for your shoppers.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"optimizing-the-checkout-flow\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:136:\"https://woo.com/posts/optimizing-woocommerce-checkout?utm_source=inbox_note&utm_medium=product&utm_campaign=optimizing-the-checkout-flow\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:19:49\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"payments\";s:7:\"default\";a:0:{}}}}s:32:\"wc-payments-qualitative-feedback\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"wc-payments-qualitative-feedback\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"WooCommerce Payments setup - let us know what you think\";s:7:\"content\";s:146:\"Congrats on enabling WooCommerce Payments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"qualitative-feedback-from-new-users\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:39:\"https://automattic.survey.fm/wc-pay-new\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:21:13\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:20:\"woocommerce-payments\";s:7:\"default\";a:0:{}}}}s:29:\"share-your-feedback-on-paypal\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"share-your-feedback-on-paypal\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:29:\"Share your feedback on PayPal\";s:7:\"content\";s:127:\"Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:43:\"http://automattic.survey.fm/paypal-feedback\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:21:50\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-stripe\";}}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}}}s:31:\"google_listings_and_ads_install\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"google_listings_and_ads_install\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Drive traffic and sales with Google\";s:7:\"content\";s:123:\"Reach online shoppers to drive traffic and sales for your store by showcasing products across Google, for free or with ads.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"get-started\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:11:\"Get started\";}}s:3:\"url\";s:114:\"https://woo.com/products/google-listings-and-ads?utm_source=inbox_note&utm_medium=product&utm_campaign=get-started\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-06-09 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:23:\"google_listings_and_ads\";}}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:10;}}}s:39:\"wc-subscriptions-security-update-3-0-15\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"wc-subscriptions-security-update-3-0-15\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:42:\"WooCommerce Subscriptions security update!\";s:7:\"content\";s:722:\"We recently released an important security update to WooCommerce Subscriptions. To ensure your site’s data is protected, please upgrade <strong>WooCommerce Subscriptions to version 3.0.15</strong> or later.<br/><br/>Click the button below to view and update to the latest Subscriptions version, or log in to <a href=\"https://woo.com/my-dashboard\">WooCommerce.com Dashboard</a> and navigate to your <strong>Downloads</strong> page.<br/><br/>We recommend always using the latest version of WooCommerce Subscriptions, and other software running on your site, to ensure maximum security.<br/><br/>If you have any questions we are here to help — just <a href=\"https://woo.com/my-account/create-a-ticket/\">open a ticket</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"update-wc-subscriptions-3-0-15\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"View latest version\";}}s:3:\"url\";s:30:\"&page=wc-addons&section=helper\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:30:32\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:6:\"3.0.15\";}}}s:29:\"woocommerce-core-update-5-4-0\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"woocommerce-core-update-5-4-0\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Update to WooCommerce 5.4.1 now\";s:7:\"content\";s:140:\"WooCommerce 5.4.1 addresses a checkout issue discovered in WooCommerce 5.4. We recommend upgrading to WooCommerce 5.4.1 as soon as possible.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"update-wc-core-5-4-0\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:25:\"How to update WooCommerce\";}}s:3:\"url\";s:64:\"https://docs.woocommerce.com/document/how-to-update-woocommerce/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:31:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.0\";}}}s:19:\"wcpay-promo-2020-11\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"wcpay-promo-2020-11\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-11\";s:7:\"content\";s:19:\"wcpay-promo-2020-11\";}}s:7:\"actions\";a:0:{}s:5:\"rules\";a:0:{}}s:19:\"wcpay-promo-2020-12\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"wcpay-promo-2020-12\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-12\";s:7:\"content\";s:19:\"wcpay-promo-2020-12\";}}s:7:\"actions\";a:0:{}s:5:\"rules\";a:0:{}}s:34:\"ppxo-pps-upgrade-paypal-payments-1\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-1\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:47:\"Get the latest PayPal extension for WooCommerce\";s:7:\"content\";s:434:\"Heads up! There’s a new PayPal on the block!<br/><br/>Now is a great time to upgrade to our latest <a href=\"https://woo.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension</a> to continue to receive support and updates with PayPal.<br/><br/>Get access to a full suite of PayPal payment methods, extensive currency and country coverage, and pay later options with the all-new PayPal extension for WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-1\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:33:53\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;}}}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:7;s:7:\"default\";i:1;s:9:\"operation\";s:1:\"<\";}}}s:34:\"ppxo-pps-upgrade-paypal-payments-2\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-2\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Upgrade your PayPal experience!\";s:7:\"content\";s:350:\"Get access to a full suite of PayPal payment methods, extensive currency and country coverage, offer subscription and recurring payments, and the new PayPal pay later options.<br /><br />Start using our <a href=\"https://woo.com/products/woocommerce-paypal-payments/\" target=\"_blank\">latest PayPal today</a> to continue to receive support and updates.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-2\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:34:30\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;}}}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:6;s:7:\"default\";i:1;s:9:\"operation\";s:1:\">\";}}}s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:56:\"Action required: Critical vulnerabilities in WooCommerce\";s:7:\"content\";s:574:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:129:\"https://woo.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:59:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:35:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.6\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.8\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.5.9\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.6\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.2\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.3\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.4\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.4\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.5\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.2\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.3\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.4\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.3\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.2\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.3\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.4\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.2\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.2\";}i:32;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.3\";}i:33;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.4\";}i:34;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.1\";}i:35;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:36;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.2\";}i:37;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.3\";}i:38;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.5.1\";}i:39;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"3.5.10\";}i:40;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.7\";}i:41;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.3\";}i:42;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.3\";}i:43;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.5\";}i:44;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.4\";}i:45;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.4\";}i:46;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.5\";}i:47;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.6\";}i:48;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.4\";}i:49;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.5\";}i:50;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.5\";}i:51;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.4\";}i:52;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.3\";}i:53;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.5\";}i:54;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.3\";}i:55;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.3\";}i:56;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.5\";}i:57;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.3\";}i:58;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.4\";}}}s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"Action required: Critical vulnerabilities in WooCommerce Blocks\";s:7:\"content\";s:570:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/>Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br/><br/>For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:129:\"https://woo.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:32:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:35:42\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"2.5.16\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.6.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.7.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.8.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.9.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.0.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.1.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.2.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.5.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.1\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.2\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.1\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.3\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.2\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.1\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.1\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.5.1\";}}}s:45:\"woocommerce-core-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woocommerce-core-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"Solved: Critical vulnerabilities patched in WooCommerce\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:129:\"https://woo.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:36:18\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:23:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.6\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.8\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.9\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.6\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.2\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.4\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.2\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.1\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.1\";}}}}}s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:62:\"Solved: Critical vulnerabilities patched in WooCommerce Blocks\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:129:\"https://woo.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:36:54\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:31:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"2.5.16\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.6.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.7.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.8.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.9.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.0.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.1.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.2.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.1\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.1\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.2\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.2\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.1\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.1\";}}}}}s:19:\"habit-moment-survey\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"habit-moment-survey\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"We’re all ears! Share your experience so far with WooCommerce\";s:7:\"content\";s:136:\"We’d love your input to shape the future of WooCommerce together. Feel free to share any feedback, ideas or suggestions that you have.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:45:\"https://automattic.survey.fm/store-management\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:37:30\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:30;}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:0;}}}s:42:\"woocommerce-core-paypal-march-2022-updated\";O:8:\"stdClass\":8:{s:4:\"slug\";s:42:\"woocommerce-core-paypal-march-2022-updated\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Security auto-update of WooCommerce\";s:7:\"content\";s:383:\"<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy PayPal Standard security updates for stores running WooCommerce (version 3.5 to 6.3). It’s recommended to disable PayPal Standard, and use <a href=\"https://woo.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal Payments</a> to accept PayPal.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:88:\"https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:42:\"woocommerce-core-paypal-march-2022-dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-10 18:44:57\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:28:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.5.10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.7\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.3\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.5\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.4\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.5\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.6\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.5\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.5\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.5\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.2.2\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:3:\"5.5\";}i:1;a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}}}}}}}s:47:\"woocommerce-core-paypal-march-2022-updated-nopp\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-core-paypal-march-2022-updated-nopp\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Security auto-update of WooCommerce\";s:7:\"content\";s:237:\"<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy security updates related to PayPal Standard payment gateway for stores running WooCommerce (version 3.5 to 6.3).\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:88:\"https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-10 18:45:04\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:28:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.5.10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.7\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.3\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.5\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.4\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.5\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.6\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.5\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.5\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.5\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.2.2\";}}}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:42:\"woocommerce-core-paypal-march-2022-updated\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}s:24:\"pinterest_03_2022_update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:24:\"pinterest_03_2022_update\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:53:\"Your Pinterest for WooCommerce plugin is out of date!\";s:7:\"content\";s:262:\"Update to the latest version of Pinterest for WooCommerce to continue using this plugin and keep your store connected with Pinterest. To update, visit <strong>Plugins &gt; Installed Plugins</strong>, and click on “update now” under Pinterest for WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"pinterest_03_2022_update\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"Update Instructions\";}}s:3:\"url\";s:140:\"https://woo.com/document/pinterest-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=pinterest_03_2022_update#section-3\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-23 00:00:39\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"pinterest-for-woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"1.0.8\";}}}s:33:\"store_setup_survey_survey_q2_2022\";O:8:\"stdClass\":8:{s:4:\"slug\";s:33:\"store_setup_survey_survey_q2_2022\";s:4:\"type\";s:6:\"survey\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:30:\"How is your store setup going?\";s:7:\"content\";s:232:\"Our goal is to make sure you have all the right tools to start setting up your store in the smoothest way possible.\r\nWe’d love to know if we hit our mark and how we can improve. To collect your thoughts, we made a 2-minute survey.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:53:\"store_setup_survey_survey_q2_2022_share_your_thoughts\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Tell us how it’s going\";}}s:3:\"url\";s:52:\"https://automattic.survey.fm/store-setup-survey-2022\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-05-09 08:42:10\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:7;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:9;}}}s:47:\"woocommerce-payments-august-2022-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-payments-august-2022-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:51:\"Action required: Please update WooCommerce Payments\";s:7:\"content\";s:213:\"An updated secure version of WooCommerce Payments is available – please ensure that you’re using the latest patch version. For more information on what action you need to take, please review the article below.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Find out more\";}}s:3:\"url\";s:96:\"https://developer.woocommerce.com/2022/08/09/woocommerce-payments-3-9-4-4-5-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:9:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-08-09 14:44:17\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"3.9\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"4.5.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.4\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.3\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.1\";}}}s:46:\"woocommerce-payments-august-2022-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-payments-august-2022-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:51:\"WooCommerce Payments has been automatically updated\";s:7:\"content\";s:265:\"You’re now running the latest secure version of WooCommerce Payments. We’ve worked with the WordPress Plugins team to deploy a security update to stores running WooCommerce Payments (version 3.9 to 4.5). For further information, please review the article below.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Find out more\";}}s:3:\"url\";s:96:\"https://developer.woocommerce.com/2022/08/09/woocommerce-payments-3-9-4-4-5-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-08-09 14:41:13\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:47:\"woocommerce-payments-august-2022-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:7:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.4\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.3\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.1\";}}}}}s:48:\"needs-update-eway-payment-gateway-rin-2022-12-20\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"needs-update-eway-payment-gateway-rin-2022-12-20\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:58:\"Security vulnerability patched in WooCommerce Eway Gateway\";s:7:\"content\";s:323:\"In response to a potential vulnerability identified in WooCommerce Eway Gateway versions 3.1.0 to 3.5.0, we’ve worked to deploy security fixes and have released an updated version.\r\nNo external exploits have been detected, but we recommend you update to your latest supported version 3.1.26, 3.2.3, 3.3.1, 3.4.6, or 3.5.1\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:62:\"needs-update-eway-payment-gateway-rin-action-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:16:\"/update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:63:\"needs-update-eway-payment-gateway-rin-dismiss-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:7:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-03 23:45:53\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"3.1.26\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.2.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.6\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"3.5.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"3.1.0\";}}}s:43:\"updated-eway-payment-gateway-rin-2022-12-20\";O:8:\"stdClass\":8:{s:4:\"slug\";s:43:\"updated-eway-payment-gateway-rin-2022-12-20\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"WooCommerce Eway Gateway has been automatically updated\";s:7:\"content\";s:280:\"Your store is now running the latest secure version of WooCommerce Eway Gateway. We worked with the WordPress Plugins team to deploy a software update to stores running WooCommerce Eway Gateway (versions 3.1.0 to 3.5.0) in response to a security vulnerability that was discovered.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:57:\"updated-eway-payment-gateway-rin-action-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"See all updates\";}}s:3:\"url\";s:16:\"/update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"updated-eway-payment-gateway-rin-dismiss-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-03 23:45:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"needs-update-eway-payment-gateway-rin-2022-12-20\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:5:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.1.26\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.2.3\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.6\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.1\";}}}}}s:31:\"ecomm-wc-navigation-survey-2023\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"ecomm-wc-navigation-survey-2023\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:39:\"Navigating WooCommerce on WordPress.com\";s:7:\"content\";s:166:\"We are improving the WooCommerce navigation on WordPress.com and would love your help to make it better! Please share your experience with us in this 2-minute survey.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:32:\"share-navigation-survey-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:58:\"https://automattic.survey.fm/new-ecommerce-plan-navigation\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-01-16 09:53:44\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:12:\"is_ecommerce\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:180;}}}s:39:\"woopay-beta-merchantrecruitment-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"woopay-beta-merchantrecruitment-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:319:\"WooPay, a new express checkout feature built into WooCommerce Payments, is <b>now available</b> —and we’re inviting you to be one of the first to try it. \r\n<br><br>\r\n<b>Boost conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\r\n<br><br>\r\n<b>Get started in seconds.</b>\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:48:\"woopay-beta-merchantrecruitment-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"woopay-beta-merchantrecruitment-activate-learnmore-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:147:\"https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-activate-learnmore-04MAY23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:27\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.handinhandparenting.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://pritikinfoods.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://utahrecsports.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.hunterpta.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.smokinbeans.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://shulabeauty.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bingeworthytvmerch.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://s91.4d8.myftpupload.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://stephanienicolenorris.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://aliensshirt.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://libertyordeathapparelllc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://cowboystatedaily.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:42:\"https://fundrgear.com/beckendorffathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:50:\"http://wordpress-528155-2231771.cloudwaysapps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://checkout.sohaprice.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://amadozstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://eliwehbe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://lunabra.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://nptixx.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://louisianapantry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://aplusanatomy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://wildsvg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://bleachfilm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://benabeautyspa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:47:\"http://barrettfitnessenterprises.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://goabroadable.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://alexoathletica.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.fourpurls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.hagmannreport.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://busybeeorganics.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nallsproduce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://bigtimebats.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://shop.cookingwithkarli.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.queenofpeacemedia.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://bigjohnsbeefjerky.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://paperbyjaney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://carolinarisemembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://veroticaevents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://spira.farm\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://endlessassist.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://betterlifeblog.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://ashleighrenard.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.turkeymerck.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://carfiershop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://normanmusicfestival.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://www.olfactoryfactoryllc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://fundrgear.com/anthonyathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"http://tkechilifestdotcom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://pvsa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://becbatop.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wwmeconvention.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://lswmp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bubbaskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://fusango.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://vcdpostershow.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.rileysribz.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.fakeultrasound.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://onelongfellowsquare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://agodpod.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/littleladybulldogs\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://thecirclelarp.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://byletam.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.nachonite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://designerdab.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2151.temp.domains/~lovebyt2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://shortporchbaseballcompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://distancecme.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://middleswarthchips.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://railblazausa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://mikescountrymeats.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://www.woodenshoe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://rockspringscafe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"http://footballfangears.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://ybtoner.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://simplyclayyy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://naturecreation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://marisrodriguez.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://asanteinternational.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://theatre55.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://carolynscreativeclassroom.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.miiriya.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://trendyds.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wooedbythefood.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://papasteamstores.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://omdurags.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://happydogbarkery.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://kitbose.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://seamossdeals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://zeatala.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://shop.atwaterffa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://www.brettsfirstresponders.org/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://shirtactive.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://boerneparade.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://zorahshrine.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://davidcervenka.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://addisjourney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://305ycle.cc\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"http://yourworstnightmarehaunt.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://westcoastpreps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://checkout.sohaking.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://www.theunshakeablepundit.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.stellaandchewys.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.raywhitcomb.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"http://constellationtheatercompany.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://stacynguyen.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:46:\"https://fundrgear.com/lakecreekgirlsbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://winslowartcenter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://flufftastik.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mygreenbeach.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://ebookvip.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/needvillevolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bifocalmedia.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://clrc.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://hyperpins.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/lakecreekboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://fundrgear.com/kparktennis\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mogadorspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://fundrgear.com/newcaneytrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://sigmascents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://bsharisemoore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://morrflate.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://westbrosinc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://shop.danceplexaz.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://chikepod.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.advanahealth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://tatter.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://greatawakeningbrewing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://waterfowlfestival.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://preppedwellness.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://events.thus.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://stormtide.thefifthtrooper.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.tabsynth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"http://staging.fliptheswitchon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://duffysdough.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodieliving.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://breakerbrotherstcg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://andymation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://recklessmetals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://sophielark.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://wp.arabtherapy.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://creativeappliques.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://altitude.win\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:42:\"woocommerce-wcpay-march-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:42:\"woocommerce-wcpay-march-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:57:\"Action required: Security update for WooCommerce Payments\";s:7:\"content\";s:296:\"<strong>Your store requires a security update for WooCommerce Payments</strong>. Please update to the latest version of WooCommerce Payments immediately to address a potential vulnerability discovered on March 22. For more information on how to update, visit this WooCommerce Developer Blog Post.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:49:\"woocommerce-wcpay-march-2023-update-needed-button\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"See Blog Post\";}}s:3:\"url\";s:122:\"https://developer.woocommerce.com/2023/03/23/critical-vulnerability-detected-in-woocommerce-payments-what-you-need-to-know\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:57:\"woocommerce-wcpay-march-2023-update-needed-dismiss-button\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:11:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-03-22 20:25:44\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.4\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.3\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.5.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"4.8.0\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"5.6.1\";}}}s:34:\"tap_to_pay_iphone_q2_2023_no_wcpay\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"tap_to_pay_iphone_q2_2023_no_wcpay\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:52:\"Accept in-person contactless payments on your iPhone\";s:7:\"content\";s:230:\"Tap to Pay on iPhone and WooCommerce Payments is quick, secure, and simple to set up — no extra terminals or card readers are needed. Accept contactless debit and credit cards, Apple Pay, and other NFC digital wallets in person.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"tap_to_pay_iphone_q2_2023_no_wcpay\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:20:\"Simplify my payments\";}}s:3:\"url\";s:135:\"https://woo.com/products/woocommerce-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=tap_to_pay_iphone_q2_2023_no_wcpay\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-03 23:59:47\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}s:48:\"woocommerce-WCPreOrders-april-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-WCPreOrders-april-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:68:\"Action required: Security update of WooCommerce Pre-Orders extension\";s:7:\"content\";s:220:\"<strong>Your store requires a security update for the WooCommerce Pre-Orders extension</strong>. Please update the WooCommerce Pre-Orders extension immediately to address a potential vulnerability discovered on April 11.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"extension-settings\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:15:\"update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-12 22:16:37\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:22:\"woocommerce-pre-orders\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"2.0.0\";}}}s:46:\"woopay-beta-merchantrecruitment-update-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woopay-beta-merchantrecruitment-update-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:321:\"WooPay, a new express checkout feature built into WooCommerce Payments, is <b>now available</b> — and you’re invited to try it. \r\n<br /><br />\r\n<b>Boost conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\r\n<br /><br />\r\n<b>Update WooCommerce Payments</b> to get started.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:52:\"woopay-beta-merchantrecruitment-update-WCPay-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:55:\"woopay-beta-merchantrecruitment-update-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.handinhandparenting.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://pritikinfoods.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://utahrecsports.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.hunterpta.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.smokinbeans.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://shulabeauty.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bingeworthytvmerch.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://s91.4d8.myftpupload.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://stephanienicolenorris.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://aliensshirt.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://libertyordeathapparelllc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://cowboystatedaily.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:42:\"https://fundrgear.com/beckendorffathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:50:\"http://wordpress-528155-2231771.cloudwaysapps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://checkout.sohaprice.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://amadozstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://eliwehbe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://lunabra.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://nptixx.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://louisianapantry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://aplusanatomy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://wildsvg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://bleachfilm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://benabeautyspa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:47:\"http://barrettfitnessenterprises.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://goabroadable.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://alexoathletica.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.fourpurls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.hagmannreport.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://busybeeorganics.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nallsproduce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://bigtimebats.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://shop.cookingwithkarli.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.queenofpeacemedia.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://bigjohnsbeefjerky.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://paperbyjaney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://carolinarisemembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://veroticaevents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://spira.farm\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://endlessassist.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://betterlifeblog.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://ashleighrenard.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.turkeymerck.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://carfiershop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://normanmusicfestival.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://www.olfactoryfactoryllc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://fundrgear.com/anthonyathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"http://tkechilifestdotcom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://pvsa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://becbatop.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wwmeconvention.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://lswmp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bubbaskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://fusango.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://vcdpostershow.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.rileysribz.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.fakeultrasound.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://onelongfellowsquare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://agodpod.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/littleladybulldogs\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://thecirclelarp.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://byletam.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.nachonite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://designerdab.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2151.temp.domains/~lovebyt2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://shortporchbaseballcompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://distancecme.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://middleswarthchips.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://railblazausa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://mikescountrymeats.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://www.woodenshoe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://rockspringscafe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"http://footballfangears.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://ybtoner.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://simplyclayyy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://naturecreation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://marisrodriguez.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://asanteinternational.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://theatre55.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://carolynscreativeclassroom.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.miiriya.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://trendyds.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wooedbythefood.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://papasteamstores.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://omdurags.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://happydogbarkery.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://kitbose.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://seamossdeals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://zeatala.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://shop.atwaterffa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://www.brettsfirstresponders.org/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://shirtactive.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://boerneparade.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://zorahshrine.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://davidcervenka.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://addisjourney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://305ycle.cc\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"http://yourworstnightmarehaunt.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://westcoastpreps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://checkout.sohaking.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://www.theunshakeablepundit.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.stellaandchewys.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.raywhitcomb.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"http://constellationtheatercompany.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://stacynguyen.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:46:\"https://fundrgear.com/lakecreekgirlsbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://winslowartcenter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://flufftastik.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mygreenbeach.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://ebookvip.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/needvillevolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bifocalmedia.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://clrc.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://hyperpins.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/lakecreekboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://fundrgear.com/kparktennis\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mogadorspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://fundrgear.com/newcaneytrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://sigmascents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://bsharisemoore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://morrflate.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://westbrosinc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://shop.danceplexaz.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://chikepod.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.advanahealth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://tatter.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://greatawakeningbrewing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://waterfowlfestival.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://preppedwellness.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://events.thus.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://stormtide.thefifthtrooper.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.tabsynth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"http://staging.fliptheswitchon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://duffysdough.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodieliving.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://breakerbrotherstcg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://andymation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://recklessmetals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://sophielark.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://wp.arabtherapy.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://creativeappliques.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://altitude.win\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:46:\"woopay-beta-existingmerchants-noaction-27APR23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woopay-beta-existingmerchants-noaction-27APR23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:15:\"WooPay is back!\";s:7:\"content\";s:361:\"Thanks for previously trying WooPay, the<b> express checkout feature</b> built into WooCommerce Payments. We’re excited to announce that <b>WooPay availability has resumed</b>. No action is required on your part.\r\n<br /><br />\r\nYou can now <b>continue boosting conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-existingmerchants-noaction-documentation-27APR23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Documentation\";}}s:3:\"url\";s:170:\"https://woo.com/document/woopay-merchant-documentation/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-existingmerchants-noaction-documentation-27APR23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-26 19:00:23\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.0\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:38:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://store.startingstrongman.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://joacreativelab.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.pureskincaresalon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mariablaquier.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://getprodigital.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://dalefrickeholsters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://sstour.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://tk-txstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://humanspiritproject.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://viradadrums.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://rosariumblends.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://organicskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://stuckpigmedical.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.seattlegiftbasket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.cloverandviolet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gvscholarship.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://yesimadiva.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://www.old.jmtrashbgone.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://victorialansford.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://craftcosplay.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://thefossilexchange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nextgenspeed.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cappellarecords.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://ontimesupermarket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://new2knox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://lovestudiollc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://socceruniformkits.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://willowcreativ.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://summitprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://howda.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://soapavenuecompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://subsbox.mystagingwebsite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wifflebreakers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.mps-outfitters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://howardharrisassociates.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bettersaferadio.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://bunnyluna.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:44:\"woopay-beta-existingmerchants-update-27APR23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:44:\"woopay-beta-existingmerchants-update-27APR23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:15:\"WooPay is back!\";s:7:\"content\";s:368:\"Thanks for previously trying WooPay, the <b>express checkout feature</b> built into WooCommerce Payments. We’re excited to announce that <b>WooPay availability has resumed</b>.\r\n<br /><br />\r\n\r\nUpdate to the latest WooCommerce Payments version to <b>continue boosting conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:50:\"woopay-beta-existingmerchants-update-WCPay-27APR23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-26 19:00:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.0\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:38:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://store.startingstrongman.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://joacreativelab.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.pureskincaresalon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mariablaquier.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://getprodigital.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://dalefrickeholsters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://sstour.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://tk-txstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://humanspiritproject.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://viradadrums.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://rosariumblends.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://organicskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://stuckpigmedical.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.seattlegiftbasket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.cloverandviolet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gvscholarship.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://yesimadiva.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://www.old.jmtrashbgone.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://victorialansford.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://craftcosplay.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://thefossilexchange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nextgenspeed.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cappellarecords.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://ontimesupermarket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://new2knox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://lovestudiollc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://socceruniformkits.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://willowcreativ.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://summitprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://howda.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://soapavenuecompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://subsbox.mystagingwebsite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wifflebreakers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.mps-outfitters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://howardharrisassociates.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bettersaferadio.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://bunnyluna.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:45:\"woopay-beta-merchantrecruitment-short-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woopay-beta-merchantrecruitment-short-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:54:\"woopay-beta-merchantrecruitment-short-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:64:\"woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:153:\"https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:36\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://pieroatomic3.wpcomstaging.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.bluebeautifly.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://indianrivernatural.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://fouroaksproducts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:14:\"https://acb.la\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://www.sweetpotatoplant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://www.gocaseyourself.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://laugun.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://nebraskadaybyday.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://vintagemarche727.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://kohai.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://gracegaze.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://aliensmeaning.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://myheritagegardens.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://shopmoresport.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://oladino.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://frogjumpstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cagedthundermma.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/mcelwainelementary\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://mgco.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://500gp.io/pay\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://waterglassslimes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://antiqueful.shop/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://deeperkidmin.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/cyspringsboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://houseofminifigs.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2273.temp.domains/~dreambx2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://madebymixture.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://reliabletrash.company\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.daddybutter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://circleqessentials.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://garlicbraids.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://fbdonline.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://galaxysedge.us\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://duckduckbeetfarm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://varsitygraphics.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://jademackenzie.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://kristysketolifestyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://covid19criticalcare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://parkviewprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://rock-fest.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://fillinxsolutions.com/etarix/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://doughremitx.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.montanafiddlecamp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://fococomiccon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://patricendouglas.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://hectue.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://montanamaxbbq.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://smellzoom.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://uptowne.theoandson.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://superbasic.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ppodstore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://kerenzan.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://a13bargains.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://colorgr.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://mindbodysoulcandles.com/Charlotte\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://peaceloveandadhd.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://seymoursmash.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mwtournament.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:43:\"https://fundrgear.com/beckendorffgirlstrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://allswellnyc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://childoftheredwoodsmembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/grandoaksvolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.newhollandrochester.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.purplecatvet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"https://www.mustangmountaincoaster.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.roccanj.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.teerico.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://passportunlimited.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.paladincards20.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://giantshorties.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visualsports.biz\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://thefreakinricanrestaurant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://arequestionscom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://pt.tktxcompanystore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodiechicks.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://nutoshop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://backwoodzhiphop.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://gartapparel.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bodega.badiaspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://rampartrange.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://teeuni.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bearsinthealley.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://vitalbooks.net/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://hair-free-hair-remover.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gangtaynails.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://crochetfoundry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://westcoastbelts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://payment.sundryfiles.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://ccadunkirk.mudhenmama.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://desertsupercup.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://shops-eminem.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://75yearsofracing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://tixpls.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:44:\"http://legacyoutfitters.org/banquet/raffles/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://91170e9fc9.nxcli.io/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://beachwayrentals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://esd.camp\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mfkgamecalls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://1greatce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.luthyouth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://electionintegrityidaho.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://renbundle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://premierseamoss.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://teemart.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/beckendorffgirlsbb\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visiblechild.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ebookvital.me/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://renemarsh.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://www.eventricate.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://transgression.party\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://profadex.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://mxsbattlegrounds.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.poeinbaltimore.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://freefall.gg\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://underthechurchhatblog.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://naksparkle.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"http://bearlyburly.gay/inventory\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.premierboneandjoint.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://farm-2-bowl.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://hollandgrill.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://lividian.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.trainingrange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://sarakepskitchen.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.phoenixyouththeatre.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://drivenarmsco.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://audiobro.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://www.iowaabortionaccessfund.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://findthemenu.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://moderndepot.co\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://granitesupplements.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://healthyrican.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://utest.edsandbox.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://c-pounds.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://littleschoolofsmiths.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://goblinstyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://proper-testing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.cosafoundation.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://farmsteadboxes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://fundraise4books.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://norskenook.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://cajulove.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:52:\"woopay-beta-merchantrecruitment-short-update-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:52:\"woopay-beta-merchantrecruitment-short-update-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:227:\"Be one of the first to try WooPay, our new express checkout feature. <br><b>Boost conversions</b> by letting customers pay with a <b>single click</b>. <br><br>Update to the latest version of WooCommerce Payments to get started.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"woopay-beta-merchantrecruitment-short-update-WCPay-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:61:\"woopay-beta-merchantrecruitment-short-update-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:20\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.bluebeautifly.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://indianrivernatural.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://fouroaksproducts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:14:\"https://acb.la\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://www.sweetpotatoplant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://www.gocaseyourself.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://laugun.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://nebraskadaybyday.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://vintagemarche727.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://kohai.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://gracegaze.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://aliensmeaning.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://myheritagegardens.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://shopmoresport.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://oladino.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://frogjumpstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cagedthundermma.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/mcelwainelementary\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://mgco.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://500gp.io/pay\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://waterglassslimes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://antiqueful.shop/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://deeperkidmin.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/cyspringsboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://houseofminifigs.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2273.temp.domains/~dreambx2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://madebymixture.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://reliabletrash.company\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.daddybutter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://circleqessentials.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://garlicbraids.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://fbdonline.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://galaxysedge.us\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://duckduckbeetfarm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://varsitygraphics.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://jademackenzie.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://kristysketolifestyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://covid19criticalcare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://parkviewprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://rock-fest.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://fillinxsolutions.com/etarix/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://doughremitx.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.montanafiddlecamp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://fococomiccon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://patricendouglas.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://hectue.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://montanamaxbbq.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://smellzoom.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://uptowne.theoandson.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://superbasic.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ppodstore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://kerenzan.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://a13bargains.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://colorgr.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://mindbodysoulcandles.com/Charlotte\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://peaceloveandadhd.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://seymoursmash.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mwtournament.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:43:\"https://fundrgear.com/beckendorffgirlstrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://allswellnyc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://childoftheredwoodsmembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/grandoaksvolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.newhollandrochester.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.purplecatvet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"https://www.mustangmountaincoaster.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.roccanj.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.teerico.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://passportunlimited.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.paladincards20.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://giantshorties.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visualsports.biz\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://thefreakinricanrestaurant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://arequestionscom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://pt.tktxcompanystore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodiechicks.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://nutoshop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://backwoodzhiphop.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://gartapparel.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bodega.badiaspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://rampartrange.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://teeuni.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bearsinthealley.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://vitalbooks.net/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://hair-free-hair-remover.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gangtaynails.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://crochetfoundry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://westcoastbelts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://payment.sundryfiles.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://ccadunkirk.mudhenmama.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://desertsupercup.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://shops-eminem.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://75yearsofracing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://tixpls.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:44:\"http://legacyoutfitters.org/banquet/raffles/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://91170e9fc9.nxcli.io/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://beachwayrentals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://esd.camp\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mfkgamecalls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://1greatce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.luthyouth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://electionintegrityidaho.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://renbundle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://premierseamoss.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://teemart.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/beckendorffgirlsbb\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visiblechild.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ebookvital.me/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://renemarsh.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://www.eventricate.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://transgression.party\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://profadex.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://mxsbattlegrounds.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.poeinbaltimore.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://freefall.gg\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://underthechurchhatblog.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://naksparkle.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"http://bearlyburly.gay/inventory\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.premierboneandjoint.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://farm-2-bowl.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://hollandgrill.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://lividian.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.trainingrange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://sarakepskitchen.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.phoenixyouththeatre.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://drivenarmsco.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://audiobro.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://www.iowaabortionaccessfund.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://findthemenu.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://moderndepot.co\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://granitesupplements.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://healthyrican.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://utest.edsandbox.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://c-pounds.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://littleschoolofsmiths.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://goblinstyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://proper-testing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.cosafoundation.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://farmsteadboxes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://fundraise4books.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://norskenook.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://cajulove.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTA\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTA\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTA\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test A\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:159:\"https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 00:01:32\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTB\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTB\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTB\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test B\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:159:\"https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 20:58:43\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTC\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTC\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTC\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test C\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:159:\"https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 21:03:33\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://pieroatomic3.wpcomstaging.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTD\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTD\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTD\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test D\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:159:\"https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 21:32:09\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://pieroatomic3.wpcomstaging.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:45:\"woopay-beta-merchantrecruitment-short-09MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woopay-beta-merchantrecruitment-short-09MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:61:\"woopay-beta-merchantrecruitment-short-activate-button-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:72:\"woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:161:\"https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-08 19:18:44\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:17:\"platform_checkout\";}}}s:11:\"option_name\";s:41:\"woocommerce_woocommerce_payments_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"no\";s:7:\"default\";b:0;}i:3;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:31:\"data.platform_checkout_eligible\";}}}s:11:\"option_name\";s:18:\"wcpay_account_data\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;s:7:\"default\";b:0;}}}s:52:\"woopay-beta-merchantrecruitment-short-update-09MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:52:\"woopay-beta-merchantrecruitment-short-update-09MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:227:\"Be one of the first to try WooPay, our new express checkout feature. <br><b>Boost conversions</b> by letting customers pay with a <b>single click</b>. <br><br>Update to the latest version of WooCommerce Payments to get started.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"woopay-beta-merchantrecruitment-short-update-WCPay-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:61:\"woopay-beta-merchantrecruitment-short-update-activate-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-08 19:45:57\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:17:\"platform_checkout\";}}}s:11:\"option_name\";s:41:\"woocommerce_woocommerce_payments_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"no\";s:7:\"default\";b:0;}i:3;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:31:\"data.platform_checkout_eligible\";}}}s:11:\"option_name\";s:18:\"wcpay_account_data\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;s:7:\"default\";b:0;}}}s:44:\"woocommerce-WCstripe-May-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:44:\"woocommerce-WCstripe-May-2023-updated-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Action required: Security update of WooCommerce Stripe plugin\";s:7:\"content\";s:183:\"<strong>Your store requires a security update for the WooCommerce Stripe plugin</strong>. Please update the WooCommerce Stripe plugin immediately to address a potential vulnerability.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woocommerce-WCStripe-May-2023-updated-needed-Plugin-Settings\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:68:\"woocommerce-WCStripe-May-2023-updated-needed-Plugin-Settings-dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-31 19:54:10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.0\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"7.4.1\";}}}s:47:\"woocommerce-WCPayments-June-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-WCPayments-June-2023-updated-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:56:\"Action required: Security update of WooCommerce Payments\";s:7:\"content\";s:187:\"<strong>Your store requires a security update for the WooCommerce Payments plugin</strong>. Please update the WooCommerce Payments plugin immediately to address a potential vulnerability.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:63:\"woocommerce-WCPayments-June-2023-updated-needed-Plugin-Settings\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:55:\"woocommerce-WCPayments-June-2023-updated-needed-Dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:20:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-06 08:00:52\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"3.2.0\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.3\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.3\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.2\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.4\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.5.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.6.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.7.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.8.2\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.9.1\";}}}s:52:\"woocommerce-WCSubscriptions-June-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:52:\"woocommerce-WCSubscriptions-June-2023-updated-needed\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Action required: Security update of WooCommerce Subscriptions\";s:7:\"content\";s:197:\"<strong>Your store requires a security update for the WooCommerce Subscriptions plugin</strong>. Please update the WooCommerce Subscriptions plugin immediately to address a potential vulnerability.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:68:\"woocommerce-WCSubscriptions-June-2023-updated-needed-Plugin-Settings\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woocommerce-WCSubscriptions-June-2023-updated-needed-dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-06 08:00:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"2.1.0\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"5.1.2\";}}}s:54:\"woocommerce-WCReturnsWarranty-June-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:54:\"woocommerce-WCReturnsWarranty-June-2023-updated-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:87:\"Action required: Security update of WooCommerce Returns and Warranty Requests extension\";s:7:\"content\";s:270:\"<strong>Your store requires a security update for the Returns and Warranty Requests extension</strong>.  Please update to the latest version of the WooCommerce Returns and Warranty Requests extension immediately to address a potential vulnerability discovered on May 31.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:54:\"woocommerce-WCReturnsWarranty-June-2023-updated-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:54:\"woocommerce-WCReturnsWarranty-June-2023-updated-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-02 23:53:57\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-warranty\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"2.1.8\";}}}s:42:\"woocommerce-WCOPC-June-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:42:\"woocommerce-WCOPC-June-2023-updated-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:65:\"Action required: Security update of WooCommerce One Page Checkout\";s:7:\"content\";s:232:\"<strong>Your shop requires a security update to address a vulnerability in the WooCommerce One Page Checkout extension</strong>. The fix for this vulnerability was released for this extension on June 13th. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:42:\"woocommerce-WCOPC-June-2023-updated-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:42:\"woocommerce-WCOPC-June-2023-updated-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-21 14:05:46\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:29:\"woocommerce-one-page-checkout\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"2.4.0\";}}}s:40:\"woocommerce-WCGC-July-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:40:\"woocommerce-WCGC-July-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:68:\"Action required: Security update of WooCommerce GoCardless Extension\";s:7:\"content\";s:205:\"<strong>Your shop requires a security update to address a vulnerability in the WooCommerce GoCardless extension</strong>. The fix for this vulnerability was released on July 4th. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:40:\"woocommerce-WCGC-July-2023-update-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:40:\"woocommerce-WCGC-July-2023-update-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-07-04 15:36:07\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:30:\"woocommerce-gateway-gocardless\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"2.5.6\";}}}s:48:\"woocommerce-shipping-fedex-api-outage-2023-07-16\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-shipping-fedex-api-outage-2023-07-16\";s:4:\"type\";s:7:\"warning\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:40:\"Scheduled FedEx API outage — July 2023\";s:7:\"content\";s:277:\"On July 16 there will be a full outage of the FedEx API from 04:00 to 08:00 AM UTC. Due to planned maintenance by FedEx, you\'ll be unable to provide FedEx shipping rates during this time. Follow the link below for more information and recommendations on how to minimize impact.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:117:\"https://woo.com/document/fedex/?utm_medium=product&utm_source=inbox_note&utm_campaign=learn-more#july-2023-api-outage\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-07-05 18:19:17\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-shipping-fedex\";}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-07-17 00:00:00\";}}}s:35:\"wcship-2023-07-hazmat-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:35:\"wcship-2023-07-hazmat-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:87:\"Action required: USPS HAZMAT compliance update for WooCommerce Shipping & Tax extension\";s:7:\"content\";s:251:\"<strong>Your store requires an update for the WooCommerce Shipping extension</strong>. Please update to the latest version of the WooCommerce Shipping &amp; Tax extension immediately to ensure compliance with new USPS HAZMAT rules currently in effect.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"plugin-list\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:23:\"admin.php?page=wc-admin\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-07-11 20:26:59\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-services\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"2.3.0\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}s:43:\"woocommerce-WCStripe-Aug-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:43:\"woocommerce-WCStripe-Aug-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:62:\"Action required: Security update for WooCommerce Stripe plugin\";s:7:\"content\";s:183:\"<strong>Your shop requires an important security update for the  WooCommerce Stripe plugin</strong>. The fix for this vulnerability was released on July 31. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:43:\"woocommerce-WCStripe-Aug-2023-update-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:16:\"update-core.php?\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-03 05:00:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.6\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"7.4.2\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:11:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.3.2\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.4.5\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.5.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.6.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.9.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.0.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.1.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.2.2\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.3.2\";}}}}}}}s:46:\"woocommerce-WCStripe-Aug-2023-security-updated\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-WCStripe-Aug-2023-security-updated\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:44:\"Security update of WooCommerce Stripe plugin\";s:7:\"content\";s:144:\"<strong>Your store has been updated to the latest secure version of the WooCommerce Stripe plugin</strong>. This update was released on July 31.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-03 05:00:07\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:11:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.3.2\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.4.5\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.5.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.6.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.9.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.0.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.1.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.2.2\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.3.2\";}}}}}s:46:\"woocommerce-WooPayments-Aug-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-WooPayments-Aug-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:78:\"Action required: Security update for WooPayments (WooCommerce Payments) plugin\";s:7:\"content\";s:201:\"<strong>Your shop requires an important security update for the WooPayments (WooCommerce Payments) extension</strong>. The fix for this vulnerability was released on July 31. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:46:\"woocommerce-WooPayments-Aug-2023-update-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:16:\"update-core.php?\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-03 05:00:10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"2.8.0\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"6.2.1\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:17:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.4\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.3\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.6\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.5\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.4\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}}}}}}}s:49:\"woocommerce-WooPayments-Aug-2023-security-updated\";O:8:\"stdClass\":8:{s:4:\"slug\";s:49:\"woocommerce-WooPayments-Aug-2023-security-updated\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:60:\"Security update of WooPayments (WooCommerce Payments) plugin\";s:7:\"content\";s:147:\"<strong>Your store has been updated to the more secure version of WooPayments (WooCommerce Payments)</strong>. This update was released on July 31.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-03 05:00:13\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:17:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.4\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.3\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.6\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.5\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.4\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}}}}}s:24:\"avalara_q3-2023_noAvaTax\";O:8:\"stdClass\":8:{s:4:\"slug\";s:24:\"avalara_q3-2023_noAvaTax\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:40:\"Automatically calculate VAT in real time\";s:7:\"content\";s:284:\"Take the effort out of determining tax rates and sell confidently across borders with automated tax management from Avalara AvaTax— including built-in VAT calculation when you sell into or across the EU and UK. Save time and stay compliant when you let Avalara do the heavy lifting.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"avalara_q3-2023_noAvaTax\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Automate my sales tax\";}}s:3:\"url\";s:123:\"https://woo.com/products/woocommerce-avatax/?utm_source=inbox_note&utm_medium=product&utm_campaign=avalara_q3-2023_noAvaTax\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-08 22:32:23\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-08-09 23:59:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:18:\"woocommerce-avatax\";}}}}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:30;}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:20:\"total_payments_value\";s:9:\"timeframe\";s:9:\"last_year\";s:5:\"value\";i:100;s:9:\"operation\";s:1:\">\";}}}s:38:\"woo-activation-survey-blockers-22AUG23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:38:\"woo-activation-survey-blockers-22AUG23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:40:\"How can we help you get that first sale?\";s:7:\"content\";s:211:\"Your feedback is vital. Please take a minute to share your experience of setting up your new store and whether anything is preventing you from making those first few sales. Together, we can make Woo even better!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:52:\"woo-activation-survey-blockers-survey-button-22AUG23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Take our short survey\";}}s:3:\"url\";s:54:\"https://woocommerce.survey.fm/getting-started-with-woo\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-22 15:54:58\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:2:\"<=\";s:4:\"days\";i:30;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:1;}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";i:0;}}}s:44:\"woocommerce-usermeta-Sept2023-productvendors\";O:8:\"stdClass\":8:{s:4:\"slug\";s:44:\"woocommerce-usermeta-Sept2023-productvendors\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:37:\"Your store requires a security update\";s:7:\"content\";s:339:\"<strong>Your shop needs an update to address a vulnerability in WooCommerce.</strong> The fix was released on Sept 15. Please update WooCommerce to the latest version immediately. <a href=\"https://developer.woocommerce.com/2023/09/16/woocommerce-vulnerability-reintroduced-from-7-0-1/\" />Read our developer update</a> for more information.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:44:\"woocommerce-usermeta-Sept2023-productvendors\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:11:\"plugins.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-09-20 00:50:07\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-product-vendors\";}}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"8.1.1\";}}}s:41:\"woocommerce-STRIPE-Oct-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:41:\"woocommerce-STRIPE-Oct-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"Action required: Security update for WooCommerce Stripe Gateway\";s:7:\"content\";s:201:\"<strong>Your shop requires a security update to address a vulnerability in the WooCommerce Stripe Gateway</strong>. The fix for this vulnerability was released on October 17. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:41:\"woocommerce-STRIPE-Oct-2023-update-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:15:\"update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:36:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-10-18 00:01:58\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"4.5.4\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.6\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.2\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.5.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.6.4\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.7.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.8.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.9.2\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.0.2\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.1.2\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.2.2\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.3.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.4.6\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.5.4\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.6.3\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.5.4\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.6.3\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.7.3\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.8.3\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.9.3\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"7.0.5\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"7.1.3\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"7.2.3\";}i:32;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"7.3.3\";}i:33;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"7.4.3\";}i:34;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"7.5.1\";}i:35;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"7.6.1\";}}}}s:5:\"nl_NL\";a:61:{s:21:\"wayflyer_bnpl_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:21:\"wayflyer_bnpl_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:48:\"Grow your business with funding through Wayflyer\";s:7:\"content\";s:261:\"Fast, flexible financing to boost cash flow and help your business grow – one fee, no interest rates, penalties, equity, or personal guarantees. Based on your store’s performance, Wayflyer provides funding and analytical insights to invest in your business.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"wayflyer_bnpl_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Level up with funding\";}}s:3:\"url\";s:110:\"https://woo.com/products/wayflyer/?utm_source=inbox_note&utm_medium=product&utm_campaign=wayflyer_bnpl_q4_2021\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-17 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-12-18 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:7:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"AU\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"BE\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"CA\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"IE\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"NL\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"GB\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-affirm\";}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:32:\"afterpay-gateway-for-woocommerce\";}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:31:\"klarna-payments-for-woocommerce\";}}}}}}s:35:\"wc_shipping_mobile_app_usps_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:94:\"Print and manage your shipping labels with WooCommerce Shipping and the WooCommerce Mobile App\";s:7:\"content\";s:202:\"Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woo.com/woocommerce-shipping/\">WooCommerce Shipping</a> – all directly from your mobile device!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Get WooCommerce Shipping\";}}s:3:\"url\";s:127:\"https://woo.com/woocommerce-shipping/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_shipping_mobile_app_usps_q4_2021\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-12 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-11-27 00:00:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:25:\"woocommerce-shipping-usps\";}}i:4;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}}}s:20:\"woocommerce-services\";O:8:\"stdClass\":8:{s:4:\"slug\";s:20:\"woocommerce-services\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:26:\"WooCommerce Shipping & Tax\";s:7:\"content\";s:251:\"WooCommerce Shipping & Tax helps get your store \"ready to sell\" as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:84:\"https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:17:25\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:2;}}}s:18:\"your-first-product\";O:8:\"stdClass\":8:{s:4:\"slug\";s:18:\"your-first-product\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:18:\"Your first product\";s:7:\"content\";s:459:\"That’s huge! You’re well on your way to building a successful online store — now it’s time to think about how you’ll fulfill your orders.<br/><br/>Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with <a href=\"https://href.li/?https://woo.com/shipping\" target=\"_blank\">WooCommerce Shipping</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:122:\"https://woo.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:19:13\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_were_no_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_are_now_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:2:\">=\";s:5:\"value\";i:1;}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:13:\"product_types\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"physical\";s:7:\"default\";a:0:{}}}}s:37:\"wc-admin-optimizing-the-checkout-flow\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"wc-admin-optimizing-the-checkout-flow\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:28:\"Optimizing the checkout flow\";s:7:\"content\";s:177:\"It’s crucial to get your store’s checkout as smooth as possible to avoid losing sales. Let’s take a look at how you can optimize the checkout experience for your shoppers.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"optimizing-the-checkout-flow\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:136:\"https://woo.com/posts/optimizing-woocommerce-checkout?utm_source=inbox_note&utm_medium=product&utm_campaign=optimizing-the-checkout-flow\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:19:49\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"payments\";s:7:\"default\";a:0:{}}}}s:32:\"wc-payments-qualitative-feedback\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"wc-payments-qualitative-feedback\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"WooCommerce Payments setup - let us know what you think\";s:7:\"content\";s:146:\"Congrats on enabling WooCommerce Payments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"qualitative-feedback-from-new-users\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:39:\"https://automattic.survey.fm/wc-pay-new\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:21:13\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:20:\"woocommerce-payments\";s:7:\"default\";a:0:{}}}}s:29:\"share-your-feedback-on-paypal\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"share-your-feedback-on-paypal\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:29:\"Share your feedback on PayPal\";s:7:\"content\";s:127:\"Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:43:\"http://automattic.survey.fm/paypal-feedback\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:21:50\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-stripe\";}}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}}}s:31:\"google_listings_and_ads_install\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"google_listings_and_ads_install\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Drive traffic and sales with Google\";s:7:\"content\";s:123:\"Reach online shoppers to drive traffic and sales for your store by showcasing products across Google, for free or with ads.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"get-started\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:11:\"Get started\";}}s:3:\"url\";s:114:\"https://woo.com/products/google-listings-and-ads?utm_source=inbox_note&utm_medium=product&utm_campaign=get-started\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-06-09 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:23:\"google_listings_and_ads\";}}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:10;}}}s:39:\"wc-subscriptions-security-update-3-0-15\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"wc-subscriptions-security-update-3-0-15\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:42:\"WooCommerce Subscriptions security update!\";s:7:\"content\";s:722:\"We recently released an important security update to WooCommerce Subscriptions. To ensure your site’s data is protected, please upgrade <strong>WooCommerce Subscriptions to version 3.0.15</strong> or later.<br/><br/>Click the button below to view and update to the latest Subscriptions version, or log in to <a href=\"https://woo.com/my-dashboard\">WooCommerce.com Dashboard</a> and navigate to your <strong>Downloads</strong> page.<br/><br/>We recommend always using the latest version of WooCommerce Subscriptions, and other software running on your site, to ensure maximum security.<br/><br/>If you have any questions we are here to help — just <a href=\"https://woo.com/my-account/create-a-ticket/\">open a ticket</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"update-wc-subscriptions-3-0-15\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"View latest version\";}}s:3:\"url\";s:30:\"&page=wc-addons&section=helper\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:30:32\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:6:\"3.0.15\";}}}s:29:\"woocommerce-core-update-5-4-0\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"woocommerce-core-update-5-4-0\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Update to WooCommerce 5.4.1 now\";s:7:\"content\";s:140:\"WooCommerce 5.4.1 addresses a checkout issue discovered in WooCommerce 5.4. We recommend upgrading to WooCommerce 5.4.1 as soon as possible.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"update-wc-core-5-4-0\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:25:\"How to update WooCommerce\";}}s:3:\"url\";s:64:\"https://docs.woocommerce.com/document/how-to-update-woocommerce/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:31:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.0\";}}}s:19:\"wcpay-promo-2020-11\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"wcpay-promo-2020-11\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-11\";s:7:\"content\";s:19:\"wcpay-promo-2020-11\";}}s:7:\"actions\";a:0:{}s:5:\"rules\";a:0:{}}s:19:\"wcpay-promo-2020-12\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"wcpay-promo-2020-12\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-12\";s:7:\"content\";s:19:\"wcpay-promo-2020-12\";}}s:7:\"actions\";a:0:{}s:5:\"rules\";a:0:{}}s:34:\"ppxo-pps-upgrade-paypal-payments-1\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-1\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:47:\"Get the latest PayPal extension for WooCommerce\";s:7:\"content\";s:434:\"Heads up! There’s a new PayPal on the block!<br/><br/>Now is a great time to upgrade to our latest <a href=\"https://woo.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension</a> to continue to receive support and updates with PayPal.<br/><br/>Get access to a full suite of PayPal payment methods, extensive currency and country coverage, and pay later options with the all-new PayPal extension for WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-1\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:33:53\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;}}}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:7;s:7:\"default\";i:1;s:9:\"operation\";s:1:\"<\";}}}s:34:\"ppxo-pps-upgrade-paypal-payments-2\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-2\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Upgrade your PayPal experience!\";s:7:\"content\";s:350:\"Get access to a full suite of PayPal payment methods, extensive currency and country coverage, offer subscription and recurring payments, and the new PayPal pay later options.<br /><br />Start using our <a href=\"https://woo.com/products/woocommerce-paypal-payments/\" target=\"_blank\">latest PayPal today</a> to continue to receive support and updates.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-2\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:34:30\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;}}}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:6;s:7:\"default\";i:1;s:9:\"operation\";s:1:\">\";}}}s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:56:\"Action required: Critical vulnerabilities in WooCommerce\";s:7:\"content\";s:574:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:129:\"https://woo.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:59:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:35:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.6\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.8\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.5.9\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.6\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.2\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.3\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.4\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.4\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.5\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.2\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.3\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.4\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.3\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.2\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.3\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.4\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.2\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.2\";}i:32;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.3\";}i:33;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.4\";}i:34;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.1\";}i:35;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:36;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.2\";}i:37;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.3\";}i:38;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.5.1\";}i:39;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"3.5.10\";}i:40;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.7\";}i:41;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.3\";}i:42;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.3\";}i:43;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.5\";}i:44;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.4\";}i:45;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.4\";}i:46;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.5\";}i:47;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.6\";}i:48;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.4\";}i:49;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.5\";}i:50;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.5\";}i:51;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.4\";}i:52;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.3\";}i:53;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.5\";}i:54;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.3\";}i:55;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.3\";}i:56;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.5\";}i:57;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.3\";}i:58;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.4\";}}}s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"Action required: Critical vulnerabilities in WooCommerce Blocks\";s:7:\"content\";s:570:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/>Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br/><br/>For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:129:\"https://woo.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:32:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:35:42\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"2.5.16\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.6.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.7.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.8.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.9.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.0.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.1.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.2.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.5.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.1\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.2\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.1\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.3\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.2\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.1\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.1\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.5.1\";}}}s:45:\"woocommerce-core-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woocommerce-core-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"Solved: Critical vulnerabilities patched in WooCommerce\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:129:\"https://woo.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:36:18\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:23:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.6\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.8\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.9\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.6\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.2\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.4\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.2\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.1\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.1\";}}}}}s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:62:\"Solved: Critical vulnerabilities patched in WooCommerce Blocks\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:129:\"https://woo.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:36:54\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:31:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"2.5.16\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.6.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.7.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.8.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.9.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.0.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.1.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.2.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.1\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.1\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.2\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.2\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.1\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.1\";}}}}}s:19:\"habit-moment-survey\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"habit-moment-survey\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"We’re all ears! Share your experience so far with WooCommerce\";s:7:\"content\";s:136:\"We’d love your input to shape the future of WooCommerce together. Feel free to share any feedback, ideas or suggestions that you have.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:45:\"https://automattic.survey.fm/store-management\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:37:30\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:30;}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:0;}}}s:42:\"woocommerce-core-paypal-march-2022-updated\";O:8:\"stdClass\":8:{s:4:\"slug\";s:42:\"woocommerce-core-paypal-march-2022-updated\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Security auto-update of WooCommerce\";s:7:\"content\";s:383:\"<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy PayPal Standard security updates for stores running WooCommerce (version 3.5 to 6.3). It’s recommended to disable PayPal Standard, and use <a href=\"https://woo.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal Payments</a> to accept PayPal.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:88:\"https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:42:\"woocommerce-core-paypal-march-2022-dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-10 18:44:57\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:28:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.5.10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.7\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.3\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.5\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.4\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.5\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.6\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.5\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.5\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.5\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.2.2\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:3:\"5.5\";}i:1;a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}}}}}}}s:47:\"woocommerce-core-paypal-march-2022-updated-nopp\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-core-paypal-march-2022-updated-nopp\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Security auto-update of WooCommerce\";s:7:\"content\";s:237:\"<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy security updates related to PayPal Standard payment gateway for stores running WooCommerce (version 3.5 to 6.3).\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:88:\"https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-10 18:45:04\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:28:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.5.10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.7\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.3\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.5\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.4\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.5\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.6\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.5\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.5\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.5\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.2.2\";}}}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:42:\"woocommerce-core-paypal-march-2022-updated\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}s:24:\"pinterest_03_2022_update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:24:\"pinterest_03_2022_update\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:53:\"Your Pinterest for WooCommerce plugin is out of date!\";s:7:\"content\";s:262:\"Update to the latest version of Pinterest for WooCommerce to continue using this plugin and keep your store connected with Pinterest. To update, visit <strong>Plugins &gt; Installed Plugins</strong>, and click on “update now” under Pinterest for WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"pinterest_03_2022_update\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"Update Instructions\";}}s:3:\"url\";s:140:\"https://woo.com/document/pinterest-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=pinterest_03_2022_update#section-3\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-23 00:00:39\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"pinterest-for-woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"1.0.8\";}}}s:33:\"store_setup_survey_survey_q2_2022\";O:8:\"stdClass\":8:{s:4:\"slug\";s:33:\"store_setup_survey_survey_q2_2022\";s:4:\"type\";s:6:\"survey\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:30:\"How is your store setup going?\";s:7:\"content\";s:232:\"Our goal is to make sure you have all the right tools to start setting up your store in the smoothest way possible.\r\nWe’d love to know if we hit our mark and how we can improve. To collect your thoughts, we made a 2-minute survey.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:53:\"store_setup_survey_survey_q2_2022_share_your_thoughts\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Tell us how it’s going\";}}s:3:\"url\";s:52:\"https://automattic.survey.fm/store-setup-survey-2022\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-05-09 08:42:10\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:7;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:9;}}}s:47:\"woocommerce-payments-august-2022-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-payments-august-2022-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:51:\"Action required: Please update WooCommerce Payments\";s:7:\"content\";s:213:\"An updated secure version of WooCommerce Payments is available – please ensure that you’re using the latest patch version. For more information on what action you need to take, please review the article below.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Find out more\";}}s:3:\"url\";s:96:\"https://developer.woocommerce.com/2022/08/09/woocommerce-payments-3-9-4-4-5-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:9:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-08-09 14:44:17\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"3.9\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"4.5.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.4\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.3\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.1\";}}}s:46:\"woocommerce-payments-august-2022-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-payments-august-2022-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:51:\"WooCommerce Payments has been automatically updated\";s:7:\"content\";s:265:\"You’re now running the latest secure version of WooCommerce Payments. We’ve worked with the WordPress Plugins team to deploy a security update to stores running WooCommerce Payments (version 3.9 to 4.5). For further information, please review the article below.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Find out more\";}}s:3:\"url\";s:96:\"https://developer.woocommerce.com/2022/08/09/woocommerce-payments-3-9-4-4-5-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-08-09 14:41:13\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:47:\"woocommerce-payments-august-2022-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:7:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.4\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.3\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.1\";}}}}}s:48:\"needs-update-eway-payment-gateway-rin-2022-12-20\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"needs-update-eway-payment-gateway-rin-2022-12-20\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:58:\"Security vulnerability patched in WooCommerce Eway Gateway\";s:7:\"content\";s:323:\"In response to a potential vulnerability identified in WooCommerce Eway Gateway versions 3.1.0 to 3.5.0, we’ve worked to deploy security fixes and have released an updated version.\r\nNo external exploits have been detected, but we recommend you update to your latest supported version 3.1.26, 3.2.3, 3.3.1, 3.4.6, or 3.5.1\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:62:\"needs-update-eway-payment-gateway-rin-action-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:16:\"/update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:63:\"needs-update-eway-payment-gateway-rin-dismiss-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:7:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-03 23:45:53\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"3.1.26\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.2.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.6\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"3.5.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"3.1.0\";}}}s:43:\"updated-eway-payment-gateway-rin-2022-12-20\";O:8:\"stdClass\":8:{s:4:\"slug\";s:43:\"updated-eway-payment-gateway-rin-2022-12-20\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"WooCommerce Eway Gateway has been automatically updated\";s:7:\"content\";s:280:\"Your store is now running the latest secure version of WooCommerce Eway Gateway. We worked with the WordPress Plugins team to deploy a software update to stores running WooCommerce Eway Gateway (versions 3.1.0 to 3.5.0) in response to a security vulnerability that was discovered.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:57:\"updated-eway-payment-gateway-rin-action-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"See all updates\";}}s:3:\"url\";s:16:\"/update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"updated-eway-payment-gateway-rin-dismiss-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-03 23:45:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"needs-update-eway-payment-gateway-rin-2022-12-20\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:5:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.1.26\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.2.3\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.6\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.1\";}}}}}s:31:\"ecomm-wc-navigation-survey-2023\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"ecomm-wc-navigation-survey-2023\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:39:\"Navigating WooCommerce on WordPress.com\";s:7:\"content\";s:166:\"We are improving the WooCommerce navigation on WordPress.com and would love your help to make it better! Please share your experience with us in this 2-minute survey.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:32:\"share-navigation-survey-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:58:\"https://automattic.survey.fm/new-ecommerce-plan-navigation\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-01-16 09:53:44\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:12:\"is_ecommerce\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:180;}}}s:39:\"woopay-beta-merchantrecruitment-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"woopay-beta-merchantrecruitment-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:319:\"WooPay, a new express checkout feature built into WooCommerce Payments, is <b>now available</b> —and we’re inviting you to be one of the first to try it. \r\n<br><br>\r\n<b>Boost conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\r\n<br><br>\r\n<b>Get started in seconds.</b>\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:48:\"woopay-beta-merchantrecruitment-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"woopay-beta-merchantrecruitment-activate-learnmore-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:147:\"https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-activate-learnmore-04MAY23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:27\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.handinhandparenting.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://pritikinfoods.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://utahrecsports.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.hunterpta.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.smokinbeans.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://shulabeauty.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bingeworthytvmerch.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://s91.4d8.myftpupload.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://stephanienicolenorris.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://aliensshirt.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://libertyordeathapparelllc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://cowboystatedaily.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:42:\"https://fundrgear.com/beckendorffathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:50:\"http://wordpress-528155-2231771.cloudwaysapps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://checkout.sohaprice.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://amadozstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://eliwehbe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://lunabra.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://nptixx.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://louisianapantry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://aplusanatomy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://wildsvg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://bleachfilm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://benabeautyspa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:47:\"http://barrettfitnessenterprises.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://goabroadable.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://alexoathletica.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.fourpurls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.hagmannreport.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://busybeeorganics.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nallsproduce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://bigtimebats.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://shop.cookingwithkarli.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.queenofpeacemedia.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://bigjohnsbeefjerky.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://paperbyjaney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://carolinarisemembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://veroticaevents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://spira.farm\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://endlessassist.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://betterlifeblog.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://ashleighrenard.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.turkeymerck.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://carfiershop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://normanmusicfestival.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://www.olfactoryfactoryllc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://fundrgear.com/anthonyathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"http://tkechilifestdotcom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://pvsa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://becbatop.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wwmeconvention.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://lswmp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bubbaskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://fusango.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://vcdpostershow.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.rileysribz.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.fakeultrasound.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://onelongfellowsquare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://agodpod.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/littleladybulldogs\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://thecirclelarp.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://byletam.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.nachonite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://designerdab.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2151.temp.domains/~lovebyt2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://shortporchbaseballcompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://distancecme.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://middleswarthchips.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://railblazausa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://mikescountrymeats.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://www.woodenshoe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://rockspringscafe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"http://footballfangears.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://ybtoner.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://simplyclayyy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://naturecreation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://marisrodriguez.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://asanteinternational.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://theatre55.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://carolynscreativeclassroom.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.miiriya.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://trendyds.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wooedbythefood.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://papasteamstores.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://omdurags.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://happydogbarkery.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://kitbose.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://seamossdeals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://zeatala.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://shop.atwaterffa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://www.brettsfirstresponders.org/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://shirtactive.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://boerneparade.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://zorahshrine.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://davidcervenka.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://addisjourney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://305ycle.cc\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"http://yourworstnightmarehaunt.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://westcoastpreps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://checkout.sohaking.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://www.theunshakeablepundit.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.stellaandchewys.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.raywhitcomb.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"http://constellationtheatercompany.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://stacynguyen.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:46:\"https://fundrgear.com/lakecreekgirlsbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://winslowartcenter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://flufftastik.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mygreenbeach.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://ebookvip.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/needvillevolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bifocalmedia.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://clrc.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://hyperpins.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/lakecreekboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://fundrgear.com/kparktennis\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mogadorspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://fundrgear.com/newcaneytrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://sigmascents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://bsharisemoore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://morrflate.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://westbrosinc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://shop.danceplexaz.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://chikepod.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.advanahealth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://tatter.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://greatawakeningbrewing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://waterfowlfestival.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://preppedwellness.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://events.thus.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://stormtide.thefifthtrooper.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.tabsynth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"http://staging.fliptheswitchon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://duffysdough.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodieliving.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://breakerbrotherstcg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://andymation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://recklessmetals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://sophielark.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://wp.arabtherapy.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://creativeappliques.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://altitude.win\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:42:\"woocommerce-wcpay-march-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:42:\"woocommerce-wcpay-march-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:57:\"Action required: Security update for WooCommerce Payments\";s:7:\"content\";s:296:\"<strong>Your store requires a security update for WooCommerce Payments</strong>. Please update to the latest version of WooCommerce Payments immediately to address a potential vulnerability discovered on March 22. For more information on how to update, visit this WooCommerce Developer Blog Post.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:49:\"woocommerce-wcpay-march-2023-update-needed-button\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"See Blog Post\";}}s:3:\"url\";s:122:\"https://developer.woocommerce.com/2023/03/23/critical-vulnerability-detected-in-woocommerce-payments-what-you-need-to-know\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:57:\"woocommerce-wcpay-march-2023-update-needed-dismiss-button\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:11:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-03-22 20:25:44\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.4\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.3\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.5.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"4.8.0\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"5.6.1\";}}}s:34:\"tap_to_pay_iphone_q2_2023_no_wcpay\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"tap_to_pay_iphone_q2_2023_no_wcpay\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:52:\"Accept in-person contactless payments on your iPhone\";s:7:\"content\";s:230:\"Tap to Pay on iPhone and WooCommerce Payments is quick, secure, and simple to set up — no extra terminals or card readers are needed. Accept contactless debit and credit cards, Apple Pay, and other NFC digital wallets in person.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"tap_to_pay_iphone_q2_2023_no_wcpay\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:20:\"Simplify my payments\";}}s:3:\"url\";s:135:\"https://woo.com/products/woocommerce-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=tap_to_pay_iphone_q2_2023_no_wcpay\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-03 23:59:47\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}s:48:\"woocommerce-WCPreOrders-april-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-WCPreOrders-april-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:68:\"Action required: Security update of WooCommerce Pre-Orders extension\";s:7:\"content\";s:220:\"<strong>Your store requires a security update for the WooCommerce Pre-Orders extension</strong>. Please update the WooCommerce Pre-Orders extension immediately to address a potential vulnerability discovered on April 11.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"extension-settings\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:15:\"update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-12 22:16:37\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:22:\"woocommerce-pre-orders\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"2.0.0\";}}}s:46:\"woopay-beta-merchantrecruitment-update-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woopay-beta-merchantrecruitment-update-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:321:\"WooPay, a new express checkout feature built into WooCommerce Payments, is <b>now available</b> — and you’re invited to try it. \r\n<br /><br />\r\n<b>Boost conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\r\n<br /><br />\r\n<b>Update WooCommerce Payments</b> to get started.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:52:\"woopay-beta-merchantrecruitment-update-WCPay-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:55:\"woopay-beta-merchantrecruitment-update-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.handinhandparenting.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://pritikinfoods.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://utahrecsports.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.hunterpta.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.smokinbeans.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://shulabeauty.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bingeworthytvmerch.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://s91.4d8.myftpupload.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://stephanienicolenorris.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://aliensshirt.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://libertyordeathapparelllc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://cowboystatedaily.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:42:\"https://fundrgear.com/beckendorffathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:50:\"http://wordpress-528155-2231771.cloudwaysapps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://checkout.sohaprice.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://amadozstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://eliwehbe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://lunabra.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://nptixx.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://louisianapantry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://aplusanatomy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://wildsvg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://bleachfilm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://benabeautyspa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:47:\"http://barrettfitnessenterprises.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://goabroadable.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://alexoathletica.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.fourpurls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.hagmannreport.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://busybeeorganics.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nallsproduce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://bigtimebats.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://shop.cookingwithkarli.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.queenofpeacemedia.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://bigjohnsbeefjerky.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://paperbyjaney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://carolinarisemembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://veroticaevents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://spira.farm\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://endlessassist.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://betterlifeblog.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://ashleighrenard.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.turkeymerck.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://carfiershop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://normanmusicfestival.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://www.olfactoryfactoryllc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://fundrgear.com/anthonyathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"http://tkechilifestdotcom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://pvsa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://becbatop.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wwmeconvention.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://lswmp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bubbaskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://fusango.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://vcdpostershow.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.rileysribz.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.fakeultrasound.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://onelongfellowsquare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://agodpod.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/littleladybulldogs\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://thecirclelarp.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://byletam.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.nachonite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://designerdab.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2151.temp.domains/~lovebyt2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://shortporchbaseballcompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://distancecme.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://middleswarthchips.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://railblazausa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://mikescountrymeats.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://www.woodenshoe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://rockspringscafe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"http://footballfangears.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://ybtoner.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://simplyclayyy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://naturecreation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://marisrodriguez.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://asanteinternational.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://theatre55.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://carolynscreativeclassroom.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.miiriya.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://trendyds.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wooedbythefood.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://papasteamstores.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://omdurags.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://happydogbarkery.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://kitbose.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://seamossdeals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://zeatala.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://shop.atwaterffa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://www.brettsfirstresponders.org/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://shirtactive.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://boerneparade.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://zorahshrine.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://davidcervenka.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://addisjourney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://305ycle.cc\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"http://yourworstnightmarehaunt.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://westcoastpreps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://checkout.sohaking.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://www.theunshakeablepundit.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.stellaandchewys.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.raywhitcomb.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"http://constellationtheatercompany.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://stacynguyen.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:46:\"https://fundrgear.com/lakecreekgirlsbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://winslowartcenter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://flufftastik.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mygreenbeach.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://ebookvip.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/needvillevolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bifocalmedia.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://clrc.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://hyperpins.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/lakecreekboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://fundrgear.com/kparktennis\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mogadorspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://fundrgear.com/newcaneytrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://sigmascents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://bsharisemoore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://morrflate.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://westbrosinc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://shop.danceplexaz.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://chikepod.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.advanahealth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://tatter.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://greatawakeningbrewing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://waterfowlfestival.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://preppedwellness.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://events.thus.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://stormtide.thefifthtrooper.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.tabsynth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"http://staging.fliptheswitchon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://duffysdough.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodieliving.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://breakerbrotherstcg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://andymation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://recklessmetals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://sophielark.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://wp.arabtherapy.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://creativeappliques.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://altitude.win\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:46:\"woopay-beta-existingmerchants-noaction-27APR23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woopay-beta-existingmerchants-noaction-27APR23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:15:\"WooPay is back!\";s:7:\"content\";s:361:\"Thanks for previously trying WooPay, the<b> express checkout feature</b> built into WooCommerce Payments. We’re excited to announce that <b>WooPay availability has resumed</b>. No action is required on your part.\r\n<br /><br />\r\nYou can now <b>continue boosting conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-existingmerchants-noaction-documentation-27APR23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Documentation\";}}s:3:\"url\";s:170:\"https://woo.com/document/woopay-merchant-documentation/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-existingmerchants-noaction-documentation-27APR23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-26 19:00:23\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.0\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:38:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://store.startingstrongman.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://joacreativelab.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.pureskincaresalon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mariablaquier.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://getprodigital.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://dalefrickeholsters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://sstour.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://tk-txstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://humanspiritproject.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://viradadrums.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://rosariumblends.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://organicskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://stuckpigmedical.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.seattlegiftbasket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.cloverandviolet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gvscholarship.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://yesimadiva.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://www.old.jmtrashbgone.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://victorialansford.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://craftcosplay.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://thefossilexchange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nextgenspeed.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cappellarecords.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://ontimesupermarket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://new2knox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://lovestudiollc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://socceruniformkits.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://willowcreativ.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://summitprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://howda.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://soapavenuecompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://subsbox.mystagingwebsite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wifflebreakers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.mps-outfitters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://howardharrisassociates.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bettersaferadio.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://bunnyluna.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:44:\"woopay-beta-existingmerchants-update-27APR23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:44:\"woopay-beta-existingmerchants-update-27APR23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:15:\"WooPay is back!\";s:7:\"content\";s:368:\"Thanks for previously trying WooPay, the <b>express checkout feature</b> built into WooCommerce Payments. We’re excited to announce that <b>WooPay availability has resumed</b>.\r\n<br /><br />\r\n\r\nUpdate to the latest WooCommerce Payments version to <b>continue boosting conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:50:\"woopay-beta-existingmerchants-update-WCPay-27APR23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-26 19:00:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.0\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:38:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://store.startingstrongman.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://joacreativelab.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.pureskincaresalon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mariablaquier.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://getprodigital.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://dalefrickeholsters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://sstour.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://tk-txstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://humanspiritproject.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://viradadrums.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://rosariumblends.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://organicskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://stuckpigmedical.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.seattlegiftbasket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.cloverandviolet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gvscholarship.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://yesimadiva.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://www.old.jmtrashbgone.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://victorialansford.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://craftcosplay.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://thefossilexchange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nextgenspeed.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cappellarecords.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://ontimesupermarket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://new2knox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://lovestudiollc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://socceruniformkits.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://willowcreativ.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://summitprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://howda.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://soapavenuecompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://subsbox.mystagingwebsite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wifflebreakers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.mps-outfitters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://howardharrisassociates.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bettersaferadio.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://bunnyluna.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:45:\"woopay-beta-merchantrecruitment-short-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woopay-beta-merchantrecruitment-short-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:54:\"woopay-beta-merchantrecruitment-short-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:64:\"woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:153:\"https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:36\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://pieroatomic3.wpcomstaging.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.bluebeautifly.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://indianrivernatural.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://fouroaksproducts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:14:\"https://acb.la\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://www.sweetpotatoplant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://www.gocaseyourself.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://laugun.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://nebraskadaybyday.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://vintagemarche727.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://kohai.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://gracegaze.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://aliensmeaning.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://myheritagegardens.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://shopmoresport.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://oladino.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://frogjumpstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cagedthundermma.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/mcelwainelementary\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://mgco.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://500gp.io/pay\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://waterglassslimes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://antiqueful.shop/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://deeperkidmin.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/cyspringsboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://houseofminifigs.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2273.temp.domains/~dreambx2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://madebymixture.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://reliabletrash.company\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.daddybutter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://circleqessentials.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://garlicbraids.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://fbdonline.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://galaxysedge.us\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://duckduckbeetfarm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://varsitygraphics.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://jademackenzie.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://kristysketolifestyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://covid19criticalcare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://parkviewprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://rock-fest.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://fillinxsolutions.com/etarix/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://doughremitx.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.montanafiddlecamp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://fococomiccon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://patricendouglas.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://hectue.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://montanamaxbbq.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://smellzoom.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://uptowne.theoandson.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://superbasic.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ppodstore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://kerenzan.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://a13bargains.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://colorgr.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://mindbodysoulcandles.com/Charlotte\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://peaceloveandadhd.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://seymoursmash.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mwtournament.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:43:\"https://fundrgear.com/beckendorffgirlstrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://allswellnyc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://childoftheredwoodsmembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/grandoaksvolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.newhollandrochester.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.purplecatvet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"https://www.mustangmountaincoaster.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.roccanj.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.teerico.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://passportunlimited.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.paladincards20.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://giantshorties.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visualsports.biz\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://thefreakinricanrestaurant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://arequestionscom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://pt.tktxcompanystore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodiechicks.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://nutoshop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://backwoodzhiphop.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://gartapparel.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bodega.badiaspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://rampartrange.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://teeuni.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bearsinthealley.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://vitalbooks.net/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://hair-free-hair-remover.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gangtaynails.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://crochetfoundry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://westcoastbelts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://payment.sundryfiles.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://ccadunkirk.mudhenmama.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://desertsupercup.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://shops-eminem.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://75yearsofracing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://tixpls.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:44:\"http://legacyoutfitters.org/banquet/raffles/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://91170e9fc9.nxcli.io/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://beachwayrentals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://esd.camp\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mfkgamecalls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://1greatce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.luthyouth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://electionintegrityidaho.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://renbundle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://premierseamoss.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://teemart.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/beckendorffgirlsbb\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visiblechild.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ebookvital.me/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://renemarsh.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://www.eventricate.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://transgression.party\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://profadex.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://mxsbattlegrounds.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.poeinbaltimore.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://freefall.gg\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://underthechurchhatblog.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://naksparkle.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"http://bearlyburly.gay/inventory\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.premierboneandjoint.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://farm-2-bowl.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://hollandgrill.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://lividian.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.trainingrange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://sarakepskitchen.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.phoenixyouththeatre.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://drivenarmsco.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://audiobro.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://www.iowaabortionaccessfund.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://findthemenu.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://moderndepot.co\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://granitesupplements.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://healthyrican.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://utest.edsandbox.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://c-pounds.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://littleschoolofsmiths.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://goblinstyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://proper-testing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.cosafoundation.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://farmsteadboxes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://fundraise4books.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://norskenook.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://cajulove.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:52:\"woopay-beta-merchantrecruitment-short-update-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:52:\"woopay-beta-merchantrecruitment-short-update-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:227:\"Be one of the first to try WooPay, our new express checkout feature. <br><b>Boost conversions</b> by letting customers pay with a <b>single click</b>. <br><br>Update to the latest version of WooCommerce Payments to get started.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"woopay-beta-merchantrecruitment-short-update-WCPay-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:61:\"woopay-beta-merchantrecruitment-short-update-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:20\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.bluebeautifly.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://indianrivernatural.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://fouroaksproducts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:14:\"https://acb.la\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://www.sweetpotatoplant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://www.gocaseyourself.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://laugun.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://nebraskadaybyday.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://vintagemarche727.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://kohai.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://gracegaze.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://aliensmeaning.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://myheritagegardens.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://shopmoresport.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://oladino.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://frogjumpstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cagedthundermma.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/mcelwainelementary\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://mgco.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://500gp.io/pay\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://waterglassslimes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://antiqueful.shop/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://deeperkidmin.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/cyspringsboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://houseofminifigs.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2273.temp.domains/~dreambx2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://madebymixture.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://reliabletrash.company\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.daddybutter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://circleqessentials.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://garlicbraids.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://fbdonline.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://galaxysedge.us\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://duckduckbeetfarm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://varsitygraphics.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://jademackenzie.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://kristysketolifestyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://covid19criticalcare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://parkviewprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://rock-fest.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://fillinxsolutions.com/etarix/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://doughremitx.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.montanafiddlecamp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://fococomiccon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://patricendouglas.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://hectue.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://montanamaxbbq.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://smellzoom.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://uptowne.theoandson.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://superbasic.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ppodstore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://kerenzan.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://a13bargains.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://colorgr.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://mindbodysoulcandles.com/Charlotte\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://peaceloveandadhd.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://seymoursmash.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mwtournament.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:43:\"https://fundrgear.com/beckendorffgirlstrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://allswellnyc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://childoftheredwoodsmembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/grandoaksvolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.newhollandrochester.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.purplecatvet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"https://www.mustangmountaincoaster.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.roccanj.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.teerico.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://passportunlimited.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.paladincards20.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://giantshorties.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visualsports.biz\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://thefreakinricanrestaurant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://arequestionscom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://pt.tktxcompanystore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodiechicks.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://nutoshop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://backwoodzhiphop.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://gartapparel.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bodega.badiaspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://rampartrange.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://teeuni.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bearsinthealley.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://vitalbooks.net/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://hair-free-hair-remover.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gangtaynails.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://crochetfoundry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://westcoastbelts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://payment.sundryfiles.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://ccadunkirk.mudhenmama.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://desertsupercup.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://shops-eminem.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://75yearsofracing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://tixpls.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:44:\"http://legacyoutfitters.org/banquet/raffles/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://91170e9fc9.nxcli.io/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://beachwayrentals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://esd.camp\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mfkgamecalls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://1greatce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.luthyouth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://electionintegrityidaho.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://renbundle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://premierseamoss.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://teemart.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/beckendorffgirlsbb\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visiblechild.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ebookvital.me/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://renemarsh.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://www.eventricate.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://transgression.party\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://profadex.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://mxsbattlegrounds.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.poeinbaltimore.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://freefall.gg\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://underthechurchhatblog.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://naksparkle.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"http://bearlyburly.gay/inventory\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.premierboneandjoint.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://farm-2-bowl.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://hollandgrill.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://lividian.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.trainingrange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://sarakepskitchen.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.phoenixyouththeatre.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://drivenarmsco.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://audiobro.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://www.iowaabortionaccessfund.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://findthemenu.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://moderndepot.co\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://granitesupplements.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://healthyrican.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://utest.edsandbox.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://c-pounds.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://littleschoolofsmiths.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://goblinstyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://proper-testing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.cosafoundation.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://farmsteadboxes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://fundraise4books.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://norskenook.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://cajulove.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTA\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTA\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTA\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test A\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:159:\"https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 00:01:32\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTB\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTB\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTB\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test B\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:159:\"https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 20:58:43\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTC\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTC\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTC\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test C\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:159:\"https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 21:03:33\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://pieroatomic3.wpcomstaging.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTD\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTD\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTD\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test D\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:159:\"https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 21:32:09\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://pieroatomic3.wpcomstaging.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:45:\"woopay-beta-merchantrecruitment-short-09MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woopay-beta-merchantrecruitment-short-09MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:61:\"woopay-beta-merchantrecruitment-short-activate-button-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:72:\"woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:161:\"https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-08 19:18:44\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:17:\"platform_checkout\";}}}s:11:\"option_name\";s:41:\"woocommerce_woocommerce_payments_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"no\";s:7:\"default\";b:0;}i:3;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:31:\"data.platform_checkout_eligible\";}}}s:11:\"option_name\";s:18:\"wcpay_account_data\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;s:7:\"default\";b:0;}}}s:52:\"woopay-beta-merchantrecruitment-short-update-09MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:52:\"woopay-beta-merchantrecruitment-short-update-09MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:227:\"Be one of the first to try WooPay, our new express checkout feature. <br><b>Boost conversions</b> by letting customers pay with a <b>single click</b>. <br><br>Update to the latest version of WooCommerce Payments to get started.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"woopay-beta-merchantrecruitment-short-update-WCPay-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:61:\"woopay-beta-merchantrecruitment-short-update-activate-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-08 19:45:57\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:17:\"platform_checkout\";}}}s:11:\"option_name\";s:41:\"woocommerce_woocommerce_payments_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"no\";s:7:\"default\";b:0;}i:3;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:31:\"data.platform_checkout_eligible\";}}}s:11:\"option_name\";s:18:\"wcpay_account_data\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;s:7:\"default\";b:0;}}}s:44:\"woocommerce-WCstripe-May-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:44:\"woocommerce-WCstripe-May-2023-updated-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Action required: Security update of WooCommerce Stripe plugin\";s:7:\"content\";s:183:\"<strong>Your store requires a security update for the WooCommerce Stripe plugin</strong>. Please update the WooCommerce Stripe plugin immediately to address a potential vulnerability.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woocommerce-WCStripe-May-2023-updated-needed-Plugin-Settings\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:68:\"woocommerce-WCStripe-May-2023-updated-needed-Plugin-Settings-dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-31 19:54:10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.0\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"7.4.1\";}}}s:47:\"woocommerce-WCPayments-June-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-WCPayments-June-2023-updated-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:56:\"Action required: Security update of WooCommerce Payments\";s:7:\"content\";s:187:\"<strong>Your store requires a security update for the WooCommerce Payments plugin</strong>. Please update the WooCommerce Payments plugin immediately to address a potential vulnerability.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:63:\"woocommerce-WCPayments-June-2023-updated-needed-Plugin-Settings\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:55:\"woocommerce-WCPayments-June-2023-updated-needed-Dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:20:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-06 08:00:52\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"3.2.0\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.3\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.3\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.2\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.4\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.5.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.6.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.7.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.8.2\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.9.1\";}}}s:52:\"woocommerce-WCSubscriptions-June-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:52:\"woocommerce-WCSubscriptions-June-2023-updated-needed\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Action required: Security update of WooCommerce Subscriptions\";s:7:\"content\";s:197:\"<strong>Your store requires a security update for the WooCommerce Subscriptions plugin</strong>. Please update the WooCommerce Subscriptions plugin immediately to address a potential vulnerability.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:68:\"woocommerce-WCSubscriptions-June-2023-updated-needed-Plugin-Settings\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woocommerce-WCSubscriptions-June-2023-updated-needed-dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-06 08:00:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"2.1.0\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"5.1.2\";}}}s:54:\"woocommerce-WCReturnsWarranty-June-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:54:\"woocommerce-WCReturnsWarranty-June-2023-updated-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:87:\"Action required: Security update of WooCommerce Returns and Warranty Requests extension\";s:7:\"content\";s:270:\"<strong>Your store requires a security update for the Returns and Warranty Requests extension</strong>.  Please update to the latest version of the WooCommerce Returns and Warranty Requests extension immediately to address a potential vulnerability discovered on May 31.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:54:\"woocommerce-WCReturnsWarranty-June-2023-updated-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:54:\"woocommerce-WCReturnsWarranty-June-2023-updated-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-02 23:53:57\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-warranty\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"2.1.8\";}}}s:42:\"woocommerce-WCOPC-June-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:42:\"woocommerce-WCOPC-June-2023-updated-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:65:\"Action required: Security update of WooCommerce One Page Checkout\";s:7:\"content\";s:232:\"<strong>Your shop requires a security update to address a vulnerability in the WooCommerce One Page Checkout extension</strong>. The fix for this vulnerability was released for this extension on June 13th. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:42:\"woocommerce-WCOPC-June-2023-updated-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:42:\"woocommerce-WCOPC-June-2023-updated-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-21 14:05:46\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:29:\"woocommerce-one-page-checkout\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"2.4.0\";}}}s:40:\"woocommerce-WCGC-July-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:40:\"woocommerce-WCGC-July-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:68:\"Action required: Security update of WooCommerce GoCardless Extension\";s:7:\"content\";s:205:\"<strong>Your shop requires a security update to address a vulnerability in the WooCommerce GoCardless extension</strong>. The fix for this vulnerability was released on July 4th. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:40:\"woocommerce-WCGC-July-2023-update-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:40:\"woocommerce-WCGC-July-2023-update-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-07-04 15:36:07\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:30:\"woocommerce-gateway-gocardless\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"2.5.6\";}}}s:48:\"woocommerce-shipping-fedex-api-outage-2023-07-16\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-shipping-fedex-api-outage-2023-07-16\";s:4:\"type\";s:7:\"warning\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:40:\"Scheduled FedEx API outage — July 2023\";s:7:\"content\";s:277:\"On July 16 there will be a full outage of the FedEx API from 04:00 to 08:00 AM UTC. Due to planned maintenance by FedEx, you\'ll be unable to provide FedEx shipping rates during this time. Follow the link below for more information and recommendations on how to minimize impact.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:117:\"https://woo.com/document/fedex/?utm_medium=product&utm_source=inbox_note&utm_campaign=learn-more#july-2023-api-outage\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-07-05 18:19:17\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-shipping-fedex\";}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-07-17 00:00:00\";}}}s:35:\"wcship-2023-07-hazmat-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:35:\"wcship-2023-07-hazmat-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:87:\"Action required: USPS HAZMAT compliance update for WooCommerce Shipping & Tax extension\";s:7:\"content\";s:251:\"<strong>Your store requires an update for the WooCommerce Shipping extension</strong>. Please update to the latest version of the WooCommerce Shipping &amp; Tax extension immediately to ensure compliance with new USPS HAZMAT rules currently in effect.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"plugin-list\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:23:\"admin.php?page=wc-admin\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-07-11 20:26:59\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-services\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"2.3.0\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}s:43:\"woocommerce-WCStripe-Aug-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:43:\"woocommerce-WCStripe-Aug-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:62:\"Action required: Security update for WooCommerce Stripe plugin\";s:7:\"content\";s:183:\"<strong>Your shop requires an important security update for the  WooCommerce Stripe plugin</strong>. The fix for this vulnerability was released on July 31. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:43:\"woocommerce-WCStripe-Aug-2023-update-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:16:\"update-core.php?\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-03 05:00:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.6\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"7.4.2\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:11:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.3.2\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.4.5\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.5.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.6.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.9.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.0.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.1.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.2.2\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.3.2\";}}}}}}}s:46:\"woocommerce-WCStripe-Aug-2023-security-updated\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-WCStripe-Aug-2023-security-updated\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:44:\"Security update of WooCommerce Stripe plugin\";s:7:\"content\";s:144:\"<strong>Your store has been updated to the latest secure version of the WooCommerce Stripe plugin</strong>. This update was released on July 31.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-03 05:00:07\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:11:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.3.2\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.4.5\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.5.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.6.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.9.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.0.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.1.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.2.2\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.3.2\";}}}}}s:46:\"woocommerce-WooPayments-Aug-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-WooPayments-Aug-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:78:\"Action required: Security update for WooPayments (WooCommerce Payments) plugin\";s:7:\"content\";s:201:\"<strong>Your shop requires an important security update for the WooPayments (WooCommerce Payments) extension</strong>. The fix for this vulnerability was released on July 31. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:46:\"woocommerce-WooPayments-Aug-2023-update-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:16:\"update-core.php?\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-03 05:00:10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"2.8.0\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"6.2.1\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:17:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.4\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.3\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.6\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.5\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.4\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}}}}}}}s:49:\"woocommerce-WooPayments-Aug-2023-security-updated\";O:8:\"stdClass\":8:{s:4:\"slug\";s:49:\"woocommerce-WooPayments-Aug-2023-security-updated\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:60:\"Security update of WooPayments (WooCommerce Payments) plugin\";s:7:\"content\";s:147:\"<strong>Your store has been updated to the more secure version of WooPayments (WooCommerce Payments)</strong>. This update was released on July 31.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-03 05:00:13\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:17:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.4\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.3\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.6\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.5\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.4\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}}}}}s:24:\"avalara_q3-2023_noAvaTax\";O:8:\"stdClass\":8:{s:4:\"slug\";s:24:\"avalara_q3-2023_noAvaTax\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:40:\"Automatically calculate VAT in real time\";s:7:\"content\";s:284:\"Take the effort out of determining tax rates and sell confidently across borders with automated tax management from Avalara AvaTax— including built-in VAT calculation when you sell into or across the EU and UK. Save time and stay compliant when you let Avalara do the heavy lifting.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"avalara_q3-2023_noAvaTax\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Automate my sales tax\";}}s:3:\"url\";s:123:\"https://woo.com/products/woocommerce-avatax/?utm_source=inbox_note&utm_medium=product&utm_campaign=avalara_q3-2023_noAvaTax\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-08 22:32:23\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-08-09 23:59:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:18:\"woocommerce-avatax\";}}}}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:30;}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:20:\"total_payments_value\";s:9:\"timeframe\";s:9:\"last_year\";s:5:\"value\";i:100;s:9:\"operation\";s:1:\">\";}}}s:38:\"woo-activation-survey-blockers-22AUG23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:38:\"woo-activation-survey-blockers-22AUG23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:40:\"How can we help you get that first sale?\";s:7:\"content\";s:211:\"Your feedback is vital. Please take a minute to share your experience of setting up your new store and whether anything is preventing you from making those first few sales. Together, we can make Woo even better!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:52:\"woo-activation-survey-blockers-survey-button-22AUG23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Take our short survey\";}}s:3:\"url\";s:54:\"https://woocommerce.survey.fm/getting-started-with-woo\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-22 15:54:58\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:2:\"<=\";s:4:\"days\";i:30;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:1;}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";i:0;}}}s:44:\"woocommerce-usermeta-Sept2023-productvendors\";O:8:\"stdClass\":8:{s:4:\"slug\";s:44:\"woocommerce-usermeta-Sept2023-productvendors\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:37:\"Your store requires a security update\";s:7:\"content\";s:339:\"<strong>Your shop needs an update to address a vulnerability in WooCommerce.</strong> The fix was released on Sept 15. Please update WooCommerce to the latest version immediately. <a href=\"https://developer.woocommerce.com/2023/09/16/woocommerce-vulnerability-reintroduced-from-7-0-1/\" />Read our developer update</a> for more information.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:44:\"woocommerce-usermeta-Sept2023-productvendors\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:11:\"plugins.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-09-20 00:50:07\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-product-vendors\";}}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"8.1.1\";}}}s:41:\"woocommerce-STRIPE-Oct-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:41:\"woocommerce-STRIPE-Oct-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"Action required: Security update for WooCommerce Stripe Gateway\";s:7:\"content\";s:201:\"<strong>Your shop requires a security update to address a vulnerability in the WooCommerce Stripe Gateway</strong>. The fix for this vulnerability was released on October 17. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:41:\"woocommerce-STRIPE-Oct-2023-update-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:15:\"update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:36:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-10-18 00:01:58\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"4.5.4\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.6\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.2\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.5.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.6.4\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.7.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.8.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.9.2\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.0.2\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.1.2\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.2.2\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.3.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.4.6\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.5.4\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.6.3\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.5.4\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.6.3\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.7.3\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.8.3\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.9.3\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"7.0.5\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"7.1.3\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"7.2.3\";}i:32;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"7.3.3\";}i:33;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"7.4.3\";}i:34;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"7.5.1\";}i:35;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"7.6.1\";}}}s:29:\"amazon-mcf-reviews-2023-12-07\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"amazon-mcf-reviews-2023-12-07\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:36:\"Enjoying Amazon MCF for WooCommerce?\";s:7:\"content\";s:292:\"We\'re Never Settle, the developers behind Amazon MCF for WooCommerce, and would be deeply honored to have your review. Reviews help immensely as other users can learn how MCF can solve their needs too! Not happy or need help? Please reach out for support and we’d love to make things right!\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"amazon-mcf-review-button-2023-12-07\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Leave a review\";}}s:3:\"url\";s:153:\"https://woo.com/products/woocommerce-amazon-fulfillment/?review&utm_source=inbox_note&utm_medium=product&utm_campaign=amazon-mcf-review-button-2023-12-07\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:36:\"amazon-mcf-support-button-2023-12-07\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Request support\";}}s:3:\"url\";s:134:\"https://woo.com/my-account/contact-support/?utm_source=inbox_note&utm_medium=product&utm_campaign=amazon-mcf-support-button-2023-12-07\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-12-06 15:21:27\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:30:\"woocommerce-amazon-fulfillment\";}}}}s:30:\"remove_estimated_deposits_2024\";O:8:\"stdClass\":8:{s:4:\"slug\";s:30:\"remove_estimated_deposits_2024\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:33:\"Estimated deposits are going away\";s:7:\"content\";s:267:\"To provide more accurate deposit information and support the expansion of instant deposits, estimated deposit details will no longer be available in WooPayments. We recommend upgrading to the latest version of WooPayments for more detailed balance status information.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:9:\"view_docs\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:29:\"Learn about Deposit schedules\";}}s:3:\"url\";s:143:\"https://woo.com/document/woopayments/deposits/deposit-schedule/?utm_source=inbox_note&utm_medium=product&utm_campaign=view_docs#available-funds\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:3:\"6.9\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2024-01-21 08:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2024-01-31 23:59:59\";}}}}}','no');
INSERT INTO `wpj7_options` VALUES (460,'_transient_shipping-transient-version','1700328357','yes'),(461,'woocommerce_admin_created_default_shipping_zones','yes','yes'),(463,'woocommerce_task_list_prompt_shown','1','yes'),(483,'wc_stripe_wh_monitor_began_at','1669163277','yes'),(484,'wc_stripe_wh_last_success_at','0','yes'),(485,'wc_stripe_wh_last_failure_at','0','yes'),(486,'wc_stripe_wh_last_error','validation_succeeded','yes'),(488,'wc_stripe_show_style_notice','no','yes'),(489,'wc_stripe_show_sca_notice','no','yes'),(491,'woocommerce_stripe_settings','a:29:{s:7:\"enabled\";s:3:\"yes\";s:5:\"title\";s:9:\"Betalkort\";s:11:\"description\";s:26:\"Betala med ditt kreditkort\";s:8:\"testmode\";s:2:\"no\";s:20:\"test_publishable_key\";s:0:\"\";s:15:\"test_secret_key\";s:0:\"\";s:15:\"publishable_key\";s:107:\"pk_live_51NR06LL2rnkpzIzkYP918zkPpOmgAgKuK8lgHHmXJbNLZN7KPJ1vDpqGCnmQY95sg92nlvCSR8u2OSo3p5ocn9yj003QL4ua0Y\";s:10:\"secret_key\";s:107:\"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\";s:19:\"test_webhook_secret\";s:0:\"\";s:14:\"webhook_secret\";s:0:\"\";s:14:\"inline_cc_form\";s:2:\"no\";s:20:\"statement_descriptor\";s:9:\"Teng Shop\";s:26:\"short_statement_descriptor\";s:0:\"\";s:7:\"capture\";s:3:\"yes\";s:15:\"payment_request\";s:3:\"yes\";s:27:\"payment_request_button_type\";s:3:\"buy\";s:28:\"payment_request_button_theme\";s:4:\"dark\";s:32:\"payment_request_button_locations\";a:2:{i:0;s:4:\"cart\";i:1;s:8:\"checkout\";}s:27:\"payment_request_button_size\";s:5:\"small\";s:11:\"saved_cards\";s:3:\"yes\";s:7:\"logging\";s:2:\"no\";s:31:\"upe_checkout_experience_enabled\";s:8:\"disabled\";s:15:\"api_credentials\";s:0:\"\";s:7:\"webhook\";s:0:\"\";s:25:\"apple_pay_verified_domain\";s:25:\"www.nl.ecom-expansion.com\";s:20:\"apple_pay_domain_set\";s:3:\"yes\";s:9:\"title_upe\";s:0:\"\";s:37:\"is_short_statement_descriptor_enabled\";s:2:\"no\";s:41:\"upe_checkout_experience_accepted_payments\";a:0:{}}','yes'),(508,'_transient_product_query-transient-version','1705884439','yes'),(509,'_transient_product-transient-version','1703030018','yes'),(510,'woocommerce_task_list_reminder_bar_hidden','yes','yes'),(748,'woocommerce_admin_reviewed_default_shipping_zones','yes','yes'),(750,'woocommerce_free_shipping_3_settings','a:4:{s:5:\"title\";s:17:\"Gratis verzending\";s:8:\"requires\";s:10:\"min_amount\";s:10:\"min_amount\";s:2:\"70\";s:16:\"ignore_discounts\";s:2:\"no\";}','yes'),(802,'wafs_plugin_version','1.1.7','yes'),(804,'woocommerce_advanced_free_shipping_settings','a:3:{s:7:\"enabled\";s:3:\"yes\";s:19:\"hide_other_shipping\";s:3:\"yes\";s:10:\"conditions\";s:0:\"\";}','yes'),(843,'woocommerce_flat_rate_7_settings','a:3:{s:5:\"title\";s:13:\"Verzendkosten\";s:10:\"tax_status\";s:4:\"none\";s:4:\"cost\";s:5:\"11,47\";}','yes'),(849,'woocommerce_gateway_stripe_retention','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}','no'),(868,'woocommerce_flat_rate_8_settings','a:3:{s:5:\"title\";s:13:\"Verzendkosten\";s:10:\"tax_status\";s:4:\"none\";s:4:\"cost\";s:5:\"11,47\";}','yes'),(904,'recovery_keys','a:0:{}','yes'),(905,'https_detection_errors','a:2:{s:23:\"ssl_verification_failed\";a:1:{i:0;s:34:\"Verifieringen av SSL misslyckades.\";}s:19:\"bad_response_source\";a:1:{i:0;s:56:\"Det verkar som om svaret inte kom från denna webbplats.\";}}','yes'),(914,'finished_updating_comment_type','1','yes'),(919,'_transient_health-check-site-status-result','{\"good\":20,\"recommended\":3,\"critical\":1}','yes'),(936,'woocommerce_default_homepage_layout','two_columns','yes'),(937,'woocommerce_task_list_hidden_lists','a:2:{i:0;s:5:\"setup\";i:1;s:8:\"extended\";}','yes'),(972,'woocommerce_maybe_regenerate_images_hash','d6a0f61688b84c5394b694b5d78d0978','yes'),(1026,'wc_ast_default_mark_shipped','1','yes'),(1027,'wc_ast_unclude_tracking_info','a:15:{i:0;s:1:\"1\";i:1;s:15:\"partial-shipped\";i:2;s:16:\"updated-tracking\";s:10:\"processing\";s:1:\"0\";s:9:\"completed\";i:1;s:15:\"partial-shipped\";i:1;s:16:\"updated-tracking\";s:1:\"1\";s:9:\"cancelled\";s:1:\"0\";s:7:\"on-hold\";s:1:\"0\";s:8:\"refunded\";s:1:\"0\";s:6:\"failed\";s:1:\"0\";s:24:\"show_in_customer_invoice\";s:1:\"0\";s:21:\"show_in_customer_note\";s:1:\"0\";s:14:\"checkout-draft\";s:1:\"0\";s:7:\"shipped\";i:1;}','yes'),(1028,'wc_ast_show_orders_actions','a:13:{i:0;s:1:\"1\";i:1;s:9:\"completed\";i:2;s:15:\"partial-shipped\";i:3;s:16:\"updated-tracking\";s:10:\"processing\";s:1:\"1\";s:9:\"completed\";s:1:\"1\";s:15:\"partial-shipped\";s:1:\"1\";s:16:\"updated-tracking\";s:1:\"1\";s:7:\"on-hold\";s:1:\"0\";s:9:\"cancelled\";s:1:\"0\";s:8:\"refunded\";s:1:\"0\";s:6:\"failed\";s:1:\"0\";s:14:\"checkout-draft\";s:1:\"0\";}','yes'),(1029,'wc_advanced_shipment_tracking','3.21','yes'),(1036,'display_track_in_my_account','1','yes'),(1037,'open_track_in_new_tab','1','yes'),(1038,'wc_ast_api_date_format','m-d-Y','yes'),(1039,'wc_ast_status_shipped','1','yes'),(1040,'wc_ast_status_delivered','1','yes'),(1041,'wc_ast_status_label_color','#1e73be','yes'),(1042,'wc_ast_status_label_font_color','#fff','yes'),(1043,'wc_ast_status_partial_shipped','1','yes'),(1044,'wc_ast_status_partial_shipped_label_color','#1e73be','yes'),(1045,'wc_ast_status_partial_shipped_label_font_color','#fff','yes'),(1046,'customizer_partial_shipped_order_settings_enabled','','yes'),(1047,'woocommerce_customer_partial_shipped_order_settings','a:1:{s:7:\"enabled\";s:2:\"no\";}','yes'),(1048,'wcast_enable_partial_shipped_email','0','yes'),(1063,'trackship_trigger_order_statuses','a:1:{i:0;s:9:\"completed\";}','yes'),(1064,'trackship_db','1.13','yes'),(1065,'shipment_email_settings','a:4:{s:12:\"border_color\";s:7:\"#cccccc\";s:8:\"bg_color\";s:7:\"#fafafa\";s:10:\"font_color\";s:4:\"#333\";s:20:\"tracking_page_layout\";s:4:\"#333\";}','yes'),(1066,'enable_notification_for_amazon_order','1','yes'),(1070,'wc_ast_api_key','628734b70934e910d3cdf1185f0eb933','yes'),(1072,'trackers_balance','50','yes'),(1073,'wc_ast_trackship_page_id','27','yes'),(1074,'wc_advanced_shipment_tracking_ts_page','1.0','yes'),(1075,'user_plan','Free 50','yes'),(1077,'late_shipments_email_settings','a:1:{s:25:\"wcast_late_shipments_days\";s:1:\"7\";}','yes'),(1078,'wc_ast_show_shipment_status_filter','0','yes'),(1079,'enable_email_widget','1','yes'),(1094,'wc_ast_use_tracking_page','1','yes'),(1095,'wc_ast_trackship_other_page','','yes'),(1127,'_transient_orders-transient-version','1669910708','yes'),(1201,'woocommerce_new_order_settings','a:6:{s:7:\"enabled\";s:3:\"yes\";s:9:\"recipient\";s:23:\"kotaro21.mail@gmail.com\";s:7:\"subject\";s:44:\"{site_title} : New order {order_number} - NL\";s:7:\"heading\";s:42:\"New {site_title} NL order: {order_number}.\";s:18:\"additional_content\";s:28:\"Congratulations on the sale.\";s:10:\"email_type\";s:4:\"html\";}','yes'),(1202,'woocommerce_cancelled_order_settings','a:6:{s:7:\"enabled\";s:2:\"no\";s:9:\"recipient\";s:19:\"example@example.com\";s:7:\"subject\";s:0:\"\";s:7:\"heading\";s:0:\"\";s:18:\"additional_content\";s:25:\"Merci de votre attention.\";s:10:\"email_type\";s:4:\"html\";}','yes'),(1232,'theme_mods_flatsome-child','a:288:{i:0;b:0;s:17:\"flatsome_fallback\";i:1;s:20:\"topbar_elements_left\";a:0:{}s:21:\"topbar_elements_right\";a:1:{i:0;s:7:\"nav-top\";}s:20:\"header_elements_left\";a:1:{i:0;s:11:\"search-form\";}s:21:\"header_elements_right\";a:1:{i:0;s:4:\"cart\";}s:27:\"header_elements_bottom_left\";a:0:{}s:29:\"header_elements_bottom_center\";a:1:{i:0;s:3:\"nav\";}s:28:\"header_elements_bottom_right\";a:0:{}s:27:\"header_mobile_elements_left\";a:2:{i:0;s:9:\"menu-icon\";i:1;s:6:\"search\";}s:28:\"header_mobile_elements_right\";a:1:{i:0;s:4:\"cart\";}s:26:\"header_mobile_elements_top\";a:1:{i:0;s:4:\"html\";}s:14:\"mobile_sidebar\";a:3:{i:0;s:3:\"nav\";i:1;s:9:\"divider_3\";i:2;s:7:\"account\";}s:14:\"product_layout\";s:10:\"no-sidebar\";s:23:\"payment_icons_placement\";a:2:{i:0;s:6:\"footer\";i:1;s:4:\"cart\";}s:14:\"follow_twitter\";s:10:\"http://url\";s:15:\"follow_facebook\";s:10:\"http://url\";s:16:\"follow_instagram\";s:10:\"http://url\";s:12:\"follow_email\";s:10:\"your@email\";s:16:\"flatsome_version\";i:3;s:24:\"portfolio_archive_filter\";s:4:\"left\";s:13:\"type_headings\";a:5:{s:11:\"font-family\";s:115:\"-apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif\";s:7:\"variant\";s:3:\"700\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";i:700;s:10:\"font-style\";s:6:\"normal\";}s:10:\"type_texts\";a:5:{s:11:\"font-family\";s:115:\"-apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif\";s:7:\"variant\";s:7:\"regular\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";i:400;s:10:\"font-style\";s:6:\"normal\";}s:8:\"type_nav\";a:5:{s:11:\"font-family\";s:115:\"-apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif\";s:7:\"variant\";s:3:\"700\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";i:700;s:10:\"font-style\";s:6:\"normal\";}s:8:\"type_alt\";a:2:{s:11:\"font-family\";s:14:\"Dancing Script\";s:7:\"variant\";s:7:\"regular\";}s:14:\"pages_template\";s:7:\"default\";s:11:\"site_loader\";s:0:\"\";s:19:\"flatsome_db_version\";s:6:\"3.18.1\";s:18:\"nav_menu_locations\";a:6:{s:14:\"primary_mobile\";i:0;s:6:\"footer\";i:0;s:11:\"top_bar_nav\";i:91;s:10:\"my_account\";i:0;s:8:\"vertical\";i:0;s:7:\"primary\";i:0;}s:9:\"smof_init\";s:31:\"Thu, 24 Nov 2022 21:42:49 +0000\";s:19:\"html_scripts_header\";s:0:\"\";s:19:\"html_scripts_footer\";s:0:\"\";s:23:\"html_scripts_after_body\";s:0:\"\";s:24:\"html_scripts_before_body\";s:0:\"\";s:15:\"html_custom_css\";s:1174:\".woocommerce .out-of-stock-label {\n    background-color: #df4c18 !important; \n    color: #ffffff !important; \n}\nb, strong {\n    font-weight: inherit;\n    /* Commentez ou supprimez cette ligne pour rendre le texte moins épais. */\n    /* font-weight: bolder; */\n}\n\n.custom-guarantees strong {\n    /* Police et taille du titre des garanties */\n    font-size: 18px;\n    color: #555555;\n    margin-bottom: 10px;\n    display: block;\n}\n\n.custom-guarantees ul {\n    list-style-type: none;\n    padding-left: 0;\n    margin: 0;\n    /* background-color: #f5f5f5; Retiré pour laisser le fond blanc */\n}\n\n.custom-guarantees li {\n    padding-left: 1em;\n    text-indent: -1em;\n    margin-bottom: 5px;\n    position: relative;\n    font-size: 16px; /* Ajustez selon la taille de texte désirée */\n    color: #777777; /* Ajustez selon la couleur de texte désirée */\n}\n\n.custom-guarantees li::before {\n    content: \'•\'; /* Utilisez le caractère de puce désiré */\n    position: absolute;\n    left: 0;\n    top: 50%;\n    transform: translateY(-50%);\n    font-size: 20px; /* Taille de la puce */\n    color: #777777; /* Couleur de la puce, ajustez selon vos besoins */\n    line-height: 1;\n}\";s:22:\"html_custom_css_tablet\";s:0:\"\";s:22:\"html_custom_css_mobile\";s:0:\"\";s:17:\"perf_instant_page\";i:0;s:21:\"lazy_load_backgrounds\";i:1;s:16:\"lazy_load_images\";s:1:\"1\";s:26:\"flatsome_disable_style_css\";i:0;s:13:\"disable_emoji\";i:0;s:16:\"disable_blockcss\";i:0;s:14:\"jquery_migrate\";i:0;s:17:\"site_loader_color\";s:5:\"light\";s:14:\"site_loader_bg\";s:0:\"\";s:11:\"live_search\";i:1;s:18:\"search_placeholder\";s:14:\"Zoeken naar...\";s:21:\"search_result_latency\";s:1:\"0\";s:13:\"search_result\";i:1;s:19:\"search_result_style\";s:6:\"slider\";s:24:\"search_products_order_by\";s:9:\"relevance\";s:13:\"search_by_sku\";i:0;s:21:\"search_by_product_tag\";i:0;s:14:\"google_map_api\";s:0:\"\";s:16:\"maintenance_mode\";i:0;s:29:\"maintenance_mode_admin_notice\";i:1;s:21:\"maintenance_mode_page\";i:0;s:21:\"maintenance_mode_text\";s:24:\"Please check back soon..\";s:9:\"404_block\";i:0;s:8:\"swatches\";s:1:\"1\";s:27:\"additional_variation_images\";i:0;s:15:\"disable_reviews\";i:0;s:27:\"product_gallery_woocommerce\";i:0;s:14:\"html_shop_page\";s:0:\"\";s:9:\"tab_title\";s:0:\"\";s:11:\"tab_content\";s:0:\"\";s:23:\"html_before_add_to_cart\";s:1:\" \";s:22:\"html_after_add_to_cart\";s:224:\"<div class=\"custom-guarantees\">\n    <strong>Onze garanties:</strong>\n    <ul>\n        <li>14 dagen geld terug garantie</li>\n        <li>Levering met tracking</li>\n        <li>Responsieve klantenservice </li>\n    </ul>\n</div>\";s:14:\"html_thank_you\";s:0:\"\";s:12:\"catalog_mode\";i:0;s:19:\"catalog_mode_prices\";i:0;s:23:\"catalog_mode_sale_badge\";i:0;s:19:\"catalog_mode_header\";s:0:\"\";s:20:\"catalog_mode_product\";s:0:\"\";s:21:\"catalog_mode_lightbox\";s:0:\"\";s:27:\"infinite_scroll_loader_type\";s:7:\"spinner\";s:26:\"infinite_scroll_loader_img\";s:0:\"\";s:7:\"backups\";N;s:16:\"activated_before\";b:1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1669326175;s:4:\"data\";a:6:{s:19:\"wp_inactive_widgets\";a:0:{}s:12:\"sidebar-main\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:16:\"sidebar-footer-1\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}s:16:\"sidebar-footer-2\";a:0:{}s:12:\"shop-sidebar\";a:0:{}s:15:\"product-sidebar\";a:0:{}}}s:18:\"custom_css_post_id\";i:588;s:9:\"site_logo\";i:364;s:10:\"logo_width\";s:3:\"209\";s:16:\"products_pr_page\";s:2:\"20\";s:25:\"category_row_count_mobile\";s:1:\"2\";s:19:\"category_show_title\";b:1;s:14:\"color_checkout\";s:7:\"#df4c18\";s:17:\"facebook_accounts\";a:1:{i:0;s:1:\"0\";}s:12:\"fl_portfolio\";s:1:\"1\";s:15:\"parallax_mobile\";s:1:\"0\";s:15:\"flatsome_studio\";s:1:\"1\";s:15:\"release_channel\";s:6:\"stable\";s:18:\"wpseo_primary_term\";s:1:\"0\";s:37:\"wpseo_manages_product_layout_priority\";s:1:\"0\";s:16:\"wpseo_breadcrumb\";s:1:\"0\";s:28:\"wpseo_breadcrumb_remove_last\";s:1:\"1\";s:16:\"footer_left_text\";s:57:\"Copyright [ux_current_year] © <strong>Teng Shop</strong>\";s:13:\"payment_icons\";a:6:{i:0;s:4:\"visa\";i:1;s:6:\"stripe\";i:2;s:10:\"mastercard\";i:3;s:8:\"applepay\";i:4;s:9:\"googlepay\";i:5;s:6:\"paypal\";}s:10:\"site_width\";s:4:\"1500\";s:12:\"footer_block\";s:16:\"wonderful-footer\";s:13:\"logo_position\";s:6:\"center\";s:17:\"search_icon_style\";s:7:\"outline\";s:24:\"header_search_form_style\";s:4:\"flat\";s:12:\"logo_padding\";s:1:\"0\";s:22:\"topbar_elements_center\";a:1:{i:0;s:4:\"html\";}s:11:\"topbar_left\";s:69:\"<strong class=\"uppercase\">Gratis verzending vanaf 70€ 🎁</strong>\";s:13:\"header_height\";s:2:\"83\";s:17:\"dropdown_nav_size\";s:3:\"100\";s:13:\"dropdown_text\";s:5:\"light\";s:11:\"preset_demo\";s:15:\"header-cart-top\";s:29:\"header_mobile_elements_bottom\";a:0:{}s:11:\"topbar_show\";b:1;s:17:\"header_top_height\";s:2:\"33\";s:12:\"topbar_color\";s:4:\"dark\";s:9:\"topbar_bg\";s:7:\"#df4c18\";s:13:\"nav_style_top\";s:7:\"divided\";s:12:\"header_width\";s:9:\"container\";s:12:\"header_color\";s:5:\"light\";s:9:\"header_bg\";s:21:\"rgba(255,255,255,0.9)\";s:20:\"header_bg_img_repeat\";s:8:\"repeat-x\";s:17:\"box_shadow_header\";b:0;s:9:\"nav_style\";s:0:\"\";s:8:\"nav_size\";s:0:\"\";s:13:\"nav_uppercase\";b:1;s:14:\"type_nav_color\";s:0:\"\";s:20:\"type_nav_color_hover\";s:0:\"\";s:25:\"header_height_transparent\";s:2:\"30\";s:21:\"header_bg_transparent\";s:0:\"\";s:27:\"header_bg_transparent_shade\";b:0;s:20:\"header_bottom_height\";s:2:\"10\";s:15:\"nav_position_bg\";s:7:\"#f1f1f1\";s:16:\"nav_style_bottom\";s:0:\"\";s:15:\"nav_size_bottom\";s:0:\"\";s:20:\"nav_uppercase_bottom\";b:1;s:18:\"nav_position_color\";s:5:\"light\";s:21:\"type_nav_bottom_color\";s:7:\"#000000\";s:27:\"type_nav_bottom_color_hover\";s:7:\"#df4c18\";s:19:\"header_search_style\";s:8:\"dropdown\";s:19:\"header_search_width\";s:2:\"60\";s:15:\"cart_icon_style\";s:10:\"fill-round\";s:24:\"header_search_categories\";b:0;s:8:\"nav_push\";s:1:\"0\";s:17:\"nav_height_bottom\";s:2:\"34\";s:14:\"nav_height_top\";s:2:\"16\";s:11:\"dropdown_bg\";s:7:\"#ffffff\";s:15:\"dropdown_border\";s:7:\"#ffffff\";s:15:\"dropdown_shadow\";b:1;s:23:\"dropdown_border_enabled\";b:0;s:14:\"dropdown_arrow\";b:1;s:14:\"dropdown_style\";s:6:\"simple\";s:19:\"dropdown_text_style\";s:6:\"simple\";s:17:\"nav_top_uppercase\";b:0;s:20:\"nav_top_body_overlay\";b:0;s:18:\"type_nav_top_color\";s:0:\"\";s:24:\"type_nav_top_color_hover\";s:0:\"\";s:21:\"header_button_1_depth\";s:1:\"0\";s:27:\"header_button_1_depth_hover\";s:1:\"0\";s:17:\"header_cart_total\";b:1;s:17:\"header_cart_title\";b:1;s:13:\"contact_phone\";s:0:\"\";s:13:\"contact_email\";s:0:\"\";s:13:\"contact_hours\";s:0:\"\";s:26:\"text_transform_breadcrumbs\";s:4:\"none\";s:16:\"type_size_mobile\";s:3:\"100\";s:29:\"text_transform_section_titles\";s:0:\"\";s:13:\"color_primary\";s:7:\"#df4c18\";s:15:\"color_secondary\";s:7:\"#000000\";s:11:\"color_links\";s:7:\"#df4c18\";s:19:\"type_headings_color\";s:7:\"#555555\";s:11:\"color_texts\";s:7:\"#777777\";s:19:\"color_regular_price\";s:0:\"\";s:16:\"color_sale_price\";s:0:\"\";s:18:\"color_widget_links\";s:0:\"\";s:25:\"category_row_count_tablet\";s:1:\"4\";s:15:\"category_shadow\";s:1:\"0\";s:10:\"grid_style\";s:5:\"grid2\";s:21:\"category_shadow_hover\";s:1:\"0\";s:20:\"product_box_category\";b:0;s:24:\"checkout_floating_labels\";b:0;s:27:\"checkout_fields_email_first\";b:1;s:23:\"checkout_sticky_sidebar\";b:0;s:29:\"checkout_terms_and_conditions\";s:0:\"\";s:37:\"terms_and_conditions_lightbox_buttons\";b:1;s:17:\"cart_auto_refresh\";b:1;s:18:\"cart_estimate_text\";b:0;s:17:\"back_to_top_shape\";s:6:\"circle\";s:18:\"back_to_top_mobile\";b:1;s:13:\"default_title\";b:0;s:16:\"page_top_excerpt\";b:0;s:12:\"social_icons\";a:8:{i:0;s:8:\"facebook\";i:1;s:8:\"linkedin\";i:2;s:7:\"twitter\";i:3;s:5:\"email\";i:4;s:9:\"pinterest\";i:5;s:6:\"tumblr\";i:6;s:8:\"telegram\";i:7;s:8:\"whatsapp\";}s:13:\"cookie_notice\";b:0;s:19:\"privacy_policy_page\";s:1:\"3\";s:26:\"cookie_notice_button_style\";s:0:\"\";s:10:\"nav_height\";s:2:\"16\";s:13:\"topbar_sticky\";b:1;s:20:\"header_height_sticky\";s:2:\"70\";s:19:\"sticky_logo_padding\";s:1:\"0\";s:17:\"nav_height_sticky\";s:2:\"50\";s:15:\"breadcrumb_size\";s:6:\"medium\";s:15:\"breadcrumb_case\";s:9:\"uppercase\";s:19:\"product_sticky_cart\";b:1;s:21:\"product_next_prev_nav\";b:0;s:17:\"product_info_meta\";b:0;s:18:\"product_info_share\";b:0;s:25:\"product_offcanvas_sidebar\";b:0;s:12:\"product_zoom\";b:0;s:21:\"product_title_divider\";b:1;s:17:\"product_info_form\";s:4:\"flat\";s:15:\"swatches_layout\";s:7:\"stacked\";s:20:\"max_related_products\";s:1:\"4\";s:27:\"category_header_transparent\";b:0;s:23:\"category_sticky_sidebar\";b:0;s:18:\"category_row_count\";s:1:\"5\";s:25:\"short_description_in_grid\";b:0;s:18:\"disable_quick_view\";b:1;s:20:\"equalize_product_box\";b:1;s:12:\"bubble_style\";s:6:\"style1\";s:22:\"sale_bubble_percentage\";b:1;s:15:\"breadcrumb_home\";b:1;s:9:\"cat_style\";s:5:\"badge\";s:14:\"header_divider\";b:1;s:16:\"nav_body_overlay\";b:0;s:13:\"header_sticky\";b:1;s:16:\"bottombar_sticky\";b:1;s:13:\"wishlist_icon\";s:5:\"heart\";s:19:\"wishlist_icon_style\";s:0:\"\";s:14:\"wishlist_title\";b:1;s:11:\"color_alert\";s:7:\"#b20000\";s:17:\"flatsome_lightbox\";b:0;s:19:\"category_show_count\";b:0;s:11:\"sale_bubble\";b:1;s:19:\"product_image_width\";s:1:\"5\";s:19:\"product_image_style\";s:8:\"vertical\";s:16:\"product_lightbox\";s:8:\"flatsome\";s:18:\"product_info_align\";s:4:\"left\";s:16:\"swatches_tooltip\";b:0;s:15:\"product_display\";s:9:\"line-grow\";s:18:\"product_tabs_align\";s:4:\"left\";s:14:\"product_upsell\";s:7:\"sidebar\";s:30:\"swatches_out_of_stock_inactive\";b:0;s:14:\"product_header\";s:0:\"\";s:10:\"blog_badge\";b:0;s:17:\"blog_show_excerpt\";b:1;s:23:\"blog_posts_header_style\";s:6:\"normal\";s:18:\"blog_archive_title\";b:0;s:15:\"blog_author_box\";b:0;s:25:\"blog_single_next_prev_nav\";b:0;s:20:\"blog_featured_height\";s:3:\"500\";s:19:\"blog_sticky_sidebar\";b:0;s:15:\"blog_post_style\";s:7:\"default\";s:27:\"blog_single_header_category\";b:0;s:23:\"blog_single_header_meta\";b:0;s:26:\"blog_single_featured_image\";b:1;s:23:\"blog_single_footer_meta\";b:0;s:10:\"blog_style\";s:6:\"normal\";s:16:\"blog_posts_depth\";s:1:\"0\";s:22:\"blog_posts_depth_hover\";s:1:\"0\";s:19:\"blog_excerpt_suffix\";s:12:\"Lees meer op\";s:38:\"header_nav_vertical_fly_out_nav_height\";s:1:\"0\";s:23:\"header_newsletter_title\";s:29:\"Aanmelden voor de nieuwsbrief\";s:27:\"header_newsletter_sub_title\";s:134:\"Meld je aan voor onze nieuwsbrief om informatie te ontvangen over verkopen en nieuwe producten. Voeg hier tekst toe of verwijder deze.\";s:23:\"header_newsletter_label\";s:13:\"Nieuwsbrieven\";s:9:\"type_size\";s:3:\"100\";s:16:\"related_products\";s:4:\"grid\";s:16:\"site_logo_slogan\";b:0;s:13:\"contact_style\";s:4:\"left\";s:14:\"top_right_text\";s:0:\"\";s:20:\"header_account_title\";b:1;s:23:\"header_account_register\";b:0;s:12:\"topbar_right\";s:0:\"\";s:22:\"header_button_1_radius\";s:4:\"99px\";s:13:\"disable_fonts\";b:1;s:22:\"text_transform_buttons\";s:0:\"\";s:23:\"swatches_color_selected\";s:7:\"#d26e4b\";s:16:\"category_sidebar\";s:4:\"none\";s:19:\"category_grid_style\";s:4:\"grid\";s:27:\"category_force_image_height\";b:0;s:21:\"category_image_height\";s:2:\"62\";s:15:\"checkout_layout\";s:0:\"\";s:19:\"cart_sticky_sidebar\";b:0;s:13:\"product_hover\";s:12:\"fade_in_back\";s:17:\"add_to_cart_style\";s:7:\"outline\";s:24:\"product_box_review_count\";b:0;s:19:\"footer_bottom_color\";s:0:\"\";s:17:\"header_cart_style\";s:8:\"dropdown\";s:10:\"color_sale\";s:7:\"#df4c18\";s:10:\"content_bg\";s:0:\"\";}','yes'),(1235,'woocommerce_thumbnail_cropping','uncropped','yes'),(1236,'woocommerce_thumbnail_cropping_custom_width','5','yes'),(1237,'woocommerce_thumbnail_cropping_custom_height','6','yes'),(1257,'wpcf7','a:3:{s:7:\"version\";s:5:\"5.8.6\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1695997115;s:7:\"version\";s:5:\"5.8.1\";s:11:\"count_valid\";i:2;s:13:\"count_invalid\";i:0;}s:9:\"recaptcha\";N;}','yes'),(1265,'yit_recently_activated','a:1:{i:0;s:34:\"yith-woocommerce-wishlist/init.php\";}','yes'),(1268,'yith_wcwl_wishlist_page_id','33','yes'),(1269,'yith_wcwl_version','3.15.0','yes'),(1270,'yith_wcwl_db_version','3.0.0','yes'),(1271,'yith_wcwl_ajax_enable','no','yes'),(1272,'yith_wcwl_after_add_to_wishlist_behaviour','view','yes'),(1273,'yith_wcwl_show_on_loop','no','yes'),(1274,'yith_wcwl_loop_position','after_add_to_cart','yes'),(1275,'yith_wcwl_button_position','add-to-cart','yes'),(1276,'yith_wcwl_add_to_wishlist_text','Add to Wishlist','yes'),(1277,'yith_wcwl_product_added_text','Product added!','yes'),(1278,'yith_wcwl_browse_wishlist_text','See the wish list','yes'),(1279,'yith_wcwl_already_in_wishlist_text','The product is already in your wishlist!','yes'),(1280,'yith_wcwl_add_to_wishlist_style','link','yes'),(1281,'yith_wcwl_rounded_corners_radius','16','yes'),(1282,'yith_wcwl_add_to_wishlist_icon','fa-heart-o','yes'),(1283,'yith_wcwl_add_to_wishlist_custom_icon','','yes'),(1284,'yith_wcwl_added_to_wishlist_icon','fa-heart','yes'),(1285,'yith_wcwl_added_to_wishlist_custom_icon','','yes'),(1286,'yith_wcwl_custom_css','','yes'),(1287,'yith_wcwl_variation_show','no','yes'),(1288,'yith_wcwl_price_show','yes','yes'),(1289,'yith_wcwl_stock_show','yes','yes'),(1290,'yith_wcwl_show_dateadded','no','yes'),(1291,'yith_wcwl_add_to_cart_show','yes','yes'),(1292,'yith_wcwl_show_remove','yes','yes'),(1293,'yith_wcwl_repeat_remove_button','no','yes'),(1294,'yith_wcwl_redirect_cart','no','yes'),(1295,'yith_wcwl_remove_after_add_to_cart','yes','yes'),(1296,'yith_wcwl_enable_share','yes','yes'),(1297,'yith_wcwl_share_fb','yes','yes'),(1298,'yith_wcwl_share_twitter','yes','yes'),(1299,'yith_wcwl_share_pinterest','yes','yes'),(1300,'yith_wcwl_share_email','yes','yes'),(1301,'yith_wcwl_share_whatsapp','yes','yes'),(1302,'yith_wcwl_share_url','no','yes'),(1303,'yith_wcwl_socials_title','My wish list on Teng Shop','yes'),(1304,'yith_wcwl_socials_text','','yes'),(1305,'yith_wcwl_socials_image_url','','yes'),(1306,'yith_wcwl_wishlist_title','My wish list','yes'),(1307,'yith_wcwl_add_to_cart_text','Add to cart','yes'),(1308,'yith_wcwl_add_to_cart_style','link','yes'),(1309,'yith_wcwl_add_to_cart_rounded_corners_radius','16','yes'),(1310,'yith_wcwl_add_to_cart_icon','fa-shopping-cart','yes'),(1311,'yith_wcwl_add_to_cart_custom_icon','','yes'),(1312,'yith_wcwl_color_headers_background','#F4F4F4','yes'),(1313,'yith_wcwl_fb_button_icon','fa-facebook','yes'),(1314,'yith_wcwl_fb_button_custom_icon','','yes'),(1315,'yith_wcwl_tw_button_icon','fa-twitter','yes'),(1316,'yith_wcwl_tw_button_custom_icon','','yes'),(1317,'yith_wcwl_pr_button_icon','fa-pinterest','yes'),(1318,'yith_wcwl_pr_button_custom_icon','','yes'),(1319,'yith_wcwl_em_button_icon','fa-envelope-o','yes'),(1320,'yith_wcwl_em_button_custom_icon','','yes'),(1321,'yith_wcwl_wa_button_icon','fa-whatsapp','yes'),(1322,'yith_wcwl_wa_button_custom_icon','','yes'),(1323,'yit_plugin_fw_panel_wc_default_options_set','a:1:{s:15:\"yith_wcwl_panel\";b:1;}','yes'),(1349,'bodhi_svgs_plugin_version','2.5.5','yes'),(1350,'bodhi_svgs_settings','a:4:{s:22:\"sanitize_svg_front_end\";s:2:\"on\";s:8:\"restrict\";a:1:{i:0;s:13:\"administrator\";}s:12:\"sanitize_svg\";s:2:\"on\";s:24:\"sanitize_on_upload_roles\";a:2:{i:0;s:13:\"administrator\";i:1;s:6:\"editor\";}}','yes'),(1485,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(1790,'woocommerce_marketplace_suggestions','a:2:{s:11:\"suggestions\";a:28:{i:0;a:4:{s:4:\"slug\";s:28:\"product-edit-meta-tab-header\";s:7:\"context\";s:28:\"product-edit-meta-tab-header\";s:5:\"title\";s:22:\"Recommended extensions\";s:13:\"allow-dismiss\";b:0;}i:1;a:6:{s:4:\"slug\";s:39:\"product-edit-meta-tab-footer-browse-all\";s:7:\"context\";s:28:\"product-edit-meta-tab-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:2;a:9:{s:4:\"slug\";s:46:\"product-edit-mailchimp-woocommerce-memberships\";s:7:\"product\";s:33:\"woocommerce-memberships-mailchimp\";s:14:\"show-if-active\";a:1:{i:0;s:23:\"woocommerce-memberships\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:116:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/mailchimp-for-memberships.svg\";s:5:\"title\";s:25:\"Mailchimp for Memberships\";s:4:\"copy\";s:79:\"Completely automate your email lists by syncing membership changes to Mailchimp\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:67:\"https://woocommerce.com/products/mailchimp-woocommerce-memberships/\";}i:3;a:9:{s:4:\"slug\";s:19:\"product-edit-addons\";s:7:\"product\";s:26:\"woocommerce-product-addons\";s:14:\"show-if-active\";a:2:{i:0;s:25:\"woocommerce-subscriptions\";i:1;s:20:\"woocommerce-bookings\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-add-ons.svg\";s:5:\"title\";s:15:\"Product Add-Ons\";s:4:\"copy\";s:93:\"Offer add-ons like gift wrapping, special messages or other special options for your products\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-add-ons/\";}i:4;a:9:{s:4:\"slug\";s:46:\"product-edit-woocommerce-subscriptions-gifting\";s:7:\"product\";s:33:\"woocommerce-subscriptions-gifting\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:116:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/gifting-for-subscriptions.svg\";s:5:\"title\";s:25:\"Gifting for Subscriptions\";s:4:\"copy\";s:70:\"Let customers buy subscriptions for others - they\'re the ultimate gift\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:67:\"https://woocommerce.com/products/woocommerce-subscriptions-gifting/\";}i:5;a:9:{s:4:\"slug\";s:42:\"product-edit-teams-woocommerce-memberships\";s:7:\"product\";s:33:\"woocommerce-memberships-for-teams\";s:14:\"show-if-active\";a:1:{i:0;s:23:\"woocommerce-memberships\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:112:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/teams-for-memberships.svg\";s:5:\"title\";s:21:\"Teams for Memberships\";s:4:\"copy\";s:123:\"Adds B2B functionality to WooCommerce Memberships, allowing sites to sell team, group, corporate, or family member accounts\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://woocommerce.com/products/teams-woocommerce-memberships/\";}i:6;a:8:{s:4:\"slug\";s:29:\"product-edit-variation-images\";s:7:\"product\";s:39:\"woocommerce-additional-variation-images\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:118:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/additional-variation-images.svg\";s:5:\"title\";s:27:\"Additional Variation Images\";s:4:\"copy\";s:72:\"Showcase your products in the best light with a image for each variation\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:73:\"https://woocommerce.com/products/woocommerce-additional-variation-images/\";}i:7;a:9:{s:4:\"slug\";s:47:\"product-edit-woocommerce-subscription-downloads\";s:7:\"product\";s:34:\"woocommerce-subscription-downloads\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscription-downloads.svg\";s:5:\"title\";s:22:\"Subscription Downloads\";s:4:\"copy\";s:57:\"Give customers special downloads with their subscriptions\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:68:\"https://woocommerce.com/products/woocommerce-subscription-downloads/\";}i:8;a:8:{s:4:\"slug\";s:31:\"product-edit-min-max-quantities\";s:7:\"product\";s:30:\"woocommerce-min-max-quantities\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:109:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/min-max-quantities.svg\";s:5:\"title\";s:18:\"Min/Max Quantities\";s:4:\"copy\";s:81:\"Specify minimum and maximum allowed product quantities for orders to be completed\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:52:\"https://woocommerce.com/products/min-max-quantities/\";}i:9;a:8:{s:4:\"slug\";s:28:\"product-edit-name-your-price\";s:7:\"product\";s:27:\"woocommerce-name-your-price\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/name-your-price.svg\";s:5:\"title\";s:15:\"Name Your Price\";s:4:\"copy\";s:70:\"Let customers pay what they want - useful for donations, tips and more\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/name-your-price/\";}i:10;a:8:{s:4:\"slug\";s:42:\"product-edit-woocommerce-one-page-checkout\";s:7:\"product\";s:29:\"woocommerce-one-page-checkout\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/one-page-checkout.svg\";s:5:\"title\";s:17:\"One Page Checkout\";s:4:\"copy\";s:92:\"Don\'t make customers click around - let them choose products, checkout & pay all on one page\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://woocommerce.com/products/woocommerce-one-page-checkout/\";}i:11;a:9:{s:4:\"slug\";s:24:\"product-edit-automatewoo\";s:7:\"product\";s:11:\"automatewoo\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscriptions.svg\";s:5:\"title\";s:23:\"Automate your marketing\";s:4:\"copy\";s:89:\"Win customers and keep them coming back with a nearly endless range of powerful workflows\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:45:\"https://woocommerce.com/products/automatewoo/\";}i:12;a:4:{s:4:\"slug\";s:19:\"orders-empty-header\";s:7:\"context\";s:24:\"orders-list-empty-header\";s:5:\"title\";s:20:\"Tools for your store\";s:13:\"allow-dismiss\";b:0;}i:13;a:6:{s:4:\"slug\";s:30:\"orders-empty-footer-browse-all\";s:7:\"context\";s:24:\"orders-list-empty-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:14;a:8:{s:4:\"slug\";s:19:\"orders-empty-wc-pay\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-payments\";s:4:\"icon\";s:111:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/woocommerce-payments.svg\";s:5:\"title\";s:20:\"WooCommerce Payments\";s:4:\"copy\";s:125:\"Securely accept payments and manage transactions directly from your WooCommerce dashboard – no setup costs or monthly fees.\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-payments/\";}i:15;a:8:{s:4:\"slug\";s:19:\"orders-empty-zapier\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:18:\"woocommerce-zapier\";s:4:\"icon\";s:97:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/zapier.svg\";s:5:\"title\";s:6:\"Zapier\";s:4:\"copy\";s:88:\"Save time and increase productivity by connecting your store to more than 1000+ services\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:52:\"https://woocommerce.com/products/woocommerce-zapier/\";}i:16;a:8:{s:4:\"slug\";s:30:\"orders-empty-shipment-tracking\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:29:\"woocommerce-shipment-tracking\";s:4:\"icon\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/shipment-tracking.svg\";s:5:\"title\";s:17:\"Shipment Tracking\";s:4:\"copy\";s:86:\"Let customers know when their orders will arrive by adding shipment tracking to emails\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:51:\"https://woocommerce.com/products/shipment-tracking/\";}i:17;a:8:{s:4:\"slug\";s:32:\"orders-empty-table-rate-shipping\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:31:\"woocommerce-table-rate-shipping\";s:4:\"icon\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/table-rate-shipping.svg\";s:5:\"title\";s:19:\"Table Rate Shipping\";s:4:\"copy\";s:122:\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:53:\"https://woocommerce.com/products/table-rate-shipping/\";}i:18;a:8:{s:4:\"slug\";s:40:\"orders-empty-shipping-carrier-extensions\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:4:\"icon\";s:118:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/shipping-carrier-extensions.svg\";s:5:\"title\";s:27:\"Shipping Carrier Extensions\";s:4:\"copy\";s:116:\"Show live rates from FedEx, UPS, USPS and more directly on your store - never under or overcharge for shipping again\";s:11:\"button-text\";s:13:\"Find Carriers\";s:8:\"promoted\";s:26:\"category-shipping-carriers\";s:3:\"url\";s:99:\"https://woocommerce.com/product-category/woocommerce-extensions/shipping-methods/shipping-carriers/\";}i:19;a:8:{s:4:\"slug\";s:32:\"orders-empty-google-product-feed\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:25:\"woocommerce-product-feeds\";s:4:\"icon\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/google-product-feed.svg\";s:5:\"title\";s:19:\"Google Product Feed\";s:4:\"copy\";s:76:\"Increase sales by letting customers find you when they\'re shopping on Google\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:53:\"https://woocommerce.com/products/google-product-feed/\";}i:20;a:4:{s:4:\"slug\";s:35:\"products-empty-header-product-types\";s:7:\"context\";s:26:\"products-list-empty-header\";s:5:\"title\";s:23:\"Other types of products\";s:13:\"allow-dismiss\";b:0;}i:21;a:6:{s:4:\"slug\";s:32:\"products-empty-footer-browse-all\";s:7:\"context\";s:26:\"products-list-empty-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:22;a:8:{s:4:\"slug\";s:30:\"products-empty-product-vendors\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:27:\"woocommerce-product-vendors\";s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-vendors.svg\";s:5:\"title\";s:15:\"Product Vendors\";s:4:\"copy\";s:47:\"Turn your store into a multi-vendor marketplace\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-vendors/\";}i:23;a:8:{s:4:\"slug\";s:26:\"products-empty-memberships\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:23:\"woocommerce-memberships\";s:4:\"icon\";s:102:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/memberships.svg\";s:5:\"title\";s:11:\"Memberships\";s:4:\"copy\";s:76:\"Give members access to restricted content or products, for a fee or for free\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:57:\"https://woocommerce.com/products/woocommerce-memberships/\";}i:24;a:9:{s:4:\"slug\";s:35:\"products-empty-woocommerce-deposits\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-deposits\";s:14:\"show-if-active\";a:1:{i:0;s:20:\"woocommerce-bookings\";}s:4:\"icon\";s:99:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/deposits.svg\";s:5:\"title\";s:8:\"Deposits\";s:4:\"copy\";s:75:\"Make it easier for customers to pay by offering a deposit or a payment plan\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-deposits/\";}i:25;a:8:{s:4:\"slug\";s:40:\"products-empty-woocommerce-subscriptions\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:25:\"woocommerce-subscriptions\";s:4:\"icon\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscriptions.svg\";s:5:\"title\";s:13:\"Subscriptions\";s:4:\"copy\";s:97:\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:59:\"https://woocommerce.com/products/woocommerce-subscriptions/\";}i:26;a:8:{s:4:\"slug\";s:35:\"products-empty-woocommerce-bookings\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-bookings\";s:4:\"icon\";s:99:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/bookings.svg\";s:5:\"title\";s:8:\"Bookings\";s:4:\"copy\";s:99:\"Allow customers to book appointments, make reservations or rent equipment without leaving your site\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-bookings/\";}i:27;a:8:{s:4:\"slug\";s:30:\"products-empty-product-bundles\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:27:\"woocommerce-product-bundles\";s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-bundles.svg\";s:5:\"title\";s:15:\"Product Bundles\";s:4:\"copy\";s:49:\"Offer customizable bundles and assembled products\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-bundles/\";}}s:7:\"updated\";i:1688501396;}','no'),(1999,'redirection_options','a:31:{s:7:\"support\";b:0;s:5:\"token\";s:32:\"1bb2205d26df1b12acc44f3339d781f8\";s:12:\"monitor_post\";i:0;s:13:\"monitor_types\";a:0:{}s:19:\"associated_redirect\";s:0:\"\";s:11:\"auto_target\";s:0:\"\";s:15:\"expire_redirect\";i:-1;s:10:\"expire_404\";i:-1;s:12:\"log_external\";b:0;s:10:\"log_header\";b:0;s:10:\"track_hits\";b:1;s:7:\"modules\";a:0:{}s:10:\"newsletter\";b:0;s:14:\"redirect_cache\";i:1;s:10:\"ip_logging\";i:0;s:13:\"last_group_id\";i:1;s:8:\"rest_api\";i:0;s:5:\"https\";b:0;s:7:\"headers\";a:0:{}s:8:\"database\";s:3:\"4.2\";s:8:\"relocate\";s:0:\"\";s:16:\"preferred_domain\";s:0:\"\";s:7:\"aliases\";a:0:{}s:10:\"permalinks\";a:0:{}s:9:\"cache_key\";i:0;s:13:\"plugin_update\";s:6:\"prompt\";s:13:\"update_notice\";i:0;s:10:\"flag_query\";s:5:\"exact\";s:9:\"flag_case\";b:1;s:13:\"flag_trailing\";b:1;s:10:\"flag_regex\";b:0;}','yes'),(2896,'yoast_migrations_free','a:1:{s:7:\"version\";s:4:\"21.5\";}','yes'),(2897,'wpseo','a:109:{s:8:\"tracking\";b:0;s:16:\"toggled_tracking\";b:0;s:22:\"license_server_version\";b:0;s:15:\"ms_defaults_set\";b:0;s:40:\"ignore_search_engines_discouraged_notice\";b:0;s:19:\"indexing_first_time\";b:0;s:16:\"indexing_started\";i:1670267121;s:15:\"indexing_reason\";s:23:\"home_url_option_changed\";s:29:\"indexables_indexing_completed\";b:1;s:13:\"index_now_key\";s:0:\"\";s:7:\"version\";s:4:\"21.5\";s:16:\"previous_version\";s:4:\"21.4\";s:20:\"disableadvanced_meta\";b:1;s:30:\"enable_headless_rest_endpoints\";b:1;s:17:\"ryte_indexability\";b:0;s:11:\"baiduverify\";s:0:\"\";s:12:\"googleverify\";s:0:\"\";s:8:\"msverify\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";s:9:\"site_type\";s:0:\"\";s:20:\"has_multiple_authors\";s:0:\"\";s:16:\"environment_type\";s:0:\"\";s:23:\"content_analysis_active\";b:1;s:23:\"keyword_analysis_active\";b:1;s:34:\"inclusive_language_analysis_active\";b:0;s:21:\"enable_admin_bar_menu\";b:1;s:26:\"enable_cornerstone_content\";b:1;s:18:\"enable_xml_sitemap\";b:1;s:24:\"enable_text_link_counter\";b:1;s:16:\"enable_index_now\";b:1;s:19:\"enable_ai_generator\";b:0;s:22:\"show_onboarding_notice\";b:1;s:18:\"first_activated_on\";i:1669845368;s:13:\"myyoast-oauth\";b:0;s:26:\"semrush_integration_active\";b:1;s:14:\"semrush_tokens\";a:6:{s:12:\"access_token\";s:40:\"it7XGHutoK3VVfV4UKz0plwV0Y5GrucFsWQLgRnd\";s:13:\"refresh_token\";s:40:\"JfQyev2bYzmTHmMuMEx56qtzhhQZRwtHPufG51N1\";s:7:\"expires\";i:1681499101;s:11:\"has_expired\";b:0;s:10:\"created_at\";i:1680894301;s:11:\"error_count\";i:0;}s:20:\"semrush_country_code\";s:2:\"us\";s:19:\"permalink_structure\";s:12:\"/%postname%/\";s:8:\"home_url\";s:33:\"https://www.nl.ecom-expansion.com\";s:18:\"dynamic_permalinks\";b:0;s:17:\"category_base_url\";s:0:\"\";s:12:\"tag_base_url\";s:0:\"\";s:21:\"custom_taxonomy_slugs\";a:10:{s:16:\"block_categories\";s:16:\"block_categories\";s:12:\"product_type\";s:12:\"product_type\";s:18:\"product_visibility\";s:18:\"product_visibility\";s:11:\"product_cat\";s:11:\"collections\";s:11:\"product_tag\";s:17:\"etiquette-produit\";s:22:\"product_shipping_class\";s:22:\"product_shipping_class\";s:8:\"pa_color\";s:8:\"pa_color\";s:7:\"pa_size\";s:7:\"pa_size\";s:22:\"featured_item_category\";s:22:\"featured_item_category\";s:17:\"featured_item_tag\";s:17:\"featured_item_tag\";}s:29:\"enable_enhanced_slack_sharing\";b:1;s:25:\"zapier_integration_active\";b:0;s:19:\"zapier_subscription\";a:0:{}s:14:\"zapier_api_key\";s:0:\"\";s:23:\"enable_metabox_insights\";b:1;s:23:\"enable_link_suggestions\";b:1;s:26:\"algolia_integration_active\";b:0;s:14:\"import_cursors\";a:0:{}s:13:\"workouts_data\";a:1:{s:13:\"configuration\";a:1:{s:13:\"finishedSteps\";a:0:{}}}s:28:\"configuration_finished_steps\";a:0:{}s:36:\"dismiss_configuration_workout_notice\";b:1;s:34:\"dismiss_premium_deactivated_notice\";b:0;s:19:\"importing_completed\";a:0:{}s:26:\"wincher_integration_active\";b:1;s:14:\"wincher_tokens\";a:0:{}s:36:\"wincher_automatically_add_keyphrases\";b:0;s:18:\"wincher_website_id\";s:0:\"\";s:28:\"wordproof_integration_active\";b:0;s:29:\"wordproof_integration_changed\";b:0;s:18:\"first_time_install\";b:1;s:34:\"should_redirect_after_install_free\";b:0;s:34:\"activation_redirect_timestamp_free\";i:1669845369;s:18:\"remove_feed_global\";b:0;s:27:\"remove_feed_global_comments\";b:0;s:25:\"remove_feed_post_comments\";b:0;s:19:\"remove_feed_authors\";b:0;s:22:\"remove_feed_categories\";b:0;s:16:\"remove_feed_tags\";b:0;s:29:\"remove_feed_custom_taxonomies\";b:0;s:22:\"remove_feed_post_types\";b:0;s:18:\"remove_feed_search\";b:0;s:21:\"remove_atom_rdf_feeds\";b:0;s:17:\"remove_shortlinks\";b:0;s:21:\"remove_rest_api_links\";b:0;s:20:\"remove_rsd_wlw_links\";b:0;s:19:\"remove_oembed_links\";b:0;s:16:\"remove_generator\";b:0;s:20:\"remove_emoji_scripts\";b:0;s:24:\"remove_powered_by_header\";b:0;s:22:\"remove_pingback_header\";b:0;s:28:\"clean_campaign_tracking_urls\";b:0;s:16:\"clean_permalinks\";b:0;s:32:\"clean_permalinks_extra_variables\";s:0:\"\";s:14:\"search_cleanup\";b:0;s:20:\"search_cleanup_emoji\";b:0;s:23:\"search_cleanup_patterns\";b:0;s:22:\"search_character_limit\";i:50;s:20:\"deny_search_crawling\";b:0;s:21:\"deny_wp_json_crawling\";b:0;s:20:\"deny_adsbot_crawling\";b:0;s:19:\"deny_ccbot_crawling\";b:0;s:29:\"deny_google_extended_crawling\";b:0;s:20:\"deny_gptbot_crawling\";b:0;s:27:\"redirect_search_pretty_urls\";b:0;s:29:\"least_readability_ignore_list\";a:0:{}s:27:\"least_seo_score_ignore_list\";a:0:{}s:23:\"most_linked_ignore_list\";a:0:{}s:24:\"least_linked_ignore_list\";a:0:{}s:28:\"indexables_page_reading_list\";a:5:{i:0;b:0;i:1;b:0;i:2;b:0;i:3;b:0;i:4;b:0;}s:25:\"indexables_overview_state\";s:21:\"dashboard-not-visited\";s:28:\"last_known_public_post_types\";a:5:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:6:\"blocks\";i:3;s:7:\"product\";i:4;s:13:\"featured_item\";}s:28:\"last_known_public_taxonomies\";a:8:{i:0;s:8:\"category\";i:1;s:8:\"post_tag\";i:2;s:11:\"post_format\";i:3;s:11:\"product_cat\";i:4;s:11:\"product_tag\";i:5;s:22:\"product_shipping_class\";i:6;s:22:\"featured_item_category\";i:7;s:17:\"featured_item_tag\";}s:23:\"last_known_no_unindexed\";a:6:{s:40:\"wpseo_total_unindexed_post_type_archives\";i:1699289438;s:35:\"wpseo_total_unindexed_general_items\";i:1699289438;s:31:\"wpseo_unindexed_post_link_count\";i:1699289438;s:31:\"wpseo_unindexed_term_link_count\";i:1699289438;s:27:\"wpseo_total_unindexed_posts\";i:1699289748;s:27:\"wpseo_total_unindexed_terms\";i:1699289748;}s:14:\"new_post_types\";a:0:{}s:14:\"new_taxonomies\";a:0:{}s:34:\"show_new_content_type_notification\";b:0;}','no'),(2898,'wpseo_titles','a:211:{s:17:\"forcerewritetitle\";b:0;s:9:\"separator\";s:7:\"sc-pipe\";s:16:\"title-home-wpseo\";s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";s:18:\"title-author-wpseo\";s:50:\"%%name%%, auteur/autrice sur %%sitename%% %%page%%\";s:19:\"title-archive-wpseo\";s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";s:18:\"title-search-wpseo\";s:65:\"Vous avez cherché %%searchphrase%% %%page%% %%sep%% %%sitename%%\";s:15:\"title-404-wpseo\";s:38:\"Page non trouvée %%sep%% %%sitename%%\";s:25:\"social-title-author-wpseo\";s:8:\"%%name%%\";s:26:\"social-title-archive-wpseo\";s:8:\"%%date%%\";s:31:\"social-description-author-wpseo\";s:0:\"\";s:32:\"social-description-archive-wpseo\";s:0:\"\";s:29:\"social-image-url-author-wpseo\";s:0:\"\";s:30:\"social-image-url-archive-wpseo\";s:0:\"\";s:28:\"social-image-id-author-wpseo\";i:0;s:29:\"social-image-id-archive-wpseo\";i:0;s:19:\"metadesc-home-wpseo\";s:0:\"\";s:21:\"metadesc-author-wpseo\";s:0:\"\";s:22:\"metadesc-archive-wpseo\";s:0:\"\";s:9:\"rssbefore\";s:0:\"\";s:8:\"rssafter\";s:64:\"L’article %%POSTLINK%% est apparu en premier sur %%BLOGLINK%%.\";s:20:\"noindex-author-wpseo\";b:0;s:28:\"noindex-author-noposts-wpseo\";b:1;s:21:\"noindex-archive-wpseo\";b:1;s:14:\"disable-author\";b:0;s:12:\"disable-date\";b:0;s:19:\"disable-post_format\";b:0;s:18:\"disable-attachment\";b:1;s:20:\"breadcrumbs-404crumb\";s:29:\"Fel 404 : Sidan hittades inte\";s:29:\"breadcrumbs-display-blog-page\";b:1;s:20:\"breadcrumbs-boldlast\";b:0;s:25:\"breadcrumbs-archiveprefix\";s:10:\"Arkiv för\";s:18:\"breadcrumbs-enable\";b:1;s:16:\"breadcrumbs-home\";s:3:\"Hem\";s:18:\"breadcrumbs-prefix\";s:0:\"\";s:24:\"breadcrumbs-searchprefix\";s:18:\"Du har sökt efter\";s:15:\"breadcrumbs-sep\";s:2:\"»\";s:12:\"website_name\";s:0:\"\";s:11:\"person_name\";s:0:\"\";s:11:\"person_logo\";s:0:\"\";s:22:\"alternate_website_name\";s:0:\"\";s:12:\"company_logo\";s:81:\"https://www.nl.ecom-expansion.com/wp-content/uploads/2022/12/teng-shop-v2-min.png\";s:12:\"company_name\";s:9:\"Teng Shop\";s:22:\"company_alternate_name\";s:0:\"\";s:17:\"company_or_person\";s:7:\"company\";s:25:\"company_or_person_user_id\";b:0;s:17:\"stripcategorybase\";b:0;s:26:\"open_graph_frontpage_title\";s:12:\"%%sitename%%\";s:25:\"open_graph_frontpage_desc\";s:0:\"\";s:26:\"open_graph_frontpage_image\";s:0:\"\";s:24:\"publishing_principles_id\";i:0;s:25:\"ownership_funding_info_id\";i:0;s:29:\"actionable_feedback_policy_id\";i:0;s:21:\"corrections_policy_id\";i:0;s:16:\"ethics_policy_id\";i:0;s:19:\"diversity_policy_id\";i:0;s:28:\"diversity_staffing_report_id\";i:0;s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:0:\"\";s:12:\"noindex-post\";b:0;s:23:\"display-metabox-pt-post\";b:1;s:23:\"post_types-post-maintax\";i:0;s:21:\"schema-page-type-post\";s:7:\"WebPage\";s:24:\"schema-article-type-post\";s:7:\"Article\";s:17:\"social-title-post\";s:9:\"%%title%%\";s:23:\"social-description-post\";s:0:\"\";s:21:\"social-image-url-post\";s:0:\"\";s:20:\"social-image-id-post\";i:0;s:10:\"title-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-page\";s:0:\"\";s:12:\"noindex-page\";b:0;s:23:\"display-metabox-pt-page\";b:1;s:23:\"post_types-page-maintax\";i:0;s:21:\"schema-page-type-page\";s:7:\"WebPage\";s:24:\"schema-article-type-page\";s:4:\"None\";s:17:\"social-title-page\";s:9:\"%%title%%\";s:23:\"social-description-page\";s:0:\"\";s:21:\"social-image-url-page\";s:0:\"\";s:20:\"social-image-id-page\";i:0;s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-attachment\";s:0:\"\";s:18:\"noindex-attachment\";b:0;s:29:\"display-metabox-pt-attachment\";b:1;s:29:\"post_types-attachment-maintax\";i:0;s:27:\"schema-page-type-attachment\";s:7:\"WebPage\";s:30:\"schema-article-type-attachment\";s:4:\"None\";s:18:\"title-tax-category\";s:57:\"Archives des %%term_title%% %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-category\";s:0:\"\";s:28:\"display-metabox-tax-category\";b:1;s:20:\"noindex-tax-category\";b:0;s:25:\"social-title-tax-category\";s:27:\"Archives des %%term_title%%\";s:31:\"social-description-tax-category\";s:0:\"\";s:29:\"social-image-url-tax-category\";s:0:\"\";s:28:\"social-image-id-tax-category\";i:0;s:26:\"taxonomy-category-ptparent\";i:0;s:18:\"title-tax-post_tag\";s:57:\"Archives des %%term_title%% %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-post_tag\";s:0:\"\";s:28:\"display-metabox-tax-post_tag\";b:0;s:20:\"noindex-tax-post_tag\";b:1;s:25:\"social-title-tax-post_tag\";s:27:\"Archives des %%term_title%%\";s:31:\"social-description-tax-post_tag\";s:0:\"\";s:29:\"social-image-url-tax-post_tag\";s:0:\"\";s:28:\"social-image-id-tax-post_tag\";i:0;s:26:\"taxonomy-post_tag-ptparent\";i:0;s:21:\"title-tax-post_format\";s:57:\"Archives des %%term_title%% %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-post_format\";s:0:\"\";s:31:\"display-metabox-tax-post_format\";b:0;s:23:\"noindex-tax-post_format\";b:1;s:28:\"social-title-tax-post_format\";s:27:\"Archives des %%term_title%%\";s:34:\"social-description-tax-post_format\";s:0:\"\";s:32:\"social-image-url-tax-post_format\";s:0:\"\";s:31:\"social-image-id-tax-post_format\";i:0;s:29:\"taxonomy-post_format-ptparent\";i:0;s:12:\"title-blocks\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:15:\"metadesc-blocks\";s:0:\"\";s:14:\"noindex-blocks\";b:1;s:25:\"display-metabox-pt-blocks\";b:0;s:25:\"post_types-blocks-maintax\";i:0;s:23:\"schema-page-type-blocks\";s:7:\"WebPage\";s:26:\"schema-article-type-blocks\";s:4:\"None\";s:19:\"social-title-blocks\";s:9:\"%%title%%\";s:25:\"social-description-blocks\";s:0:\"\";s:23:\"social-image-url-blocks\";s:0:\"\";s:22:\"social-image-id-blocks\";i:0;s:13:\"title-product\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:16:\"metadesc-product\";s:0:\"\";s:15:\"noindex-product\";b:0;s:26:\"display-metabox-pt-product\";b:1;s:26:\"post_types-product-maintax\";i:0;s:24:\"schema-page-type-product\";s:7:\"WebPage\";s:27:\"schema-article-type-product\";s:4:\"None\";s:20:\"social-title-product\";s:9:\"%%title%%\";s:26:\"social-description-product\";s:0:\"\";s:24:\"social-image-url-product\";s:0:\"\";s:23:\"social-image-id-product\";i:0;s:23:\"title-ptarchive-product\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:26:\"metadesc-ptarchive-product\";s:0:\"\";s:25:\"bctitle-ptarchive-product\";s:0:\"\";s:25:\"noindex-ptarchive-product\";b:0;s:30:\"social-title-ptarchive-product\";s:21:\"%%pt_plural%% Archive\";s:36:\"social-description-ptarchive-product\";s:0:\"\";s:34:\"social-image-url-ptarchive-product\";s:0:\"\";s:33:\"social-image-id-ptarchive-product\";i:0;s:21:\"title-tax-product_cat\";s:57:\"Archives des %%term_title%% %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-product_cat\";s:0:\"\";s:31:\"display-metabox-tax-product_cat\";b:1;s:23:\"noindex-tax-product_cat\";b:0;s:28:\"social-title-tax-product_cat\";s:27:\"Archives des %%term_title%%\";s:34:\"social-description-tax-product_cat\";s:0:\"\";s:32:\"social-image-url-tax-product_cat\";s:0:\"\";s:31:\"social-image-id-tax-product_cat\";i:0;s:29:\"taxonomy-product_cat-ptparent\";i:0;s:21:\"title-tax-product_tag\";s:57:\"Archives des %%term_title%% %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-product_tag\";s:0:\"\";s:31:\"display-metabox-tax-product_tag\";b:1;s:23:\"noindex-tax-product_tag\";b:0;s:28:\"social-title-tax-product_tag\";s:27:\"Archives des %%term_title%%\";s:34:\"social-description-tax-product_tag\";s:0:\"\";s:32:\"social-image-url-tax-product_tag\";s:0:\"\";s:31:\"social-image-id-tax-product_tag\";i:0;s:29:\"taxonomy-product_tag-ptparent\";i:0;s:32:\"title-tax-product_shipping_class\";s:57:\"Archives des %%term_title%% %%page%% %%sep%% %%sitename%%\";s:35:\"metadesc-tax-product_shipping_class\";s:0:\"\";s:42:\"display-metabox-tax-product_shipping_class\";b:1;s:34:\"noindex-tax-product_shipping_class\";b:0;s:39:\"social-title-tax-product_shipping_class\";s:27:\"Archives des %%term_title%%\";s:45:\"social-description-tax-product_shipping_class\";s:0:\"\";s:43:\"social-image-url-tax-product_shipping_class\";s:0:\"\";s:42:\"social-image-id-tax-product_shipping_class\";i:0;s:40:\"taxonomy-product_shipping_class-ptparent\";i:0;s:19:\"title-featured_item\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:22:\"metadesc-featured_item\";s:0:\"\";s:21:\"noindex-featured_item\";b:0;s:32:\"display-metabox-pt-featured_item\";b:1;s:32:\"post_types-featured_item-maintax\";i:0;s:30:\"schema-page-type-featured_item\";s:7:\"WebPage\";s:33:\"schema-article-type-featured_item\";s:4:\"None\";s:26:\"social-title-featured_item\";s:9:\"%%title%%\";s:32:\"social-description-featured_item\";s:0:\"\";s:30:\"social-image-url-featured_item\";s:0:\"\";s:29:\"social-image-id-featured_item\";i:0;s:29:\"title-ptarchive-featured_item\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:32:\"metadesc-ptarchive-featured_item\";s:0:\"\";s:31:\"bctitle-ptarchive-featured_item\";s:0:\"\";s:31:\"noindex-ptarchive-featured_item\";b:0;s:36:\"social-title-ptarchive-featured_item\";s:21:\"%%pt_plural%% Archive\";s:42:\"social-description-ptarchive-featured_item\";s:0:\"\";s:40:\"social-image-url-ptarchive-featured_item\";s:0:\"\";s:39:\"social-image-id-ptarchive-featured_item\";i:0;s:32:\"title-tax-featured_item_category\";s:57:\"Archives des %%term_title%% %%page%% %%sep%% %%sitename%%\";s:35:\"metadesc-tax-featured_item_category\";s:0:\"\";s:42:\"display-metabox-tax-featured_item_category\";b:1;s:34:\"noindex-tax-featured_item_category\";b:0;s:39:\"social-title-tax-featured_item_category\";s:27:\"Archives des %%term_title%%\";s:45:\"social-description-tax-featured_item_category\";s:0:\"\";s:43:\"social-image-url-tax-featured_item_category\";s:0:\"\";s:42:\"social-image-id-tax-featured_item_category\";i:0;s:40:\"taxonomy-featured_item_category-ptparent\";i:0;s:27:\"title-tax-featured_item_tag\";s:57:\"Archives des %%term_title%% %%page%% %%sep%% %%sitename%%\";s:30:\"metadesc-tax-featured_item_tag\";s:0:\"\";s:37:\"display-metabox-tax-featured_item_tag\";b:1;s:29:\"noindex-tax-featured_item_tag\";b:0;s:34:\"social-title-tax-featured_item_tag\";s:27:\"Archives des %%term_title%%\";s:40:\"social-description-tax-featured_item_tag\";s:0:\"\";s:38:\"social-image-url-tax-featured_item_tag\";s:0:\"\";s:37:\"social-image-id-tax-featured_item_tag\";i:0;s:35:\"taxonomy-featured_item_tag-ptparent\";i:0;s:14:\"person_logo_id\";i:0;s:15:\"company_logo_id\";i:364;s:17:\"company_logo_meta\";a:10:{s:5:\"width\";i:833;s:6:\"height\";i:259;s:8:\"filesize\";i:18551;s:3:\"url\";s:81:\"https://www.nl.ecom-expansion.com/wp-content/uploads/2022/12/teng-shop-v2-min.png\";s:4:\"path\";s:92:\"/home/customer/www/teng-shop.com/public_html/wp-content/uploads/2022/12/teng-shop-v2-min.png\";s:4:\"size\";s:4:\"full\";s:2:\"id\";i:364;s:3:\"alt\";s:14:\"Teng Shop Logo\";s:6:\"pixels\";i:215747;s:4:\"type\";s:9:\"image/png\";}s:16:\"person_logo_meta\";b:0;s:29:\"open_graph_frontpage_image_id\";i:0;}','yes'),(2899,'wpseo_social','a:19:{s:13:\"facebook_site\";s:0:\"\";s:13:\"instagram_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:11:\"myspace_url\";s:0:\"\";s:16:\"og_default_image\";s:0:\"\";s:19:\"og_default_image_id\";s:0:\"\";s:18:\"og_frontpage_title\";s:0:\"\";s:17:\"og_frontpage_desc\";s:0:\"\";s:18:\"og_frontpage_image\";s:0:\"\";s:21:\"og_frontpage_image_id\";s:0:\"\";s:9:\"opengraph\";b:1;s:13:\"pinterest_url\";s:0:\"\";s:15:\"pinterestverify\";s:0:\"\";s:7:\"twitter\";b:1;s:12:\"twitter_site\";s:0:\"\";s:17:\"twitter_card_type\";s:19:\"summary_large_image\";s:11:\"youtube_url\";s:0:\"\";s:13:\"wikipedia_url\";s:0:\"\";s:17:\"other_social_urls\";a:0:{}}','yes'),(2920,'trackship_admin_notice_ignore','true','yes'),(2972,'litespeed.conf.__activation','-1','yes'),(2973,'litespeed.purge.queue','-1','yes'),(2974,'litespeed.purge.queue2','-1','yes'),(2975,'litespeed.cloud._summary','{\"curr_request.ver\":0,\"last_request.ver\":1703304416,\"news.utime\":1703266093,\"curr_request.news\":0,\"last_request.news\":1703266093}','yes'),(2977,'litespeed.conf.hash','BU7MLUMO4RL2P5dXcplvtgJiZDj2T0bQ','yes'),(2978,'litespeed.conf.auto_upgrade','','yes'),(2979,'litespeed.conf.api_key','','yes'),(2980,'litespeed.conf.server_ip','','yes'),(2981,'litespeed.conf.guest','','yes'),(2982,'litespeed.conf.guest_optm','','yes'),(2983,'litespeed.conf.news','1','yes'),(2984,'litespeed.conf.guest_uas','[\"Lighthouse\",\"GTmetrix\",\"Google\",\"Pingdom\",\"bot\",\"PTST\",\"HeadlessChrome\"]','yes'),(2985,'litespeed.conf.guest_ips','[\"208.70.247.157\",\"172.255.48.130\",\"172.255.48.131\",\"172.255.48.132\",\"172.255.48.133\",\"172.255.48.134\",\"172.255.48.135\",\"172.255.48.136\",\"172.255.48.137\",\"172.255.48.138\",\"172.255.48.139\",\"172.255.48.140\",\"172.255.48.141\",\"172.255.48.142\",\"172.255.48.143\",\"172.255.48.144\",\"172.255.48.145\",\"172.255.48.146\",\"172.255.48.147\",\"52.229.122.240\",\"104.214.72.101\",\"13.66.7.11\",\"13.85.24.83\",\"13.85.24.90\",\"13.85.82.26\",\"40.74.242.253\",\"40.74.243.13\",\"40.74.243.176\",\"104.214.48.247\",\"157.55.189.189\",\"104.214.110.135\",\"70.37.83.240\",\"65.52.36.250\",\"13.78.216.56\",\"52.162.212.163\",\"23.96.34.105\",\"65.52.113.236\",\"172.255.61.34\",\"172.255.61.35\",\"172.255.61.36\",\"172.255.61.37\",\"172.255.61.38\",\"172.255.61.39\",\"172.255.61.40\",\"104.41.2.19\",\"191.235.98.164\",\"191.235.99.221\",\"191.232.194.51\",\"52.237.235.185\",\"52.237.250.73\",\"52.237.236.145\",\"104.211.143.8\",\"104.211.165.53\",\"52.172.14.87\",\"40.83.89.214\",\"52.175.57.81\",\"20.188.63.151\",\"20.52.36.49\",\"52.246.165.153\",\"51.144.102.233\",\"13.76.97.224\",\"102.133.169.66\",\"52.231.199.170\",\"13.53.162.7\",\"40.123.218.94\"]','yes'),(2986,'litespeed.conf.cache','1','yes'),(2987,'litespeed.conf.cache-priv','1','yes'),(2988,'litespeed.conf.cache-commenter','1','yes'),(2989,'litespeed.conf.cache-rest','0','yes'),(2990,'litespeed.conf.cache-page_login','1','yes'),(2991,'litespeed.conf.cache-favicon','1','yes'),(2992,'litespeed.conf.cache-resources','1','yes'),(2993,'litespeed.conf.cache-mobile','','yes'),(2994,'litespeed.conf.cache-mobile_rules','[\"Mobile\",\"Android\",\"Silk\\/\",\"Kindle\",\"BlackBerry\",\"Opera Mini\",\"Opera Mobi\"]','yes'),(2995,'litespeed.conf.cache-browser','','yes'),(2996,'litespeed.conf.cache-exc_useragents','[]','yes'),(2997,'litespeed.conf.cache-exc_cookies','[]','yes'),(2998,'litespeed.conf.cache-exc_qs','[]','yes'),(2999,'litespeed.conf.cache-exc_cat','[]','yes'),(3000,'litespeed.conf.cache-exc_tag','[]','yes'),(3001,'litespeed.conf.cache-force_uri','[]','yes'),(3002,'litespeed.conf.cache-force_pub_uri','[]','yes'),(3003,'litespeed.conf.cache-priv_uri','[]','yes'),(3004,'litespeed.conf.cache-exc','[]','yes'),(3005,'litespeed.conf.cache-exc_roles','[]','yes'),(3006,'litespeed.conf.cache-drop_qs','[\"fbclid\",\"gclid\",\"utm*\",\"_ga\"]','yes'),(3007,'litespeed.conf.cache-ttl_pub','604800','yes'),(3008,'litespeed.conf.cache-ttl_priv','1800','yes'),(3009,'litespeed.conf.cache-ttl_frontpage','604800','yes'),(3010,'litespeed.conf.cache-ttl_feed','604800','yes'),(3011,'litespeed.conf.cache-ttl_rest','604800','yes'),(3012,'litespeed.conf.cache-ttl_browser','31557600','yes'),(3013,'litespeed.conf.cache-ttl_status','[\"403 3600\",\"404 3600\",\"500 3600\"]','yes'),(3014,'litespeed.conf.cache-login_cookie','','yes'),(3015,'litespeed.conf.cache-vary_group','[]','yes'),(3016,'litespeed.conf.purge-upgrade','1','yes'),(3017,'litespeed.conf.purge-stale','','yes'),(3018,'litespeed.conf.purge-post_all','','yes'),(3019,'litespeed.conf.purge-post_f','1','yes'),(3020,'litespeed.conf.purge-post_h','1','yes'),(3021,'litespeed.conf.purge-post_p','1','yes'),(3022,'litespeed.conf.purge-post_pwrp','1','yes'),(3023,'litespeed.conf.purge-post_a','1','yes'),(3024,'litespeed.conf.purge-post_y','','yes'),(3025,'litespeed.conf.purge-post_m','1','yes'),(3026,'litespeed.conf.purge-post_d','','yes'),(3027,'litespeed.conf.purge-post_t','1','yes'),(3028,'litespeed.conf.purge-post_pt','1','yes'),(3029,'litespeed.conf.purge-timed_urls','[]','yes'),(3030,'litespeed.conf.purge-timed_urls_time','','yes'),(3031,'litespeed.conf.purge-hook_all','[\"switch_theme\",\"wp_create_nav_menu\",\"wp_update_nav_menu\",\"wp_delete_nav_menu\",\"create_term\",\"edit_terms\",\"delete_term\",\"add_link\",\"edit_link\",\"delete_link\"]','yes'),(3032,'litespeed.conf.esi','','yes'),(3033,'litespeed.conf.esi-cache_admbar','1','yes'),(3034,'litespeed.conf.esi-cache_commform','1','yes'),(3035,'litespeed.conf.esi-nonce','[\"stats_nonce\",\"subscribe_nonce\"]','yes'),(3036,'litespeed.conf.util-instant_click','','yes'),(3037,'litespeed.conf.util-no_https_vary','','yes'),(3038,'litespeed.conf.debug-disable_all','','yes'),(3039,'litespeed.conf.debug','','yes'),(3040,'litespeed.conf.debug-ips','[\"127.0.0.1\"]','yes'),(3041,'litespeed.conf.debug-level','','yes'),(3042,'litespeed.conf.debug-filesize','3','yes'),(3043,'litespeed.conf.debug-cookie','','yes'),(3044,'litespeed.conf.debug-collaps_qs','','yes'),(3045,'litespeed.conf.debug-inc','[]','yes'),(3046,'litespeed.conf.debug-exc','[]','yes'),(3047,'litespeed.conf.debug-exc_strings','[]','yes'),(3048,'litespeed.conf.db_optm-revisions_max','0','yes'),(3049,'litespeed.conf.db_optm-revisions_age','0','yes'),(3050,'litespeed.conf.optm-css_min','','yes'),(3051,'litespeed.conf.optm-css_comb','','yes'),(3052,'litespeed.conf.optm-css_comb_ext_inl','1','yes'),(3053,'litespeed.conf.optm-ucss','','yes'),(3054,'litespeed.conf.optm-ucss_inline','','yes'),(3055,'litespeed.conf.optm-ucss_whitelist','[]','yes'),(3056,'litespeed.conf.optm-ucss_file_exc_inline','[]','yes'),(3057,'litespeed.conf.optm-ucss_exc','[]','yes'),(3058,'litespeed.conf.optm-css_exc','[]','yes'),(3059,'litespeed.conf.optm-js_min','','yes'),(3060,'litespeed.conf.optm-js_comb','','yes'),(3061,'litespeed.conf.optm-js_comb_ext_inl','1','yes'),(3062,'litespeed.conf.optm-js_exc','[\"jquery.js\",\"jquery.min.js\"]','yes'),(3063,'litespeed.conf.optm-html_min','','yes'),(3064,'litespeed.conf.optm-html_lazy','[]','yes'),(3065,'litespeed.conf.optm-qs_rm','','yes'),(3066,'litespeed.conf.optm-ggfonts_rm','','yes'),(3067,'litespeed.conf.optm-css_async','','yes'),(3068,'litespeed.conf.optm-ccss_per_url','','yes'),(3069,'litespeed.conf.optm-ccss_sep_posttype','[\"page\"]','yes'),(3070,'litespeed.conf.optm-ccss_sep_uri','[]','yes'),(3071,'litespeed.conf.optm-css_async_inline','1','yes'),(3072,'litespeed.conf.optm-css_font_display','','yes'),(3073,'litespeed.conf.optm-js_defer','','yes'),(3074,'litespeed.conf.optm-emoji_rm','','yes'),(3075,'litespeed.conf.optm-noscript_rm','','yes'),(3076,'litespeed.conf.optm-ggfonts_async','','yes'),(3077,'litespeed.conf.optm-exc_roles','[]','yes'),(3078,'litespeed.conf.optm-ccss_con','','yes'),(3079,'litespeed.conf.optm-js_defer_exc','[\"jquery.js\",\"jquery.min.js\",\"gtm.js\",\"analytics.js\"]','yes'),(3080,'litespeed.conf.optm-gm_js_exc','[]','yes'),(3081,'litespeed.conf.optm-dns_prefetch','[]','yes'),(3082,'litespeed.conf.optm-dns_prefetch_ctrl','','yes'),(3083,'litespeed.conf.optm-exc','[]','yes'),(3084,'litespeed.conf.optm-guest_only','1','yes'),(3085,'litespeed.conf.object','','yes'),(3086,'litespeed.conf.object-kind','','yes'),(3087,'litespeed.conf.object-host','localhost','yes'),(3088,'litespeed.conf.object-port','11211','yes'),(3089,'litespeed.conf.object-life','360','yes'),(3090,'litespeed.conf.object-persistent','1','yes'),(3091,'litespeed.conf.object-admin','1','yes'),(3092,'litespeed.conf.object-transients','1','yes'),(3093,'litespeed.conf.object-db_id','0','yes'),(3094,'litespeed.conf.object-user','','yes'),(3095,'litespeed.conf.object-pswd','','yes'),(3096,'litespeed.conf.object-global_groups','[\"users\",\"userlogins\",\"useremail\",\"userslugs\",\"usermeta\",\"user_meta\",\"site-transient\",\"site-options\",\"site-lookup\",\"site-details\",\"blog-lookup\",\"blog-details\",\"blog-id-cache\",\"rss\",\"global-posts\",\"global-cache-test\"]','yes'),(3097,'litespeed.conf.object-non_persistent_groups','[\"comment\",\"counts\",\"plugins\",\"wc_session_id\"]','yes'),(3098,'litespeed.conf.discuss-avatar_cache','','yes'),(3099,'litespeed.conf.discuss-avatar_cron','','yes'),(3100,'litespeed.conf.discuss-avatar_cache_ttl','604800','yes'),(3101,'litespeed.conf.optm-localize','','yes'),(3102,'litespeed.conf.optm-localize_domains','[\"### Popular scripts ###\",\"https:\\/\\/platform.twitter.com\\/widgets.js\",\"https:\\/\\/connect.facebook.net\\/en_US\\/fbevents.js\"]','yes'),(3103,'litespeed.conf.media-lazy','','yes'),(3104,'litespeed.conf.media-lazy_placeholder','','yes'),(3105,'litespeed.conf.media-placeholder_resp','','yes'),(3106,'litespeed.conf.media-placeholder_resp_color','#cfd4db','yes'),(3107,'litespeed.conf.media-placeholder_resp_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"{width}\" height=\"{height}\" viewBox=\"0 0 {width} {height}\"><rect width=\"100%\" height=\"100%\" style=\"fill:{color};fill-opacity: 0.1;\"/></svg>','yes'),(3108,'litespeed.conf.media-lqip','','yes'),(3109,'litespeed.conf.media-lqip_qual','4','yes'),(3110,'litespeed.conf.media-lqip_min_w','150','yes'),(3111,'litespeed.conf.media-lqip_min_h','150','yes'),(3112,'litespeed.conf.media-placeholder_resp_async','1','yes'),(3113,'litespeed.conf.media-iframe_lazy','','yes'),(3114,'litespeed.conf.media-add_missing_sizes','','yes'),(3115,'litespeed.conf.media-lazy_exc','[]','yes'),(3116,'litespeed.conf.media-lazy_cls_exc','[\"wmu-preview-img\"]','yes'),(3117,'litespeed.conf.media-lazy_parent_cls_exc','[]','yes'),(3118,'litespeed.conf.media-iframe_lazy_cls_exc','[]','yes'),(3119,'litespeed.conf.media-iframe_lazy_parent_cls_exc','[]','yes'),(3120,'litespeed.conf.media-lazy_uri_exc','[]','yes'),(3121,'litespeed.conf.media-lqip_exc','[]','yes'),(3122,'litespeed.conf.media-vpi','','yes'),(3123,'litespeed.conf.media-vpi_cron','','yes'),(3124,'litespeed.conf.img_optm-auto','','yes'),(3125,'litespeed.conf.img_optm-cron','1','yes'),(3126,'litespeed.conf.img_optm-ori','1','yes'),(3127,'litespeed.conf.img_optm-rm_bkup','','yes'),(3128,'litespeed.conf.img_optm-webp','','yes'),(3129,'litespeed.conf.img_optm-lossless','','yes'),(3130,'litespeed.conf.img_optm-exif','1','yes'),(3131,'litespeed.conf.img_optm-webp_attr','[\"img.src\",\"div.data-thumb\",\"img.data-src\",\"img.data-lazyload\",\"div.data-large_image\",\"img.retina_logo_url\",\"div.data-parallax-image\",\"div.data-vc-parallax-image\",\"video.poster\"]','yes'),(3132,'litespeed.conf.img_optm-webp_replace_srcset','','yes'),(3133,'litespeed.conf.img_optm-jpg_quality','82','yes'),(3134,'litespeed.conf.crawler','','yes'),(3135,'litespeed.conf.crawler-usleep','500','yes'),(3136,'litespeed.conf.crawler-run_duration','400','yes'),(3137,'litespeed.conf.crawler-run_interval','600','yes'),(3138,'litespeed.conf.crawler-crawl_interval','302400','yes'),(3139,'litespeed.conf.crawler-threads','3','yes'),(3140,'litespeed.conf.crawler-timeout','30','yes'),(3141,'litespeed.conf.crawler-load_limit','1','yes'),(3142,'litespeed.conf.crawler-sitemap','','yes'),(3143,'litespeed.conf.crawler-drop_domain','1','yes'),(3144,'litespeed.conf.crawler-map_timeout','120','yes'),(3145,'litespeed.conf.crawler-roles','[]','yes'),(3146,'litespeed.conf.crawler-cookies','[]','yes'),(3147,'litespeed.conf.misc-heartbeat_front','','yes'),(3148,'litespeed.conf.misc-heartbeat_front_ttl','60','yes'),(3149,'litespeed.conf.misc-heartbeat_back','','yes'),(3150,'litespeed.conf.misc-heartbeat_back_ttl','60','yes'),(3151,'litespeed.conf.misc-heartbeat_editor','','yes'),(3152,'litespeed.conf.misc-heartbeat_editor_ttl','15','yes'),(3153,'litespeed.conf.cdn','','yes'),(3154,'litespeed.conf.cdn-ori','[]','yes'),(3155,'litespeed.conf.cdn-ori_dir','[\"wp-content\",\"wp-includes\"]','yes'),(3156,'litespeed.conf.cdn-exc','[]','yes'),(3157,'litespeed.conf.cdn-quic','','yes'),(3158,'litespeed.conf.cdn-cloudflare','','yes'),(3159,'litespeed.conf.cdn-cloudflare_email','','yes'),(3160,'litespeed.conf.cdn-cloudflare_key','','yes'),(3161,'litespeed.conf.cdn-cloudflare_name','','yes'),(3162,'litespeed.conf.cdn-cloudflare_zone','','yes'),(3163,'litespeed.conf.cdn-mapping','[{\"url\":\"\",\"inc_img\":\"1\",\"inc_css\":\"1\",\"inc_js\":\"1\",\"filetype\":[\".aac\",\".css\",\".eot\",\".gif\",\".jpeg\",\".jpg\",\".js\",\".less\",\".mp3\",\".mp4\",\".ogg\",\".otf\",\".pdf\",\".png\",\".svg\",\".ttf\",\".webp\",\".woff\",\".woff2\"]}]','yes'),(3164,'litespeed.conf.cdn-attr','[\".src\",\".data-src\",\".href\",\".poster\",\"source.srcset\"]','yes'),(3165,'litespeed.conf.qc-token','','yes'),(3166,'litespeed.conf.qc-nameservers','','yes'),(3168,'litespeed.gui.lscwp_whm_install','-1','yes'),(3169,'litespeed.gui.dismiss','-1','yes'),(3170,'litespeed.gui._summary','{\"new_version\":1670452424,\"score\":1671057224}','yes'),(3171,'litespeed.data.upgrading','-1','yes'),(3172,'litespeed.admin_display.messages','[\"<div class=\\\"litespeed_icon notice notice-success is-dismissible\\\"><p>Purged all caches successfully.<\\/p><\\/div>\"]','yes'),(3525,'code_snippets_version','3.6.2','yes'),(3526,'code_snippets_settings','a:3:{s:7:\"general\";a:6:{s:19:\"activate_by_default\";b:1;s:11:\"enable_tags\";b:1;s:18:\"enable_description\";b:1;s:10:\"list_order\";s:12:\"priority-asc\";s:13:\"disable_prism\";b:0;s:18:\"complete_uninstall\";b:0;}s:18:\"description_editor\";a:3:{s:4:\"rows\";i:5;s:12:\"use_full_mce\";b:0;s:13:\"media_buttons\";b:0;}s:6:\"editor\";a:11:{s:5:\"theme\";s:7:\"default\";s:16:\"indent_with_tabs\";b:1;s:8:\"tab_size\";i:4;s:11:\"indent_unit\";i:4;s:10:\"wrap_lines\";b:1;s:12:\"code_folding\";b:1;s:12:\"line_numbers\";b:1;s:19:\"auto_close_brackets\";b:1;s:27:\"highlight_selection_matches\";b:1;s:21:\"highlight_active_line\";b:1;s:6:\"keymap\";s:7:\"default\";}}','yes'),(3528,'recently_activated_snippets','a:0:{}','yes'),(3982,'wordfence_syncAttackDataAttempts','0','no'),(3983,'wordfence_syncingAttackData','0','no'),(3984,'wordfence_lastSyncAttackData','1705313153','no'),(4240,'wpseo_taxonomy_meta','a:2:{s:11:\"product_cat\";a:18:{i:39;a:5:{s:11:\"wpseo_title\";s:42:\"Kinesiska Solfjädrar %%sep%% %%sitename%%\";s:10:\"wpseo_desc\";s:178:\"Upptäck vår fantastiska kollektion av traditionella Kinesiska Solfjädrar! Du hittar alla typer av solfjädrar (runda, med hylsa, nitade) för alla som älskar kinesisk kultur.\";s:13:\"wpseo_focuskw\";s:21:\"Kinesiska Solfjädrar\";s:13:\"wpseo_linkdex\";s:2:\"49\";s:19:\"wpseo_content_score\";s:1:\"0\";}i:40;a:5:{s:11:\"wpseo_title\";s:40:\"Kinesiska Paraplyer %%sep%% %%sitename%%\";s:10:\"wpseo_desc\";s:160:\"Upptäck våra vackra traditionella kinesiska paraplyer, som får dig att resa i ett kinesiskt landskap, under blommorna från körsbärsträd och plommonträd.\";s:13:\"wpseo_focuskw\";s:19:\"Kinesiska Paraplyer\";s:13:\"wpseo_linkdex\";s:2:\"53\";s:19:\"wpseo_content_score\";s:1:\"0\";}i:38;a:5:{s:11:\"wpseo_title\";s:41:\"Kinesiska Tillbehör %%sep%% %%sitename%%\";s:10:\"wpseo_desc\";s:165:\"Från kinesiska ätpinnar till solfjädrar och kinesiska tatueringar - upptäck vår samling av tillbehör från den kinesiska kulturen på vår webbplats Teng Shop.\";s:13:\"wpseo_focuskw\";s:20:\"Kinesiska Tillbehör\";s:13:\"wpseo_linkdex\";s:2:\"49\";s:19:\"wpseo_content_score\";s:1:\"0\";}i:36;a:5:{s:11:\"wpseo_title\";s:40:\"Kinesiska Ätpinnar %%sep%% %%sitename%%\";s:10:\"wpseo_desc\";s:166:\"Vårt breda sortiment av Kinesiska Ätpinnar (Trä, rostfritt stål, långa...) kommer att få dig att uppskatta de överdådiga måltiderna i den kinesiska kulturen.\";s:13:\"wpseo_focuskw\";s:19:\"Kinesiska Ätpinnar\";s:13:\"wpseo_linkdex\";s:2:\"49\";s:19:\"wpseo_content_score\";s:1:\"0\";}i:44;a:5:{s:11:\"wpseo_title\";s:39:\"Kinesiska Gardiner %%sep%% %%sitename%%\";s:10:\"wpseo_desc\";s:152:\"Dekorera ditt hem med dessa vackra och autentiska kinesiska gardiner. Upptäck alla dessa gardiner som för in den kinesiska kulturen i ditt vardagsrum.\";s:13:\"wpseo_focuskw\";s:18:\"Kinesiska Gardiner\";s:13:\"wpseo_linkdex\";s:2:\"53\";s:19:\"wpseo_content_score\";s:1:\"0\";}i:41;a:5:{s:11:\"wpseo_title\";s:40:\"Kinesisk Dekoration %%sep%% %%sitename%%\";s:10:\"wpseo_desc\";s:166:\"Förflytta din värld till Kina med vår samling av Kinesiska Dekorationer. Mer än hundra kinesiska föremål väntar på att du ska inreda ditt hem i asiatisk stil.\";s:13:\"wpseo_focuskw\";s:19:\"Kinesisk Dekoration\";s:13:\"wpseo_linkdex\";s:2:\"42\";s:19:\"wpseo_content_score\";s:1:\"0\";}i:47;a:5:{s:11:\"wpseo_title\";s:50:\"Kinesiska Klänningar / Qipao %%sep%% %%sitename%%\";s:10:\"wpseo_desc\";s:147:\"I vår butik som är tillägnad kulturen i Mittens rike finns en rad kinesiska klänningar / Qipao som kommer att glädja dig med sin typiska look.\";s:13:\"wpseo_focuskw\";s:21:\"Kinesiska Klänningar\";s:13:\"wpseo_linkdex\";s:2:\"53\";s:19:\"wpseo_content_score\";s:1:\"0\";}i:42;a:5:{s:11:\"wpseo_title\";s:37:\"Kinesiska Lyktor %%sep%% %%sitename%%\";s:10:\"wpseo_desc\";s:155:\"Dekorera ditt hus, din lägenhet eller din trädgård med våra kinesiska lyktor! Res genom Kina med dessa typiska kinesiska lyktor i vår Store Teng Shop.\";s:13:\"wpseo_focuskw\";s:16:\"Kinesiska Lyktor\";s:13:\"wpseo_linkdex\";s:2:\"53\";s:19:\"wpseo_content_score\";s:1:\"0\";}i:43;a:5:{s:11:\"wpseo_title\";s:37:\"Kinesiska Tavlor %%sep%% %%sitename%%\";s:10:\"wpseo_desc\";s:136:\"Kom och upptäck våra vackraste Kinesiska Tavla på vår webbplats Teng Shop. Ge ditt hem en asiatisk look med dessa vackra målningar.\";s:13:\"wpseo_focuskw\";s:16:\"Kinesiska Tavlor\";s:13:\"wpseo_linkdex\";s:2:\"46\";s:19:\"wpseo_content_score\";s:1:\"0\";}i:51;a:5:{s:11:\"wpseo_title\";s:36:\"Kinesiska Byxor %%sep%% %%sitename%%\";s:10:\"wpseo_desc\";s:169:\"Denna samling av Kinesiska Byxor är resultatet av know-how och den kinesiska estetiken och kommer att glädja dig med sina traditionella skäl och trendiga skärningar.\";s:13:\"wpseo_focuskw\";s:15:\"Kinesiska Byxor\";s:13:\"wpseo_linkdex\";s:2:\"49\";s:19:\"wpseo_content_score\";s:1:\"0\";}i:45;a:5:{s:11:\"wpseo_title\";s:38:\"Kinesiska Statyer %%sep%% %%sitename%%\";s:10:\"wpseo_desc\";s:144:\"Ge din omgivning en touch av Feng Shui med den kinesiska statykollektionen från Teng Shop! Upptäck de bästa Kinesiska Statyerna i Amerika nu!\";s:13:\"wpseo_focuskw\";s:17:\"Kinesiska Statyer\";s:13:\"wpseo_linkdex\";s:2:\"46\";s:19:\"wpseo_content_score\";s:1:\"0\";}i:53;a:5:{s:11:\"wpseo_title\";s:39:\"Kinesiska T-shirts %%sep%% %%sitename%%\";s:10:\"wpseo_desc\";s:155:\"Upptäck våra vackra kinesiska T-shirts och unika design Teng Shop. Adoptera en asiatisk look och visa din kärlek till den kinesiska kulturen och stilen.\";s:13:\"wpseo_focuskw\";s:18:\"Kinesiska T-shirts\";s:13:\"wpseo_linkdex\";s:2:\"53\";s:19:\"wpseo_content_score\";s:1:\"0\";}i:48;a:5:{s:11:\"wpseo_title\";s:26:\"Hanfu %%sep%% %%sitename%%\";s:10:\"wpseo_desc\";s:176:\"Dyk ner i hjärtat av det traditionella Kina med våra Hanfu-klänningar. Dessa magnifika dräkter, tillverkade med kinesiskt hantverk, kommer att förflytta dig till Hans tid.\";s:13:\"wpseo_focuskw\";s:5:\"Hanfu\";s:13:\"wpseo_linkdex\";s:2:\"49\";s:19:\"wpseo_content_score\";s:1:\"0\";}i:52;a:5:{s:11:\"wpseo_title\";s:48:\"Kinesiska kläder för män %%sep%% %%sitename%%\";s:10:\"wpseo_desc\";s:157:\"Kan du inte hitta Kinesiska Kulturkläder för Män? Teng Shop är butiken du behöver komma till och upptäcka ett brett utbud av kläder! Att upptäcka nu!\";s:13:\"wpseo_focuskw\";s:27:\"Kinesiska kläder för män\";s:13:\"wpseo_linkdex\";s:2:\"46\";s:19:\"wpseo_content_score\";s:1:\"0\";}i:50;a:5:{s:11:\"wpseo_title\";s:58:\"Kinesisk Jacka för Män / Tangzhuang %%sep%% %%sitename%%\";s:10:\"wpseo_desc\";s:165:\"Du kan inte hitta kinesiska kulturkläder för män? Teng Shop är butiken du behöver kom och upptäck ett brett utbud av kinesiska jackor för män och Tangzhuang!\";s:13:\"wpseo_focuskw\";s:37:\"Kinesisk jacka för män / Tangzhuang\";s:13:\"wpseo_linkdex\";s:2:\"38\";s:19:\"wpseo_content_score\";s:1:\"0\";}i:46;a:5:{s:11:\"wpseo_title\";s:51:\"Kinesiska Kläder för Kvinnor %%sep%% %%sitename%%\";s:10:\"wpseo_desc\";s:166:\"Alla kläder i kinesisk stil finns på Teng Shop. Kom och upptäck vår kollektion av damkläder för alla som älskar kinesisk kultur. Ett brett utbud att upptäcka!\";s:13:\"wpseo_focuskw\";s:30:\"Kinesiska Kläder för Kvinnor\";s:13:\"wpseo_linkdex\";s:2:\"42\";s:19:\"wpseo_content_score\";s:1:\"0\";}i:49;a:5:{s:11:\"wpseo_title\";s:48:\"Kinesisk Jacka för kvinnor %%sep%% %%sitename%%\";s:10:\"wpseo_desc\";s:139:\"Upptäck vår kollektion av kinesisk damjacka för att klä dig i elegans med allt det vackra i orientaliskt mode. Vackra modeller i lager!\";s:13:\"wpseo_focuskw\";s:27:\"Kinesisk Jacka för kvinnor\";s:13:\"wpseo_linkdex\";s:2:\"46\";s:19:\"wpseo_content_score\";s:1:\"0\";}i:15;a:4:{s:11:\"wpseo_title\";s:44:\"%%term_title%% %%page%% %%sep%% %%sitename%%\";s:13:\"wpseo_focuskw\";s:13:\"Uncategorized\";s:13:\"wpseo_linkdex\";s:2:\"36\";s:19:\"wpseo_content_score\";s:1:\"0\";}}s:8:\"category\";a:7:{i:55;a:5:{s:11:\"wpseo_title\";s:44:\"Kinesisk Kultur - Blogg %%sep%% %%sitename%%\";s:10:\"wpseo_desc\";s:163:\"Här hittar du alla våra artiklar om kinesisk kultur. Oavsett om det är de olika berättelserna, betydelserna och andra små anekdoter som gör detta land unikt.\";s:13:\"wpseo_focuskw\";s:15:\"Kinesisk Kultur\";s:13:\"wpseo_linkdex\";s:2:\"49\";s:19:\"wpseo_content_score\";s:1:\"0\";}i:56;a:5:{s:11:\"wpseo_title\";s:43:\"Kinesisk Konst - Blogg %%sep%% %%sitename%%\";s:10:\"wpseo_desc\";s:164:\"I det här avsnittet hittar du våra olika blogginlägg relaterade till de olika kinesiska konstarterna. Från att skriva till att måla eller skriva bland annat...\";s:13:\"wpseo_focuskw\";s:14:\"Kinesisk Konst\";s:13:\"wpseo_linkdex\";s:2:\"42\";s:19:\"wpseo_content_score\";s:1:\"0\";}i:57;a:5:{s:11:\"wpseo_title\";s:48:\"Kinesisk Gastronomi - Blogg %%sep%% %%sitename%%\";s:10:\"wpseo_desc\";s:145:\"I det här avsnittet hittar du alla våra artiklar om kinesisk gastronomi. Recept, anekdoter och andra typer av blogginlägg relaterade till mat.\";s:13:\"wpseo_focuskw\";s:19:\"Kinesisk Gastronomi\";s:13:\"wpseo_linkdex\";s:2:\"53\";s:19:\"wpseo_content_score\";s:1:\"0\";}i:58;a:5:{s:11:\"wpseo_title\";s:42:\"Forntida Kina - Blogg %%sep%% %%sitename%%\";s:10:\"wpseo_desc\";s:129:\"Här hittar du alla våra bloggartiklar om det gamla Kina. Du hittar ämnen som den kinesiska muren, de kinesiska kejsarna etc...\";s:13:\"wpseo_focuskw\";s:13:\"Forntida Kina\";s:13:\"wpseo_linkdex\";s:2:\"46\";s:19:\"wpseo_content_score\";s:1:\"0\";}i:59;a:5:{s:11:\"wpseo_title\";s:60:\"Traditionella Kinesiska Kläder - Blogg %%sep%% %%sitename%%\";s:10:\"wpseo_desc\";s:150:\"Vill du upptäcka allt om kinesiskt mode? Besök då gärna vår blogg i den här kategorin för att lära dig mer om traditionella kinesiska kläder!\";s:13:\"wpseo_focuskw\";s:31:\"Traditionella Kinesiska Kläder\";s:13:\"wpseo_linkdex\";s:2:\"53\";s:19:\"wpseo_content_score\";s:1:\"0\";}i:60;a:5:{s:11:\"wpseo_title\";s:38:\"Feng Shui - Blogg %%sep%% %%sitename%%\";s:10:\"wpseo_desc\";s:203:\"Feng shui är en tusenårig konst av kinesiskt ursprung som syftar till att harmonisera den miljömässiga energin på en plats för att främja välbefinnande, hälsa och välstånd för dess invånare.\";s:13:\"wpseo_focuskw\";s:9:\"Feng Shui\";s:13:\"wpseo_linkdex\";s:2:\"49\";s:19:\"wpseo_content_score\";s:1:\"0\";}i:61;a:5:{s:11:\"wpseo_title\";s:46:\"Kinesisk Mytologi - Blogg %%sep%% %%sitename%%\";s:10:\"wpseo_desc\";s:164:\"Kinesisk mytologi är lika rik som andra mytologier (t.ex. grekisk, egyptisk) och har ett stort antal karaktärer och frågeställningar. Hitta alla våra artiklar!\";s:13:\"wpseo_focuskw\";s:17:\"Kinesisk Mytologi\";s:13:\"wpseo_linkdex\";s:2:\"49\";s:19:\"wpseo_content_score\";s:1:\"0\";}}}','yes'),(4377,'members_activated','1670259272','yes'),(4378,'members_addons_migrated','1','yes'),(4379,'widget_members-widget-login','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(4380,'widget_members-widget-users','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(4714,'rank_math_known_post_types','a:6:{s:4:\"post\";s:4:\"post\";s:4:\"page\";s:4:\"page\";s:10:\"attachment\";s:10:\"attachment\";s:6:\"blocks\";s:6:\"blocks\";s:7:\"product\";s:7:\"product\";s:13:\"featured_item\";s:13:\"featured_item\";}','yes'),(4715,'rank_math_modules','a:12:{i:0;s:12:\"link-counter\";i:1;s:9:\"analytics\";i:2;s:12:\"seo-analysis\";i:3;s:7:\"sitemap\";i:4;s:12:\"rich-snippet\";i:5;s:11:\"woocommerce\";i:6;s:10:\"buddypress\";i:7;s:7:\"bbpress\";i:8;s:3:\"acf\";i:9;s:11:\"web-stories\";i:10;s:10:\"content-ai\";i:11;s:16:\"instant-indexing\";}','yes'),(4716,'rank-math-options-general','a:54:{s:19:\"strip_category_base\";s:3:\"off\";s:24:\"attachment_redirect_urls\";s:2:\"on\";s:27:\"attachment_redirect_default\";s:33:\"https://www.nl.ecom-expansion.com\";s:23:\"nofollow_external_links\";s:3:\"off\";s:20:\"nofollow_image_links\";s:3:\"off\";s:25:\"new_window_external_links\";s:2:\"on\";s:11:\"add_img_alt\";s:3:\"off\";s:14:\"img_alt_format\";s:11:\" %filename%\";s:13:\"add_img_title\";s:3:\"off\";s:16:\"img_title_format\";s:22:\"%title% %count(title)%\";s:11:\"breadcrumbs\";s:2:\"on\";s:21:\"breadcrumbs_separator\";s:1:\"/\";s:16:\"breadcrumbs_home\";s:2:\"on\";s:22:\"breadcrumbs_home_label\";s:9:\"Startsida\";s:26:\"breadcrumbs_archive_format\";s:15:\"Archives for %s\";s:25:\"breadcrumbs_search_format\";s:14:\"Results for %s\";s:21:\"breadcrumbs_404_label\";s:25:\"404 Error: page not found\";s:31:\"breadcrumbs_ancestor_categories\";s:3:\"off\";s:21:\"breadcrumbs_blog_page\";s:3:\"off\";s:16:\"404_monitor_mode\";s:6:\"simple\";s:17:\"404_monitor_limit\";i:100;s:35:\"404_monitor_ignore_query_parameters\";s:2:\"on\";s:24:\"redirections_header_code\";s:3:\"301\";s:18:\"redirections_debug\";s:3:\"off\";s:23:\"console_caching_control\";s:2:\"90\";s:21:\"console_email_reports\";s:2:\"on\";s:23:\"console_email_frequency\";s:7:\"monthly\";s:27:\"link_builder_links_per_page\";s:1:\"7\";s:29:\"link_builder_links_per_target\";s:1:\"1\";s:22:\"wc_remove_product_base\";s:3:\"off\";s:23:\"wc_remove_category_base\";s:3:\"off\";s:31:\"wc_remove_category_parent_slugs\";s:3:\"off\";s:19:\"wc_remove_generator\";s:2:\"on\";s:24:\"remove_shop_snippet_data\";s:2:\"on\";s:18:\"frontend_seo_score\";s:3:\"off\";s:29:\"frontend_seo_score_post_types\";a:1:{i:0;s:4:\"post\";}s:27:\"frontend_seo_score_position\";s:3:\"top\";s:10:\"setup_mode\";s:8:\"advanced\";s:21:\"content_ai_post_types\";a:5:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:6:\"blocks\";i:3;s:7:\"product\";i:4;s:13:\"featured_item\";}s:15:\"analytics_stats\";s:2:\"on\";s:21:\"breadcrumbs_home_link\";s:33:\"https://www.nl.ecom-expansion.com\";s:29:\"breadcrumbs_remove_post_title\";s:3:\"off\";s:30:\"breadcrumbs_hide_taxonomy_name\";s:3:\"off\";s:16:\"headless_support\";s:3:\"off\";s:27:\"frontend_seo_score_template\";s:6:\"circle\";s:17:\"support_rank_math\";s:2:\"on\";s:15:\"toc_block_title\";s:19:\"Table des matières\";s:20:\"toc_block_list_style\";s:3:\"div\";s:13:\"product_brand\";s:3:\"off\";s:18:\"content_ai_country\";s:3:\"all\";s:15:\"content_ai_tone\";s:6:\"Formal\";s:19:\"content_ai_audience\";s:16:\"General Audience\";s:19:\"content_ai_language\";s:7:\"Swedish\";s:27:\"cotnent_ai_enable_grammarly\";s:2:\"on\";}','yes'),(4717,'rank-math-options-titles','a:186:{s:24:\"noindex_empty_taxonomies\";s:2:\"on\";s:15:\"title_separator\";s:1:\"|\";s:17:\"capitalize_titles\";s:3:\"off\";s:17:\"twitter_card_type\";s:19:\"summary_large_image\";s:19:\"knowledgegraph_type\";s:7:\"company\";s:19:\"knowledgegraph_name\";s:9:\"Teng Shop\";s:12:\"website_name\";s:9:\"Teng Shop\";s:19:\"local_business_type\";s:12:\"Organization\";s:20:\"local_address_format\";s:43:\"{address} {locality}, {region} {postalcode}\";s:13:\"opening_hours\";a:7:{i:0;a:2:{s:3:\"day\";s:6:\"Monday\";s:4:\"time\";s:11:\"09:00-17:00\";}i:1;a:2:{s:3:\"day\";s:7:\"Tuesday\";s:4:\"time\";s:11:\"09:00-17:00\";}i:2;a:2:{s:3:\"day\";s:9:\"Wednesday\";s:4:\"time\";s:11:\"09:00-17:00\";}i:3;a:2:{s:3:\"day\";s:8:\"Thursday\";s:4:\"time\";s:11:\"09:00-17:00\";}i:4;a:2:{s:3:\"day\";s:6:\"Friday\";s:4:\"time\";s:11:\"09:00-17:00\";}i:5;a:2:{s:3:\"day\";s:8:\"Saturday\";s:4:\"time\";s:11:\"09:00-17:00\";}i:6;a:2:{s:3:\"day\";s:6:\"Sunday\";s:4:\"time\";s:11:\"09:00-17:00\";}}s:20:\"opening_hours_format\";s:3:\"off\";s:14:\"homepage_title\";s:34:\"%sitename% %page% %sep% %sitedesc%\";s:20:\"homepage_description\";s:0:\"\";s:22:\"homepage_custom_robots\";s:3:\"off\";s:23:\"disable_author_archives\";s:2:\"on\";s:15:\"url_author_base\";s:6:\"author\";s:20:\"author_custom_robots\";s:2:\"on\";s:13:\"author_robots\";a:1:{i:0;s:7:\"noindex\";}s:20:\"author_archive_title\";s:30:\"%name% %sep% %sitename% %page%\";s:19:\"author_add_meta_box\";s:2:\"on\";s:21:\"disable_date_archives\";s:2:\"on\";s:18:\"date_archive_title\";s:30:\"%date% %page% %sep% %sitename%\";s:12:\"search_title\";s:38:\"%search_query% %page% %sep% %sitename%\";s:9:\"404_title\";s:31:\"Page Not Found %sep% %sitename%\";s:19:\"date_archive_robots\";a:1:{i:0;s:7:\"noindex\";}s:14:\"noindex_search\";s:2:\"on\";s:24:\"noindex_archive_subpages\";s:3:\"off\";s:26:\"noindex_password_protected\";s:3:\"off\";s:32:\"pt_download_default_rich_snippet\";s:7:\"product\";s:29:\"author_slack_enhanced_sharing\";s:2:\"on\";s:13:\"pt_post_title\";s:24:\"%title% %sep% %sitename%\";s:19:\"pt_post_description\";s:9:\"%excerpt%\";s:14:\"pt_post_robots\";a:1:{i:0;s:5:\"index\";}s:21:\"pt_post_custom_robots\";s:3:\"off\";s:28:\"pt_post_default_rich_snippet\";s:7:\"article\";s:28:\"pt_post_default_article_type\";s:11:\"BlogPosting\";s:28:\"pt_post_default_snippet_name\";s:11:\"%seo_title%\";s:28:\"pt_post_default_snippet_desc\";s:17:\"%seo_description%\";s:30:\"pt_post_slack_enhanced_sharing\";s:2:\"on\";s:17:\"pt_post_ls_use_fk\";s:6:\"titles\";s:20:\"pt_post_add_meta_box\";s:2:\"on\";s:20:\"pt_post_bulk_editing\";s:7:\"editing\";s:24:\"pt_post_link_suggestions\";s:2:\"on\";s:24:\"pt_post_primary_taxonomy\";s:8:\"category\";s:13:\"pt_page_title\";s:24:\"%title% %sep% %sitename%\";s:19:\"pt_page_description\";s:9:\"%excerpt%\";s:14:\"pt_page_robots\";a:1:{i:0;s:5:\"index\";}s:21:\"pt_page_custom_robots\";s:3:\"off\";s:28:\"pt_page_default_rich_snippet\";s:7:\"article\";s:28:\"pt_page_default_article_type\";s:7:\"Article\";s:28:\"pt_page_default_snippet_name\";s:11:\"%seo_title%\";s:28:\"pt_page_default_snippet_desc\";s:17:\"%seo_description%\";s:30:\"pt_page_slack_enhanced_sharing\";s:2:\"on\";s:17:\"pt_page_ls_use_fk\";s:6:\"titles\";s:20:\"pt_page_add_meta_box\";s:2:\"on\";s:20:\"pt_page_bulk_editing\";s:7:\"editing\";s:24:\"pt_page_link_suggestions\";s:2:\"on\";s:19:\"pt_attachment_title\";s:24:\"%title% %sep% %sitename%\";s:25:\"pt_attachment_description\";s:9:\"%excerpt%\";s:20:\"pt_attachment_robots\";a:1:{i:0;s:7:\"noindex\";}s:27:\"pt_attachment_custom_robots\";s:2:\"on\";s:34:\"pt_attachment_default_rich_snippet\";s:3:\"off\";s:34:\"pt_attachment_default_article_type\";s:7:\"Article\";s:34:\"pt_attachment_default_snippet_name\";s:11:\"%seo_title%\";s:34:\"pt_attachment_default_snippet_desc\";s:17:\"%seo_description%\";s:36:\"pt_attachment_slack_enhanced_sharing\";s:3:\"off\";s:26:\"pt_attachment_add_meta_box\";s:3:\"off\";s:15:\"pt_blocks_title\";s:24:\"%title% %sep% %sitename%\";s:21:\"pt_blocks_description\";s:9:\"%excerpt%\";s:16:\"pt_blocks_robots\";a:1:{i:0;s:5:\"index\";}s:23:\"pt_blocks_custom_robots\";s:3:\"off\";s:30:\"pt_blocks_default_rich_snippet\";s:3:\"off\";s:30:\"pt_blocks_default_article_type\";s:7:\"Article\";s:30:\"pt_blocks_default_snippet_name\";s:11:\"%seo_title%\";s:30:\"pt_blocks_default_snippet_desc\";s:17:\"%seo_description%\";s:32:\"pt_blocks_slack_enhanced_sharing\";s:3:\"off\";s:19:\"pt_blocks_ls_use_fk\";s:6:\"titles\";s:22:\"pt_blocks_add_meta_box\";s:2:\"on\";s:22:\"pt_blocks_bulk_editing\";s:7:\"editing\";s:26:\"pt_blocks_link_suggestions\";s:2:\"on\";s:16:\"pt_product_title\";s:24:\"%title% %sep% %sitename%\";s:22:\"pt_product_description\";s:128:\"Ontdek onze %title% uitverkoop in onze shop! De perfecte combinatie van stijl en functionaliteit om aan je behoeften te voldoen!\";s:17:\"pt_product_robots\";a:1:{i:0;s:5:\"index\";}s:24:\"pt_product_custom_robots\";s:3:\"off\";s:31:\"pt_product_default_rich_snippet\";s:7:\"product\";s:31:\"pt_product_default_article_type\";s:7:\"Article\";s:31:\"pt_product_default_snippet_name\";s:11:\"%seo_title%\";s:31:\"pt_product_default_snippet_desc\";s:17:\"%seo_description%\";s:24:\"pt_product_archive_title\";s:31:\"%title% %page% %sep% %sitename%\";s:33:\"pt_product_slack_enhanced_sharing\";s:2:\"on\";s:20:\"pt_product_ls_use_fk\";s:6:\"titles\";s:23:\"pt_product_add_meta_box\";s:2:\"on\";s:23:\"pt_product_bulk_editing\";s:7:\"editing\";s:27:\"pt_product_link_suggestions\";s:2:\"on\";s:27:\"pt_product_primary_taxonomy\";s:11:\"product_cat\";s:22:\"pt_featured_item_title\";s:24:\"%title% %sep% %sitename%\";s:28:\"pt_featured_item_description\";s:9:\"%excerpt%\";s:23:\"pt_featured_item_robots\";a:1:{i:0;s:5:\"index\";}s:30:\"pt_featured_item_custom_robots\";s:3:\"off\";s:37:\"pt_featured_item_default_rich_snippet\";s:3:\"off\";s:37:\"pt_featured_item_default_article_type\";s:7:\"Article\";s:37:\"pt_featured_item_default_snippet_name\";s:11:\"%seo_title%\";s:37:\"pt_featured_item_default_snippet_desc\";s:17:\"%seo_description%\";s:30:\"pt_featured_item_archive_title\";s:31:\"%title% %page% %sep% %sitename%\";s:39:\"pt_featured_item_slack_enhanced_sharing\";s:3:\"off\";s:26:\"pt_featured_item_ls_use_fk\";s:6:\"titles\";s:29:\"pt_featured_item_add_meta_box\";s:2:\"on\";s:29:\"pt_featured_item_bulk_editing\";s:7:\"editing\";s:33:\"pt_featured_item_link_suggestions\";s:2:\"on\";s:18:\"pt_web-story_title\";s:24:\"%title% %sep% %sitename%\";s:24:\"pt_web-story_description\";s:9:\"%excerpt%\";s:19:\"pt_web-story_robots\";a:0:{}s:26:\"pt_web-story_custom_robots\";s:3:\"off\";s:33:\"pt_web-story_default_rich_snippet\";s:7:\"article\";s:33:\"pt_web-story_default_article_type\";s:7:\"Article\";s:33:\"pt_web-story_default_snippet_name\";s:11:\"%seo_title%\";s:33:\"pt_web-story_default_snippet_desc\";s:17:\"%seo_description%\";s:35:\"pt_web-story_slack_enhanced_sharing\";s:3:\"off\";s:25:\"pt_web-story_add_meta_box\";s:3:\"off\";s:18:\"tax_category_title\";s:23:\"%term% %sep% %sitename%\";s:19:\"tax_category_robots\";a:1:{i:0;s:5:\"index\";}s:25:\"tax_category_add_meta_box\";s:2:\"on\";s:26:\"tax_category_custom_robots\";s:3:\"off\";s:24:\"tax_category_description\";s:18:\"%term_description%\";s:35:\"tax_category_slack_enhanced_sharing\";s:2:\"on\";s:18:\"tax_post_tag_title\";s:23:\"%term% %sep% %sitename%\";s:19:\"tax_post_tag_robots\";a:1:{i:0;s:7:\"noindex\";}s:25:\"tax_post_tag_add_meta_box\";s:3:\"off\";s:26:\"tax_post_tag_custom_robots\";s:2:\"on\";s:24:\"tax_post_tag_description\";s:18:\"%term_description%\";s:35:\"tax_post_tag_slack_enhanced_sharing\";s:2:\"on\";s:21:\"tax_post_format_title\";s:23:\"%term% %sep% %sitename%\";s:22:\"tax_post_format_robots\";a:1:{i:0;s:7:\"noindex\";}s:28:\"tax_post_format_add_meta_box\";s:3:\"off\";s:29:\"tax_post_format_custom_robots\";s:2:\"on\";s:27:\"tax_post_format_description\";s:18:\"%term_description%\";s:38:\"tax_post_format_slack_enhanced_sharing\";s:2:\"on\";s:21:\"tax_product_cat_title\";s:23:\"%term% %sep% %sitename%\";s:22:\"tax_product_cat_robots\";a:1:{i:0;s:5:\"index\";}s:28:\"tax_product_cat_add_meta_box\";s:2:\"on\";s:29:\"tax_product_cat_custom_robots\";s:3:\"off\";s:27:\"tax_product_cat_description\";s:128:\"Geïnteresseerd in onze %title%? Bekijk al onze modellen in onze uitgebreide catalogus! Dompel jezelf onder in onze ruime keuze!\";s:38:\"tax_product_cat_slack_enhanced_sharing\";s:2:\"on\";s:21:\"tax_product_tag_title\";s:23:\"%term% %sep% %sitename%\";s:22:\"tax_product_tag_robots\";a:1:{i:0;s:7:\"noindex\";}s:28:\"tax_product_tag_add_meta_box\";s:3:\"off\";s:29:\"tax_product_tag_custom_robots\";s:2:\"on\";s:27:\"tax_product_tag_description\";s:18:\"%term_description%\";s:38:\"tax_product_tag_slack_enhanced_sharing\";s:2:\"on\";s:32:\"tax_featured_item_category_title\";s:23:\"%term% %sep% %sitename%\";s:33:\"tax_featured_item_category_robots\";a:1:{i:0;s:5:\"index\";}s:39:\"tax_featured_item_category_add_meta_box\";s:3:\"off\";s:40:\"tax_featured_item_category_custom_robots\";s:3:\"off\";s:38:\"tax_featured_item_category_description\";s:18:\"%term_description%\";s:49:\"tax_featured_item_category_slack_enhanced_sharing\";s:2:\"on\";s:27:\"tax_featured_item_tag_title\";s:23:\"%term% %sep% %sitename%\";s:28:\"tax_featured_item_tag_robots\";a:1:{i:0;s:5:\"index\";}s:34:\"tax_featured_item_tag_add_meta_box\";s:3:\"off\";s:35:\"tax_featured_item_tag_custom_robots\";s:3:\"off\";s:33:\"tax_featured_item_tag_description\";s:18:\"%term_description%\";s:44:\"tax_featured_item_tag_slack_enhanced_sharing\";s:2:\"on\";s:31:\"remove_product_cat_snippet_data\";s:2:\"on\";s:31:\"remove_product_tag_snippet_data\";s:2:\"on\";s:13:\"robots_global\";a:1:{i:0;s:5:\"index\";}s:22:\"advanced_robots_global\";a:3:{s:11:\"max-snippet\";s:2:\"-1\";s:17:\"max-video-preview\";s:2:\"-1\";s:17:\"max-image-preview\";s:5:\"large\";}s:3:\"url\";s:33:\"https://www.nl.ecom-expansion.com\";s:31:\"tax_post_format_advanced_robots\";a:3:{s:11:\"max-snippet\";s:2:\"-1\";s:17:\"max-video-preview\";s:2:\"-1\";s:17:\"max-image-preview\";s:5:\"large\";}s:22:\"author_advanced_robots\";a:3:{s:11:\"max-snippet\";s:2:\"-1\";s:17:\"max-video-preview\";s:2:\"-1\";s:17:\"max-image-preview\";s:5:\"large\";}s:20:\"date_advanced_robots\";a:3:{s:11:\"max-snippet\";s:2:\"-1\";s:17:\"max-video-preview\";s:2:\"-1\";s:17:\"max-image-preview\";s:5:\"large\";}s:23:\"noindex_paginated_pages\";s:3:\"off\";s:23:\"pt_post_advanced_robots\";a:3:{s:11:\"max-snippet\";s:2:\"-1\";s:17:\"max-video-preview\";s:2:\"-1\";s:17:\"max-image-preview\";s:5:\"large\";}s:23:\"pt_page_advanced_robots\";a:3:{s:11:\"max-snippet\";s:2:\"-1\";s:17:\"max-video-preview\";s:2:\"-1\";s:17:\"max-image-preview\";s:5:\"large\";}s:25:\"pt_blocks_advanced_robots\";a:3:{s:11:\"max-snippet\";s:2:\"-1\";s:17:\"max-video-preview\";s:2:\"-1\";s:17:\"max-image-preview\";s:5:\"large\";}s:26:\"pt_product_advanced_robots\";a:3:{s:11:\"max-snippet\";s:2:\"-1\";s:17:\"max-video-preview\";s:2:\"-1\";s:17:\"max-image-preview\";s:5:\"large\";}s:32:\"pt_featured_item_advanced_robots\";a:3:{s:11:\"max-snippet\";s:2:\"-1\";s:17:\"max-video-preview\";s:2:\"-1\";s:17:\"max-image-preview\";s:5:\"large\";}s:33:\"pt_featured_item_primary_taxonomy\";s:3:\"off\";s:28:\"tax_category_advanced_robots\";a:3:{s:11:\"max-snippet\";s:2:\"-1\";s:17:\"max-video-preview\";s:2:\"-1\";s:17:\"max-image-preview\";s:5:\"large\";}s:28:\"remove_category_snippet_data\";s:3:\"off\";s:28:\"tax_post_tag_advanced_robots\";a:3:{s:11:\"max-snippet\";s:2:\"-1\";s:17:\"max-video-preview\";s:2:\"-1\";s:17:\"max-image-preview\";s:5:\"large\";}s:28:\"remove_post_tag_snippet_data\";s:3:\"off\";s:31:\"tax_product_cat_advanced_robots\";a:3:{s:11:\"max-snippet\";s:2:\"-1\";s:17:\"max-video-preview\";s:2:\"-1\";s:17:\"max-image-preview\";s:5:\"large\";}s:31:\"tax_product_tag_advanced_robots\";a:3:{s:11:\"max-snippet\";s:2:\"-1\";s:17:\"max-video-preview\";s:2:\"-1\";s:17:\"max-image-preview\";s:5:\"large\";}s:42:\"tax_featured_item_category_advanced_robots\";a:3:{s:11:\"max-snippet\";s:2:\"-1\";s:17:\"max-video-preview\";s:2:\"-1\";s:17:\"max-image-preview\";s:5:\"large\";}s:42:\"remove_featured_item_category_snippet_data\";s:3:\"off\";s:37:\"tax_featured_item_tag_advanced_robots\";a:3:{s:11:\"max-snippet\";s:2:\"-1\";s:17:\"max-video-preview\";s:2:\"-1\";s:17:\"max-image-preview\";s:5:\"large\";}s:37:\"remove_featured_item_tag_snippet_data\";s:3:\"off\";}','yes'),(4718,'rank-math-options-sitemap','a:43:{s:14:\"items_per_page\";s:3:\"200\";s:14:\"include_images\";s:2:\"on\";s:22:\"include_featured_image\";s:3:\"off\";s:19:\"ping_search_engines\";s:2:\"on\";s:13:\"exclude_roles\";a:6:{s:11:\"contributor\";s:11:\"Contributor\";s:10:\"subscriber\";s:10:\"Subscriber\";s:8:\"customer\";s:8:\"Customer\";s:12:\"shop_manager\";s:12:\"Shop manager\";s:13:\"wpseo_manager\";s:11:\"SEO Manager\";s:12:\"wpseo_editor\";s:10:\"SEO Editor\";}s:12:\"html_sitemap\";s:2:\"on\";s:20:\"html_sitemap_display\";s:9:\"shortcode\";s:17:\"html_sitemap_sort\";s:9:\"published\";s:23:\"html_sitemap_seo_titles\";s:6:\"titles\";s:15:\"authors_sitemap\";s:2:\"on\";s:15:\"pt_post_sitemap\";s:2:\"on\";s:15:\"pt_page_sitemap\";s:2:\"on\";s:21:\"pt_attachment_sitemap\";s:3:\"off\";s:17:\"pt_blocks_sitemap\";s:2:\"on\";s:18:\"pt_product_sitemap\";s:2:\"on\";s:24:\"pt_featured_item_sitemap\";s:2:\"on\";s:20:\"pt_web-story_sitemap\";s:3:\"off\";s:20:\"tax_category_sitemap\";s:2:\"on\";s:20:\"tax_post_tag_sitemap\";s:3:\"off\";s:23:\"tax_post_format_sitemap\";s:3:\"off\";s:23:\"tax_product_cat_sitemap\";s:2:\"on\";s:23:\"tax_product_tag_sitemap\";s:3:\"off\";s:34:\"tax_featured_item_category_sitemap\";s:3:\"off\";s:29:\"tax_featured_item_tag_sitemap\";s:3:\"off\";s:23:\"html_sitemap_show_dates\";s:2:\"on\";s:20:\"pt_post_html_sitemap\";s:2:\"on\";s:20:\"pt_page_html_sitemap\";s:2:\"on\";s:26:\"pt_attachment_html_sitemap\";s:3:\"off\";s:22:\"pt_blocks_html_sitemap\";s:2:\"on\";s:23:\"pt_product_html_sitemap\";s:2:\"on\";s:29:\"pt_featured_item_html_sitemap\";s:2:\"on\";s:25:\"tax_category_html_sitemap\";s:2:\"on\";s:26:\"tax_category_include_empty\";s:3:\"off\";s:25:\"tax_post_tag_html_sitemap\";s:3:\"off\";s:26:\"tax_post_tag_include_empty\";s:3:\"off\";s:28:\"tax_product_cat_html_sitemap\";s:2:\"on\";s:29:\"tax_product_cat_include_empty\";s:3:\"off\";s:28:\"tax_product_tag_html_sitemap\";s:3:\"off\";s:29:\"tax_product_tag_include_empty\";s:3:\"off\";s:39:\"tax_featured_item_category_html_sitemap\";s:3:\"off\";s:40:\"tax_featured_item_category_include_empty\";s:3:\"off\";s:34:\"tax_featured_item_tag_html_sitemap\";s:3:\"off\";s:35:\"tax_featured_item_tag_include_empty\";s:3:\"off\";}','yes'),(4719,'rank-math-options-instant-indexing','a:2:{s:15:\"bing_post_types\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:16:\"indexnow_api_key\";s:32:\"92ca1e823f824ebd912f3fc568769d8f\";}','yes'),(4722,'rank_math_version','1.0.211','yes'),(4723,'rank_math_db_version','1','yes'),(4724,'rank_math_install_date','1670248705','yes'),(4729,'rank_math_registration_skip','1','yes'),(4731,'rank_math_pro_notice_date','1671112724','no'),(4732,'rank_math_review_posts_converted','1','yes'),(4733,'_transient_rank_math_first_submenu_id','rank-math','yes'),(4734,'rank_math_content_ai_viewed','1','yes'),(4735,'rank_math_wizard_completed','1','yes'),(4736,'_transient__rank_math_conflicting_plugins','a:1:{i:0;s:24:\"wordpress-seo/wp-seo.php\";}','yes'),(4747,'rank_math_is_configured','1','yes'),(4763,'rank_math_indexnow_log','a:100:{i:0;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699456132;}i:1;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699456284;}i:2;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699456402;}i:3;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699456618;}i:4;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699457027;}i:5;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699457189;}i:6;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699457280;}i:7;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699458322;}i:8;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699459031;}i:9;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699460224;}i:10;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699460333;}i:11;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699460623;}i:12;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699535464;}i:13;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699535524;}i:14;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699535862;}i:15;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699536015;}i:16;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699536077;}i:17;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699537252;}i:18;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699537438;}i:19;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699537477;}i:20;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699537536;}i:21;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699537555;}i:22;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699537655;}i:23;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699537844;}i:24;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699537932;}i:25;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699538262;}i:26;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699538291;}i:27;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699540268;}i:28;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699540316;}i:29;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699540344;}i:30;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699540354;}i:31;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699545470;}i:32;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699545532;}i:33;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699545563;}i:34;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699545709;}i:35;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699545776;}i:36;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699545797;}i:37;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699545860;}i:38;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699545925;}i:39;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699545955;}i:40;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699545979;}i:41;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699546005;}i:42;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699546026;}i:43;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699546061;}i:44;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699546077;}i:45;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699546246;}i:46;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699546297;}i:47;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699546344;}i:48;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699546381;}i:49;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699546446;}i:50;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699546492;}i:51;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699547127;}i:52;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699547312;}i:53;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:0;s:17:\"manual_submission\";b:0;s:7:\"message\";s:90:\"WP_Error: cURL error 28: Operation timed out after 5001 milliseconds with 0 bytes received\";s:4:\"time\";i:1699547378;}i:54;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699547437;}i:55;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699547454;}i:56;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699547488;}i:57;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699547523;}i:58;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699547559;}i:59;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699547590;}i:60;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699547685;}i:61;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699547702;}i:62;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699547762;}i:63;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699547837;}i:64;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699547893;}i:65;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699547934;}i:66;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699547964;}i:67;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699547994;}i:68;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699548017;}i:69;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699548061;}i:70;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699548087;}i:71;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699548107;}i:72;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699548141;}i:73;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699548200;}i:74;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699548216;}i:75;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699548314;}i:76;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699548339;}i:77;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:0;s:17:\"manual_submission\";b:0;s:7:\"message\";s:90:\"WP_Error: cURL error 28: Operation timed out after 5000 milliseconds with 0 bytes received\";s:4:\"time\";i:1699548364;}i:78;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699548418;}i:79;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699548447;}i:80;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699548896;}i:81;a:5:{s:3:\"url\";s:61:\"https://www.nl.ecom-expansion.com/15-kinesiska-lyckosymboler/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699670453;}i:82;a:5:{s:3:\"url\";s:63:\"https://www.nl.ecom-expansion.com/kinapinnar-ursprung-historia/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699670454;}i:83;a:5:{s:3:\"url\";s:73:\"https://www.nl.ecom-expansion.com/historia-betydelse-kinesiska-lanternor/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699670454;}i:84;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699727768;}i:85;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699903013;}i:86;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1699904200;}i:87;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:200;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1700065124;}i:88;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:202;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1700097317;}i:89;a:5:{s:3:\"url\";s:49:\"https://www.nl.ecom-expansion.com/alle-producten/\";s:6:\"status\";i:202;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1700324932;}i:90;a:5:{s:3:\"url\";s:39:\"https://www.nl.ecom-expansion.com/blog/\";s:6:\"status\";i:202;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1700325733;}i:91;a:5:{s:3:\"url\";s:44:\"https://www.nl.ecom-expansion.com/afrekenen/\";s:6:\"status\";i:202;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1700326519;}i:92;a:5:{s:3:\"url\";s:47:\"https://www.nl.ecom-expansion.com/mijn-account/\";s:6:\"status\";i:202;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1700326887;}i:93;a:5:{s:3:\"url\";s:55:\"https://www.nl.ecom-expansion.com/je-bestelling-volgen/\";s:6:\"status\";i:202;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1700326937;}i:94;a:5:{s:3:\"url\";s:47:\"https://www.nl.ecom-expansion.com/winkelmandje/\";s:6:\"status\";i:202;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1700327007;}i:95;a:5:{s:3:\"url\";s:55:\"https://www.nl.ecom-expansion.com/je-bestelling-volgen/\";s:6:\"status\";i:202;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1700327119;}i:96;a:5:{s:3:\"url\";s:47:\"https://www.nl.ecom-expansion.com/parcel-panel/\";s:6:\"status\";i:202;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1700327171;}i:97;a:5:{s:3:\"url\";s:55:\"https://www.nl.ecom-expansion.com/je-bestelling-volgen/\";s:6:\"status\";i:202;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1700327235;}i:98;a:5:{s:3:\"url\";s:55:\"https://www.nl.ecom-expansion.com/je-bestelling-volgen/\";s:6:\"status\";i:202;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1700327271;}i:99;a:5:{s:3:\"url\";s:34:\"https://www.nl.ecom-expansion.com/\";s:6:\"status\";i:202;s:17:\"manual_submission\";b:0;s:7:\"message\";s:2:\"OK\";s:4:\"time\";i:1702511587;}}','no'),(4785,'rank_math_yoast_block_posts','a:2:{s:5:\"posts\";a:0:{}s:5:\"count\";i:0;}','yes'),(4786,'rank_math_old_schema_data','a:0:{}','yes'),(6861,'https_migration_required','1','yes'),(7682,'litespeed.admin_display._summary','{\"new_version.last_check\":1702743948,\"new_version.v\":\"6.0.0.1\"}','yes'),(7694,'litespeed.optimize.timestamp_purge_css','1703304392','yes'),(8461,'woocommerce_checkout_phone_field','required','yes'),(8889,'woocommerce_shop_page_display','','yes'),(9196,'nsl-version','3.1.11','yes'),(9197,'widget_nextend_social_login','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(9356,'woocommerce_checkout_terms_and_conditions_checkbox_text','Jag har läst och accepterar [terms].','yes'),(9454,'secret_key','cl8yAht/*U/C4zUOV&%S#dc`.),vpe8pyvSpI?[IH|2*xKa*=Ee*~?Rx6abJan&k','no'),(10633,'yith_wcwl_color_add_to_wishlist','a:6:{s:10:\"background\";s:7:\"#333333\";s:4:\"text\";s:7:\"#FFFFFF\";s:6:\"border\";s:7:\"#333333\";s:16:\"background_hover\";s:7:\"#333333\";s:10:\"text_hover\";s:7:\"#FFFFFF\";s:12:\"border_hover\";s:7:\"#333333\";}','yes'),(10642,'yith_wcwl_color_add_to_cart','a:6:{s:10:\"background\";s:7:\"#333333\";s:4:\"text\";s:7:\"#FFFFFF\";s:6:\"border\";s:7:\"#333333\";s:16:\"background_hover\";s:7:\"#4F4F4F\";s:10:\"text_hover\";s:7:\"#FFFFFF\";s:12:\"border_hover\";s:7:\"#4F4F4F\";}','yes'),(10643,'yith_wcwl_color_button_style_1','a:6:{s:10:\"background\";s:7:\"#333333\";s:4:\"text\";s:7:\"#FFFFFF\";s:6:\"border\";s:7:\"#333333\";s:16:\"background_hover\";s:7:\"#4F4F4F\";s:10:\"text_hover\";s:7:\"#FFFFFF\";s:12:\"border_hover\";s:7:\"#4F4F4F\";}','yes'),(10644,'yith_wcwl_color_button_style_2','a:6:{s:10:\"background\";s:7:\"#333333\";s:4:\"text\";s:7:\"#FFFFFF\";s:6:\"border\";s:7:\"#333333\";s:16:\"background_hover\";s:7:\"#4F4F4F\";s:10:\"text_hover\";s:7:\"#FFFFFF\";s:12:\"border_hover\";s:7:\"#4F4F4F\";}','yes'),(10645,'yith_wcwl_color_wishlist_table','a:3:{s:10:\"background\";s:7:\"#FFFFFF\";s:4:\"text\";s:7:\"#6d6c6c\";s:6:\"border\";s:7:\"#FFFFFF\";}','yes'),(10646,'yith_wcwl_color_share_button','a:2:{s:5:\"color\";s:7:\"#FFFFFF\";s:11:\"color_hover\";s:7:\"#FFFFFF\";}','yes'),(10647,'yith_wcwl_color_fb_button','a:2:{s:10:\"background\";s:7:\"#39599E\";s:16:\"background_hover\";s:7:\"#595A5A\";}','yes'),(10648,'yith_wcwl_color_tw_button','a:2:{s:10:\"background\";s:7:\"#45AFE2\";s:16:\"background_hover\";s:7:\"#595A5A\";}','yes'),(10649,'yith_wcwl_color_pr_button','a:2:{s:10:\"background\";s:7:\"#AB2E31\";s:16:\"background_hover\";s:7:\"#595A5A\";}','yes'),(10650,'yith_wcwl_color_em_button','a:2:{s:10:\"background\";s:7:\"#FBB102\";s:16:\"background_hover\";s:7:\"#595A5A\";}','yes'),(10651,'yith_wcwl_color_wa_button','a:2:{s:10:\"background\";s:7:\"#00A901\";s:16:\"background_hover\";s:7:\"#595A5A\";}','yes'),(10866,'wp_calendar_block_has_published_posts','','yes'),(17874,'ewd-otp-permission-level','a:1:{i:0;s:1:\"1\";}','yes'),(17875,'ewd-otp-settings','a:15:{s:14:\"email-messages\";s:141:\"[{\"id\":1,\"name\":\"Default\",\"subject\":\"Order Status Update\",\"message\":\"Hello [order-name], You have an update for your order [order-number]!\"}]\";s:8:\"statuses\";s:469:\"[{\"status\":\"Pending Payment\",\"percentage\":\"25\",\"email\":1,\"internal\":\"no\"},{\"status\":\"Processing\",\"percentage\":\"50\",\"email\":1,\"internal\":\"no\"},{\"status\":\"On Hold\",\"percentage\":\"50\",\"email\":1,\"internal\":\"no\"},{\"status\":\"Completed\",\"percentage\":\"100\",\"email\":1,\"internal\":\"no\"},{\"status\":\"Cancelled\",\"percentage\":\"0\",\"email\":1,\"internal\":\"no\"},{\"status\":\"Refunded\",\"percentage\":\"0\",\"email\":1,\"internal\":\"no\"},{\"status\":\"Failed\",\"percentage\":\"0\",\"email\":1,\"internal\":\"no\"}]\";s:17:\"order-information\";a:6:{i:0;s:12:\"order_number\";i:1;s:10:\"order_name\";i:2;s:12:\"order_status\";i:3;s:14:\"order_location\";i:4;s:13:\"order_updated\";i:5;s:11:\"order_notes\";}s:15:\"email-frequency\";s:6:\"change\";s:17:\"form-instructions\";s:65:\"Enter the order number you would like to track in the form below.\";s:17:\"hide-blank-fields\";s:1:\"1\";s:10:\"custom-css\";s:0:\"\";s:11:\"date-format\";s:0:\"\";s:20:\"disable-ajax-loading\";s:0:\"\";s:10:\"new-window\";s:0:\"\";s:20:\"display-print-button\";s:0:\"\";s:18:\"email-verification\";s:1:\"1\";s:19:\"google-maps-api-key\";s:0:\"\";s:17:\"tracking-page-url\";s:0:\"\";s:15:\"use-wp-timezone\";s:0:\"\";}','yes'),(17876,'ewd-otp-installation-time','1672510923','yes'),(18388,'nextend_social_login','s:4447:\"a:101:{s:7:\"enabled\";a:2:{i:0;s:8:\"facebook\";i:1;s:6:\"google\";}s:18:\"register-flow-page\";s:0:\"\";s:10:\"proxy-page\";s:0:\"\";s:8:\"ordering\";a:3:{i:0;s:8:\"facebook\";i:1;s:6:\"google\";i:2;s:7:\"twitter\";}s:8:\"licenses\";a:0:{}s:10:\"terms_show\";i:1;s:5:\"terms\";s:116:\"By clicking Register, you accept our <a href=\"#privacy_policy_url\" target=\"_blank\" rel=\"noopener\">Privacy Policy</a>\";s:10:\"store_name\";i:1;s:11:\"store_email\";i:1;s:12:\"avatar_store\";i:1;s:18:\"store_access_token\";i:1;s:25:\"redirect_prevent_external\";i:1;s:8:\"redirect\";s:0:\"\";s:12:\"redirect_reg\";s:0:\"\";s:16:\"default_redirect\";s:0:\"\";s:20:\"default_redirect_reg\";s:0:\"\";s:16:\"blacklisted_urls\";s:0:\"\";s:16:\"redirect_overlay\";s:32:\"overlay-with-spinner-and-message\";s:6:\"target\";s:12:\"prefer-popup\";s:14:\"allow_register\";i:1;s:12:\"allow_unlink\";i:1;s:15:\"show_login_form\";s:4:\"show\";s:23:\"login_form_button_align\";s:6:\"center\";s:22:\"show_registration_form\";s:4:\"show\";s:23:\"login_form_button_style\";s:7:\"default\";s:17:\"login_form_layout\";s:5:\"below\";s:24:\"show_embedded_login_form\";s:4:\"show\";s:32:\"embedded_login_form_button_align\";s:4:\"left\";s:32:\"embedded_login_form_button_style\";s:7:\"default\";s:26:\"embedded_login_form_layout\";s:5:\"below\";s:14:\"custom_actions\";s:0:\"\";s:27:\"custom_actions_button_style\";s:7:\"default\";s:28:\"custom_actions_button_layout\";s:7:\"default\";s:27:\"custom_actions_button_align\";s:4:\"left\";s:20:\"comment_login_button\";s:4:\"show\";s:20:\"comment_button_align\";s:4:\"left\";s:20:\"comment_button_style\";s:7:\"default\";s:26:\"buddypress_register_button\";s:32:\"bp_before_account_details_fields\";s:32:\"buddypress_register_button_align\";s:4:\"left\";s:32:\"buddypress_register_button_style\";s:7:\"default\";s:31:\"buddypress_register_form_layout\";s:7:\"default\";s:16:\"buddypress_login\";s:4:\"show\";s:28:\"buddypress_login_form_layout\";s:7:\"default\";s:29:\"buddypress_login_button_style\";s:7:\"default\";s:24:\"buddypress_sidebar_login\";s:4:\"show\";s:30:\"buddypress_social_accounts_tab\";s:4:\"show\";s:17:\"woocommerce_login\";s:5:\"after\";s:29:\"woocommerce_login_form_layout\";s:7:\"default\";s:20:\"woocommerce_register\";s:5:\"after\";s:32:\"woocommerce_register_form_layout\";s:7:\"default\";s:19:\"woocommerce_billing\";s:6:\"before\";s:31:\"woocommerce_billing_form_layout\";s:7:\"default\";s:30:\"woocoommerce_form_button_style\";s:7:\"default\";s:30:\"woocoommerce_form_button_align\";s:4:\"left\";s:27:\"woocommerce_account_details\";s:6:\"before\";s:15:\"woocommerce_cfw\";s:4:\"show\";s:22:\"woocommerce_cfw_layout\";s:5:\"below\";s:17:\"memberpress_login\";s:6:\"before\";s:29:\"memberpress_form_button_align\";s:4:\"left\";s:35:\"memberpress_login_form_button_style\";s:7:\"default\";s:29:\"memberpress_login_form_layout\";s:15:\"below-separator\";s:18:\"memberpress_signup\";s:6:\"before\";s:36:\"memberpress_signup_form_button_style\";s:7:\"default\";s:30:\"memberpress_signup_form_layout\";s:15:\"below-separator\";s:27:\"memberpress_account_details\";s:5:\"after\";s:32:\"registration_notification_notify\";s:1:\"0\";s:5:\"debug\";s:1:\"0\";s:12:\"bypass_cache\";s:1:\"1\";s:21:\"show_linked_providers\";s:1:\"0\";s:17:\"login_restriction\";i:1;s:20:\"avatars_in_all_media\";s:1:\"0\";s:21:\"custom_register_label\";s:1:\"0\";s:12:\"review_state\";i:-1;s:21:\"woocommerce_dismissed\";i:1;s:40:\"woocoommerce_registration_email_template\";s:11:\"woocommerce\";s:23:\"userpro_show_login_form\";s:4:\"show\";s:26:\"userpro_show_register_form\";s:4:\"show\";s:31:\"userpro_login_form_button_style\";s:7:\"default\";s:25:\"userpro_login_form_layout\";s:5:\"below\";s:34:\"userpro_register_form_button_style\";s:7:\"default\";s:28:\"userpro_register_form_layout\";s:5:\"below\";s:25:\"userpro_form_button_align\";s:4:\"left\";s:20:\"ultimatemember_login\";s:5:\"after\";s:38:\"ultimatemember_login_form_button_style\";s:7:\"default\";s:32:\"ultimatemember_login_form_layout\";s:15:\"below-separator\";s:23:\"ultimatemember_register\";s:5:\"after\";s:41:\"ultimatemember_register_form_button_style\";s:7:\"default\";s:35:\"ultimatemember_register_form_layout\";s:15:\"below-separator\";s:30:\"ultimatemember_account_details\";s:5:\"after\";s:32:\"ultimatemember_form_button_align\";s:4:\"left\";s:9:\"edd_login\";s:5:\"after\";s:27:\"edd_login_form_button_style\";s:7:\"default\";s:21:\"edd_login_form_layout\";s:7:\"default\";s:12:\"edd_register\";s:5:\"after\";s:30:\"edd_register_form_button_style\";s:7:\"default\";s:24:\"edd_register_form_layout\";s:7:\"default\";s:12:\"edd_checkout\";s:10:\"form_after\";s:30:\"edd_checkout_form_button_style\";s:7:\"default\";s:24:\"edd_checkout_form_layout\";s:7:\"default\";s:21:\"edd_form_button_align\";s:4:\"left\";s:15:\"admin_bar_roles\";a:0:{}}\";','yes'),(18429,'nsl_facebook','s:1811:\"a:41:{s:14:\"settings_saved\";i:1;s:6:\"tested\";i:1;s:21:\"custom_default_button\";s:0:\"\";s:18:\"custom_icon_button\";s:0:\"\";s:11:\"login_label\";s:29:\"Continue with <b>Facebook</b>\";s:14:\"register_label\";s:28:\"Sign up with <b>Facebook</b>\";s:10:\"link_label\";s:33:\"Link account with <b>Facebook</b>\";s:12:\"unlink_label\";s:35:\"Unlink account from <b>Facebook</b>\";s:11:\"user_prefix\";s:0:\"\";s:13:\"user_fallback\";s:0:\"\";s:18:\"oauth_redirect_url\";s:65:\"https://www.nl.ecom-expansion.com/wp-login.php?loginSocial=facebook\";s:5:\"terms\";s:0:\"\";s:21:\"sync_profile/register\";i:1;s:18:\"sync_profile/login\";i:1;s:17:\"sync_profile/link\";i:1;s:16:\"sync_fields/link\";i:0;s:17:\"sync_fields/login\";i:0;s:9:\"ask_email\";s:10:\"when-empty\";s:8:\"ask_user\";s:5:\"never\";s:12:\"ask_password\";s:5:\"never\";s:9:\"auto_link\";s:5:\"email\";s:14:\"disabled_roles\";a:0:{}s:14:\"register_roles\";a:1:{i:0;s:7:\"default\";}s:36:\"sync_fields/fields/age_range/enabled\";i:0;s:37:\"sync_fields/fields/age_range/meta_key\";s:18:\"facebook_age_range\";s:35:\"sync_fields/fields/birthday/enabled\";i:0;s:36:\"sync_fields/fields/birthday/meta_key\";s:17:\"facebook_birthday\";s:31:\"sync_fields/fields/link/enabled\";i:0;s:32:\"sync_fields/fields/link/meta_key\";s:13:\"facebook_link\";s:35:\"sync_fields/fields/hometown/enabled\";i:0;s:36:\"sync_fields/fields/hometown/meta_key\";s:17:\"facebook_hometown\";s:35:\"sync_fields/fields/location/enabled\";i:0;s:36:\"sync_fields/fields/location/meta_key\";s:17:\"facebook_location\";s:33:\"sync_fields/fields/gender/enabled\";i:0;s:34:\"sync_fields/fields/gender/meta_key\";s:15:\"facebook_gender\";s:33:\"sync_fields/fields/quotes/enabled\";i:0;s:34:\"sync_fields/fields/quotes/meta_key\";s:15:\"facebook_quotes\";s:5:\"appid\";s:15:\"719785872793912\";s:6:\"secret\";s:32:\"a82c547fbdf9b243c7afc7204d5699f9\";s:4:\"skin\";s:4:\"dark\";s:18:\"profile_image_size\";s:7:\"default\";','yes'),(18458,'nsl_google','s:2257:\"a:47:{s:14:\"settings_saved\";i:1;s:6:\"tested\";i:1;s:21:\"custom_default_button\";s:0:\"\";s:18:\"custom_icon_button\";s:0:\"\";s:11:\"login_label\";s:27:\"Continue with <b>Google</b>\";s:14:\"register_label\";s:26:\"Sign up with <b>Google</b>\";s:10:\"link_label\";s:31:\"Link account with <b>Google</b>\";s:12:\"unlink_label\";s:33:\"Unlink account from <b>Google</b>\";s:11:\"user_prefix\";s:0:\"\";s:13:\"user_fallback\";s:0:\"\";s:18:\"oauth_redirect_url\";s:63:\"https://www.nl.ecom-expansion.com/wp-login.php?loginSocial=google\";s:5:\"terms\";s:0:\"\";s:21:\"sync_profile/register\";i:1;s:18:\"sync_profile/login\";i:1;s:17:\"sync_profile/link\";i:1;s:16:\"sync_fields/link\";i:0;s:17:\"sync_fields/login\";i:0;s:9:\"ask_email\";s:10:\"when-empty\";s:8:\"ask_user\";s:5:\"never\";s:12:\"ask_password\";s:5:\"never\";s:9:\"auto_link\";s:5:\"email\";s:14:\"disabled_roles\";a:0:{}s:14:\"register_roles\";a:1:{i:0;s:7:\"default\";}s:33:\"sync_fields/fields/locale/enabled\";i:0;s:34:\"sync_fields/fields/locale/meta_key\";s:13:\"google_locale\";s:34:\"sync_fields/fields/genders/enabled\";i:0;s:35:\"sync_fields/fields/genders/meta_key\";s:14:\"google_genders\";s:38:\"sync_fields/fields/biographies/enabled\";i:0;s:39:\"sync_fields/fields/biographies/meta_key\";s:18:\"google_biographies\";s:36:\"sync_fields/fields/birthdays/enabled\";i:0;s:37:\"sync_fields/fields/birthdays/meta_key\";s:16:\"google_birthdays\";s:38:\"sync_fields/fields/occupations/enabled\";i:0;s:39:\"sync_fields/fields/occupations/meta_key\";s:18:\"google_occupations\";s:40:\"sync_fields/fields/organizations/enabled\";i:0;s:41:\"sync_fields/fields/organizations/meta_key\";s:20:\"google_organizations\";s:36:\"sync_fields/fields/locations/enabled\";i:0;s:37:\"sync_fields/fields/locations/meta_key\";s:16:\"google_locations\";s:36:\"sync_fields/fields/ageRanges/enabled\";i:0;s:37:\"sync_fields/fields/ageRanges/meta_key\";s:16:\"google_ageRanges\";s:36:\"sync_fields/fields/addresses/enabled\";i:0;s:37:\"sync_fields/fields/addresses/meta_key\";s:16:\"google_addresses\";s:39:\"sync_fields/fields/phoneNumbers/enabled\";i:0;s:40:\"sync_fields/fields/phoneNumbers/meta_key\";s:19:\"google_phoneNumbers\";s:9:\"client_id\";s:72:\"717434584257-3g0mg4thqeql24pa9fi2b89ckf1j7rlm.apps.googleusercontent.com\";s:13:\"client_secret\";s:35:\"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\";s:14:\"select_account\";i:1;s:4:\"skin\";s:5:\"light\";','yes'),(18630,'ewd-otp-review-ask-time','1678802594','yes'),(19946,'vi_s2w_update_data_new_version_free','1674064374','yes'),(19947,'import-shopify-to-woocommerce_start_use','1','yes'),(19981,'vi_s2w_update_data_new_version','1674065295','yes'),(19983,'s2w-import-shopify-to-woocommerce_1.1.12_dismiss_notices','1674065307','yes'),(19987,'s2w_params','a:90:{s:21:\"download_images_later\";s:1:\"1\";s:21:\"csv_if_product_exists\";s:4:\"skip\";s:22:\"webhooks_shared_secret\";s:0:\"\";s:22:\"webhooks_orders_enable\";s:0:\"\";s:31:\"webhooks_orders_create_customer\";s:0:\"\";s:23:\"webhooks_orders_options\";a:1:{i:0;s:12:\"order_status\";}s:29:\"webhooks_order_status_mapping\";b:0;s:24:\"webhooks_products_enable\";s:0:\"\";s:25:\"webhooks_products_options\";a:1:{i:0;s:9:\"inventory\";}s:25:\"webhooks_customers_enable\";s:0:\"\";s:18:\"cron_update_orders\";s:0:\"\";s:29:\"cron_update_orders_force_sync\";i:0;s:26:\"cron_update_orders_options\";a:1:{i:0;s:6:\"status\";}s:25:\"cron_update_orders_status\";a:3:{i:0;s:10:\"wc-pending\";i:1;s:10:\"wc-on-hold\";i:2;s:13:\"wc-processing\";}s:24:\"cron_update_orders_range\";i:30;s:27:\"cron_update_orders_interval\";i:5;s:23:\"cron_update_orders_hour\";i:0;s:25:\"cron_update_orders_minute\";i:0;s:25:\"cron_update_orders_second\";i:0;s:20:\"cron_update_products\";s:0:\"\";s:31:\"cron_update_products_force_sync\";i:0;s:28:\"cron_update_products_options\";a:1:{i:0;s:9:\"inventory\";}s:27:\"cron_update_products_status\";a:1:{i:0;s:7:\"publish\";}s:31:\"cron_update_products_categories\";a:0:{}s:29:\"cron_update_products_interval\";i:5;s:25:\"cron_update_products_hour\";i:0;s:27:\"cron_update_products_minute\";i:0;s:27:\"cron_update_products_second\";i:0;s:25:\"update_order_options_show\";i:1;s:20:\"update_order_options\";a:2:{i:0;s:12:\"order_status\";i:1;s:10:\"order_date\";}s:27:\"update_product_options_show\";i:1;s:22:\"update_product_options\";a:2:{i:0;s:6:\"images\";i:1;s:5:\"price\";}s:25:\"update_product_metafields\";a:0:{}s:21:\"customers_per_request\";s:3:\"100\";s:14:\"customers_role\";s:8:\"customer\";s:29:\"customers_with_purchases_only\";s:1:\"0\";s:25:\"update_existing_customers\";s:1:\"0\";s:19:\"coupons_per_request\";s:3:\"100\";s:20:\"coupon_starts_at_min\";s:0:\"\";s:20:\"coupon_starts_at_max\";s:0:\"\";s:18:\"coupon_ends_at_min\";s:0:\"\";s:18:\"coupon_ends_at_max\";s:0:\"\";s:22:\"coupon_zero_times_used\";s:1:\"1\";s:14:\"order_since_id\";s:0:\"\";s:22:\"order_processed_at_min\";s:0:\"\";s:22:\"order_processed_at_max\";s:0:\"\";s:22:\"order_financial_status\";s:3:\"any\";s:24:\"order_fulfillment_status\";s:3:\"any\";s:18:\"orders_per_request\";s:2:\"50\";s:19:\"order_tag_to_status\";a:0:{}s:20:\"order_status_mapping\";a:7:{s:7:\"pending\";s:7:\"pending\";s:10:\"authorized\";s:10:\"processing\";s:14:\"partially_paid\";s:9:\"completed\";s:4:\"paid\";s:9:\"completed\";s:8:\"refunded\";s:8:\"refunded\";s:18:\"partially_refunded\";s:8:\"refunded\";s:6:\"voided\";s:9:\"cancelled\";}s:21:\"order_import_sequence\";s:4:\"desc\";s:15:\"download_images\";s:1:\"1\";s:18:\"use_external_image\";s:0:\"\";s:26:\"disable_background_process\";s:1:\"0\";s:27:\"download_description_images\";s:1:\"1\";s:9:\"keep_slug\";s:1:\"1\";s:14:\"product_status\";s:7:\"publish\";s:22:\"product_status_mapping\";a:3:{s:6:\"active\";s:7:\"publish\";s:8:\"archived\";s:7:\"pending\";s:5:\"draft\";s:5:\"draft\";}s:18:\"product_categories\";a:0:{}s:20:\"products_per_request\";s:1:\"5\";s:23:\"product_import_sequence\";s:9:\"title asc\";s:16:\"product_since_id\";s:0:\"\";s:20:\"product_product_type\";s:0:\"\";s:21:\"product_collection_id\";s:0:\"\";s:14:\"product_vendor\";s:0:\"\";s:22:\"product_created_at_min\";s:0:\"\";s:22:\"product_created_at_max\";s:0:\"\";s:24:\"product_published_at_min\";s:0:\"\";s:24:\"product_published_at_max\";s:0:\"\";s:17:\"global_attributes\";s:1:\"0\";s:12:\"variable_sku\";s:20:\"{shopify_product_id}\";s:15:\"product_type_as\";s:0:\"\";s:17:\"product_type_meta\";s:0:\"\";s:17:\"product_vendor_as\";s:0:\"\";s:19:\"product_vendor_meta\";s:0:\"\";s:20:\"product_barcode_meta\";s:0:\"\";s:14:\"product_author\";s:0:\"\";s:24:\"update_existing_products\";s:1:\"0\";s:6:\"domain\";s:29:\"test12354fsdfef.myshopify.com\";s:12:\"access_token\";s:38:\"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\";s:7:\"api_key\";s:0:\"\";s:10:\"api_secret\";s:0:\"\";s:6:\"number\";s:0:\"\";s:8:\"validate\";i:1;s:15:\"auto_update_key\";s:0:\"\";s:15:\"request_timeout\";s:2:\"60\";s:18:\"spages_per_request\";s:2:\"10\";s:21:\"blogs_update_if_exist\";a:0:{}s:12:\"capabilities\";a:8:{s:15:\"change_settings\";s:14:\"manage_options\";s:13:\"cron_products\";s:18:\"manage_woocommerce\";s:11:\"cron_orders\";s:18:\"manage_woocommerce\";s:8:\"webhooks\";s:14:\"manage_options\";s:12:\"import_by_id\";s:18:\"manage_woocommerce\";s:10:\"import_csv\";s:18:\"manage_woocommerce\";s:13:\"failed_images\";s:18:\"manage_woocommerce\";s:11:\"access_logs\";s:18:\"manage_woocommerce\";}}','yes'),(19991,'s2w_test12354fsdfef.myshopify.com_history','a:10:{s:14:\"total_products\";i:533;s:11:\"total_pages\";d:3;s:17:\"current_import_id\";i:7818013049068;s:22:\"current_import_product\";i:32;s:19:\"current_import_page\";i:3;s:17:\"products_per_file\";i:250;s:18:\"last_product_error\";s:0:\"\";s:9:\"page_info\";s:152:\"eyJkaXJlY3Rpb24iOiJuZXh0Iiwib3JkZXIiOiJ0aXRsZSBhc2MiLCJsYXN0X2lkIjo3ODE4MDE0MDY0ODc2LCJsYXN0X3ZhbHVlIjoiVmVzdGUgQ2hpbm9pc2UgRmVtbWUgPGJyPiBWaW9sZXR0ZSJ9\";s:13:\"page_info_num\";i:3;s:4:\"time\";i:1674044440;}','yes'),(19992,'s2w_woocommerce_placeholder_img_src','2624','yes'),(22442,'s2w-import-shopify-to-woocommerce_messages','a:3:{s:7:\"message\";s:90:\"Key is being verified. You can check Auto Update Key at https://villatheme.com/my-download\";s:6:\"status\";i:0;s:6:\"update\";i:0;}','yes'),(22458,'seedprod_migration_run_once','1','yes'),(22459,'seedprod_run_activation','1','yes'),(22460,'seedprod_settings','{\"api_key\":\"\",\"enable_coming_soon_mode\":false,\"enable_maintenance_mode\":false,\"enable_login_mode\":false,\"enable_404_mode\":false}','yes'),(22461,'seedprod_over_time','a:3:{s:17:\"installed_version\";s:6:\"6.15.7\";s:14:\"installed_date\";i:1674066565;s:13:\"installed_pro\";s:4:\"lite\";}','yes'),(22462,'seedprod_token','a1e8026f-f7b2-497c-a738-bc7d625fcb18','yes'),(22466,'seedprod_notifications','a:4:{s:6:\"update\";i:1705880282;s:4:\"feed\";a:0:{}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:3:{i:0;s:2:\"35\";i:1;s:2:\"36\";i:2;s:2:\"51\";}}','yes'),(22467,'seedprod_dismiss_setup_wizard','1','yes'),(22468,'seedprod_review','a:2:{s:4:\"time\";i:1674856540;s:9:\"dismissed\";b:1;}','yes'),(22469,'seedprod_app_settings','{  \n   \"facebook_g_app_id\":\"\",\n   \"disable_seedprod_button\":false\n}','yes'),(22470,'seedprod_onetime_flush_rewrite','1','yes'),(22471,'seedprod_one_click_upgrade','cc9d6071d80b1c32f0ea17c4fa390d4cfc2532ee01a1b8ee910bbcb42fa106043193be2d4864bd96424fca12267bf8233ada332e1fb129fca58f9a668673e56e','yes'),(22477,'seedprod_coming_soon_page_id','8206','yes'),(22478,'seedprod_stripe_connect_origin','8b2b762a-9bc7-4ca9-bc0d-84fee25c041c','yes'),(22501,'seedprod_maintenance_mode_page_id','','yes'),(22502,'seedprod_login_page_id','','yes'),(22503,'seedprod_404_page_id','','yes'),(32064,'trackship_apikey','628734b70934e910d3cdf1185f0eb933','yes'),(32078,'trackship_review_notice_ignore','true','yes'),(32781,'widget_mla-text-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(32782,'mla_custom_field_mapping','a:0:{}','yes'),(32783,'mla_iptc_exif_mapping','a:3:{s:8:\"standard\";a:6:{s:10:\"post_title\";a:5:{s:4:\"name\";s:5:\"Title\";s:10:\"iptc_value\";s:4:\"none\";s:10:\"exif_value\";s:0:\"\";s:10:\"iptc_first\";b:1;s:13:\"keep_existing\";b:1;}s:9:\"post_name\";a:5:{s:4:\"name\";s:9:\"Name/Slug\";s:10:\"iptc_value\";s:4:\"none\";s:10:\"exif_value\";s:0:\"\";s:10:\"iptc_first\";b:1;s:13:\"keep_existing\";b:1;}s:9:\"image_alt\";a:5:{s:4:\"name\";s:8:\"ALT Text\";s:10:\"iptc_value\";s:4:\"none\";s:10:\"exif_value\";s:0:\"\";s:10:\"iptc_first\";b:1;s:13:\"keep_existing\";b:1;}s:12:\"post_excerpt\";a:5:{s:4:\"name\";s:7:\"Caption\";s:10:\"iptc_value\";s:4:\"none\";s:10:\"exif_value\";s:0:\"\";s:10:\"iptc_first\";b:1;s:13:\"keep_existing\";b:1;}s:12:\"post_content\";a:5:{s:4:\"name\";s:11:\"Description\";s:10:\"iptc_value\";s:4:\"none\";s:10:\"exif_value\";s:0:\"\";s:10:\"iptc_first\";b:1;s:13:\"keep_existing\";b:1;}s:9:\"post_date\";a:5:{s:4:\"name\";s:11:\"Uploaded on\";s:10:\"iptc_value\";s:4:\"none\";s:10:\"exif_value\";s:0:\"\";s:10:\"iptc_first\";b:1;s:13:\"keep_existing\";b:0;}}s:8:\"taxonomy\";a:0:{}s:6:\"custom\";a:0:{}}','yes'),(32784,'mla_upload_mimes','a:4:{s:6:\"custom\";a:3:{s:3:\"otf\";s:13:\"font/opentype\";s:3:\"ttf\";s:24:\"application/octet-stream\";s:4:\"svgz\";s:13:\"image/svg+xml\";}s:8:\"disabled\";a:50:{s:3:\"ac3\";b:1;s:2:\"ai\";b:1;s:3:\"aif\";b:1;s:4:\"aifc\";b:1;s:4:\"aiff\";b:1;s:2:\"au\";b:1;s:3:\"bin\";b:1;s:3:\"cat\";b:1;s:3:\"cdf\";b:1;s:3:\"cgm\";b:1;s:3:\"clp\";b:1;s:3:\"crd\";b:1;s:3:\"dat\";b:1;s:3:\"dll\";b:1;s:3:\"dot\";b:1;s:3:\"dtd\";b:1;s:3:\"eps\";b:1;s:4:\"gtar\";b:1;s:3:\"ief\";b:1;s:3:\"ifb\";b:1;s:3:\"m13\";b:1;s:3:\"m14\";b:1;s:3:\"mml\";b:1;s:3:\"mny\";b:1;s:5:\"movie\";b:1;s:3:\"mp2\";b:1;s:3:\"mpa\";b:1;s:3:\"msg\";b:1;s:3:\"mvb\";b:1;s:3:\"pic\";b:1;s:4:\"pict\";b:1;s:2:\"ps\";b:1;s:3:\"pub\";b:1;s:3:\"rgb\";b:1;s:3:\"scd\";b:1;s:3:\"snd\";b:1;s:3:\"sql\";b:1;s:3:\"sst\";b:1;s:3:\"stl\";b:1;s:3:\"svg\";b:1;s:3:\"trm\";b:1;s:3:\"w6w\";b:1;s:3:\"wmf\";b:1;s:4:\"woff\";b:1;s:4:\"word\";b:1;s:3:\"xlc\";b:1;s:3:\"xlm\";b:1;s:3:\"xml\";b:1;s:3:\"xsl\";b:1;s:4:\"xslt\";b:1;}s:11:\"description\";a:0:{}s:9:\"icon_type\";a:80:{s:2:\"ai\";s:10:\"postscript\";s:4:\"aifc\";s:5:\"audio\";s:3:\"asx\";s:5:\"video\";s:2:\"au\";s:5:\"audio\";s:3:\"bin\";s:6:\"binary\";s:1:\"c\";s:8:\"source_c\";s:2:\"cc\";s:10:\"source_cpp\";s:3:\"cgm\";s:5:\"image\";s:5:\"class\";s:11:\"source_java\";s:3:\"clp\";s:6:\"knotes\";s:3:\"crd\";s:6:\"knotes\";s:3:\"css\";s:10:\"stylesheet\";s:3:\"dat\";s:6:\"binary\";s:3:\"dll\";s:8:\"exe_wine\";s:3:\"dot\";s:8:\"document\";s:4:\"dotx\";s:8:\"document\";s:3:\"dtd\";s:4:\"code\";s:3:\"eps\";s:10:\"postscript\";s:3:\"exe\";s:8:\"exe_wine\";s:4:\"gtar\";s:7:\"archive\";s:4:\"gzip\";s:7:\"archive\";s:1:\"h\";s:8:\"source_h\";s:3:\"ics\";s:8:\"calendar\";s:3:\"ief\";s:5:\"image\";s:3:\"ifb\";s:8:\"calendar\";s:2:\"js\";s:11:\"source_java\";s:3:\"mdb\";s:8:\"database\";s:3:\"mid\";s:5:\"audio\";s:4:\"midi\";s:5:\"audio\";s:3:\"mml\";s:8:\"kformula\";s:5:\"movie\";s:5:\"video\";s:3:\"mpa\";s:5:\"audio\";s:3:\"mpe\";s:5:\"video\";s:3:\"msg\";s:7:\"message\";s:3:\"odb\";s:8:\"database\";s:3:\"odc\";s:3:\"log\";s:3:\"odf\";s:8:\"kformula\";s:3:\"odg\";s:2:\"3d\";s:6:\"onepkg\";s:6:\"knotes\";s:6:\"onetmp\";s:6:\"knotes\";s:6:\"onetoc\";s:6:\"knotes\";s:7:\"onetoc2\";s:6:\"knotes\";s:3:\"pdf\";s:3:\"pdf\";s:3:\"pic\";s:5:\"image\";s:4:\"pict\";s:5:\"image\";s:3:\"pot\";s:11:\"interactive\";s:4:\"potm\";s:11:\"interactive\";s:4:\"potx\";s:11:\"interactive\";s:4:\"ppam\";s:11:\"interactive\";s:2:\"ps\";s:10:\"postscript\";s:3:\"psd\";s:5:\"image\";s:3:\"pub\";s:8:\"document\";s:2:\"qt\";s:9:\"quicktime\";s:2:\"ra\";s:5:\"audio\";s:3:\"rgb\";s:5:\"image\";s:3:\"rtx\";s:4:\"text\";s:3:\"snd\";s:5:\"audio\";s:3:\"sql\";s:8:\"database\";s:3:\"svg\";s:9:\"vectorgfx\";s:3:\"trm\";s:11:\"interactive\";s:3:\"w6w\";s:8:\"document\";s:3:\"wax\";s:5:\"audio\";s:4:\"webm\";s:5:\"video\";s:2:\"wm\";s:5:\"video\";s:3:\"wmf\";s:9:\"vectorgfx\";s:3:\"wmx\";s:5:\"video\";s:4:\"woff\";s:4:\"font\";s:4:\"word\";s:8:\"document\";s:3:\"wri\";s:8:\"document\";s:3:\"xla\";s:11:\"spreadsheet\";s:4:\"xlam\";s:11:\"spreadsheet\";s:3:\"xlc\";s:11:\"spreadsheet\";s:3:\"xlm\";s:11:\"spreadsheet\";s:3:\"xlt\";s:11:\"spreadsheet\";s:4:\"xltm\";s:11:\"spreadsheet\";s:4:\"xltx\";s:11:\"spreadsheet\";s:3:\"xlw\";s:11:\"spreadsheet\";s:3:\"xml\";s:4:\"code\";s:3:\"xsl\";s:5:\"style\";s:4:\"xslt\";s:4:\"code\";}}','yes'),(32785,'mla_current_version','3.06','yes'),(32787,'mla_post_mime_types','a:4:{s:385:\"application/msword,application/vnd.openxmlformats-officedocument.wordprocessingml.document,application/vnd.ms-word.document.macroEnabled.12,application/vnd.ms-word.template.macroEnabled.12,application/vnd.oasis.opendocument.text,application/vnd.apple.pages,application/pdf,application/vnd.ms-xpsdocument,application/oxps,application/rtf,application/wordperfect,application/octet-stream\";a:7:{s:8:\"singular\";s:8:\"Document\";s:6:\"plural\";s:9:\"Documents\";s:13:\"specification\";s:0:\"\";s:14:\"post_mime_type\";b:1;s:10:\"table_view\";b:1;s:10:\"menu_order\";i:0;s:11:\"description\";s:34:\"Copied from previous filter/plugin\";}s:268:\"application/vnd.apple.numbers,application/vnd.oasis.opendocument.spreadsheet,application/vnd.ms-excel,application/vnd.openxmlformats-officedocument.spreadsheetml.sheet,application/vnd.ms-excel.sheet.macroEnabled.12,application/vnd.ms-excel.sheet.binary.macroEnabled.12\";a:7:{s:8:\"singular\";s:11:\"Spreadsheet\";s:6:\"plural\";s:20:\"Feuilles de calcul\";s:13:\"specification\";s:0:\"\";s:14:\"post_mime_type\";b:1;s:10:\"table_view\";b:1;s:10:\"menu_order\";i:0;s:11:\"description\";s:34:\"Copied from previous filter/plugin\";}s:96:\"application/x-gzip,application/rar,application/x-tar,application/zip,application/x-7z-compressed\";a:7:{s:8:\"singular\";s:7:\"Archive\";s:6:\"plural\";s:8:\"Archives\";s:13:\"specification\";s:0:\"\";s:14:\"post_mime_type\";b:1;s:10:\"table_view\";b:1;s:10:\"menu_order\";i:0;s:11:\"description\";s:34:\"Copied from previous filter/plugin\";}s:6:\"avatar\";a:7:{s:8:\"singular\";s:6:\"Avatar\";s:6:\"plural\";s:6:\"Avatar\";s:13:\"specification\";s:0:\"\";s:14:\"post_mime_type\";b:1;s:10:\"table_view\";b:1;s:10:\"menu_order\";i:0;s:11:\"description\";s:34:\"Copied from previous filter/plugin\";}}','yes'),(32858,'bulky-bulk-edit-products-for-woo_start_use','1','yes'),(33008,'vi_wbe_settings','a:5:{s:11:\"edit_fields\";a:1:{i:0;s:5:\"image\";}s:19:\"exclude_edit_fields\";a:1:{i:0;s:0:\"\";}s:15:\"load_variations\";s:3:\"yes\";s:8:\"order_by\";s:2:\"ID\";s:5:\"order\";s:4:\"DESC\";}','yes'),(45303,'woocommerce_new_product_management_enabled','no','yes'),(45324,'ast_fulfillment_survay_notice_ignore','true','yes'),(45361,'ast_usage_tracker_last_send','1680294141','yes'),(45719,'parcelpanel_track_page_id','10160','yes'),(45722,'parcelpanel_orders_page_add_track_button','','yes'),(45723,'parcelpanel_email_notification_add_tracking_section','','yes'),(45724,'parcelpanel_track_button_order_status','a:7:{i:0;s:13:\"wc-processing\";i:1;s:12:\"wc-completed\";i:2;s:18:\"wc-partial-shipped\";i:3;s:12:\"wc-cancelled\";i:4;s:11:\"wc-refunded\";i:5;s:9:\"wc-failed\";i:6;s:17:\"wc-checkout-draft\";}','yes'),(45725,'parcelpanel_tracking_section_order_status','a:3:{i:0;s:13:\"wc-processing\";i:1;s:12:\"wc-completed\";i:2;s:18:\"wc-partial-shipped\";}','yes'),(45726,'woocommerce_customer_pp_in_transit_shipment_settings','a:5:{s:7:\"enabled\";s:2:\"no\";s:7:\"subject\";s:52:\"A delivery of the order {order_number} is in transit\";s:7:\"heading\";s:25:\"Your order is in transit.\";s:18:\"additional_content\";s:31:\"Thank you for ordering from us.\";s:10:\"email_type\";s:4:\"html\";}','yes'),(45727,'woocommerce_customer_pp_out_for_delivery_shipment_settings','a:5:{s:7:\"enabled\";s:2:\"no\";s:7:\"subject\";s:60:\"A shipment of the order {order_number} is ready for delivery\";s:7:\"heading\";s:30:\"Your order is being delivered.\";s:18:\"additional_content\";s:31:\"Thank you for ordering with us.\";s:10:\"email_type\";s:4:\"html\";}','yes'),(45728,'woocommerce_customer_pp_delivered_shipment_settings','a:5:{s:7:\"enabled\";s:2:\"no\";s:7:\"subject\";s:52:\"A delivery of the order {order number} has been made\";s:7:\"heading\";s:29:\"Your order has been delivered\";s:18:\"additional_content\";s:31:\"Thank you for ordering with us.\";s:10:\"email_type\";s:4:\"html\";}','yes'),(45729,'woocommerce_customer_pp_exception_shipment_settings','a:5:{s:7:\"enabled\";s:2:\"no\";s:7:\"subject\";s:63:\"A shipment of the order {order_number} has a delivery exception\";s:7:\"heading\";s:35:\"Your order has a delivery exception\";s:18:\"additional_content\";s:31:\"Thank you for ordering with us.\";s:10:\"email_type\";s:4:\"html\";}','yes'),(45730,'woocommerce_customer_pp_failed_attempt_shipment_settings','a:5:{s:7:\"enabled\";s:2:\"no\";s:7:\"subject\";s:55:\"The attempt to deliver the {order_number} order failed.\";s:7:\"heading\";s:40:\"The attempt to deliver your order failed\";s:18:\"additional_content\";s:31:\"Thank you for ordering with us.\";s:10:\"email_type\";s:4:\"html\";}','yes'),(45731,'parcelpanel_db_version','2.8.0','yes'),(45732,'parcelpanel_admin_order_actions_add_track_order_status','a:7:{i:0;s:13:\"wc-processing\";i:1;s:12:\"wc-completed\";i:2;s:18:\"wc-partial-shipped\";i:3;s:12:\"wc-cancelled\";i:4;s:11:\"wc-refunded\";i:5;s:9:\"wc-failed\";i:6;s:17:\"wc-checkout-draft\";}','yes'),(45734,'parcelpanel_last_attempt_connect_at','1700327175','no'),(45735,'parcelpanel_free_upgrade_opened_at','1677146622','yes'),(45736,'parcelpanel_api_key','7a722c924f684ce999b2360bf514cf32','yes'),(45737,'parcelpanel_api_uid','0','yes'),(45738,'parcelpanel_api_bid','13895','yes'),(45739,'parcelpanel_plan_quota','20','yes'),(45740,'parcelpanel_plan_quota_remain','0','yes'),(45741,'parcelpanel_is_free_plan','0','no'),(45742,'parcelpanel_is_unlimited_plan','0','yes'),(45743,'parcelpanel_registered_at','1700327084','no'),(45744,'parcelpanel_connected_at','1677146623','no'),(45745,'parcelpanel_plugin_version','3.7.2','yes'),(45748,'parcelpanel_first_synced_at','1677146629','no'),(45750,'parcelpanel_selected_courier','a:1:{i:0;s:7:\"cainiao\";}','no'),(48880,'parcelpanel_admin_notice_ignore_plugins_feedback','1684337945','yes'),(55930,'parcelpanel_tracking_page_options','a:11:{s:7:\"dsp_opt\";a:6:{s:6:\"_width\";s:6:\"1200px\";s:5:\"color\";s:7:\"#df4c18\";s:8:\"ui_style\";i:1;s:11:\"_selections\";i:302;s:24:\"map_coordinates_position\";i:1;s:13:\"hide_keywords\";s:31:\"China,Aliexpress,Chinese cities\";}s:12:\"trk_pg_trans\";a:29:{s:12:\"order_number\";s:12:\"Order Number\";s:17:\"expected_delivery\";s:22:\"Expected Delivery Date\";s:2:\"or\";s:2:\"OR\";s:5:\"email\";s:5:\"Email\";s:5:\"track\";s:5:\"Track\";s:5:\"order\";s:5:\"Order\";s:15:\"tracking_number\";s:15:\"Tracking Number\";s:7:\"product\";s:7:\"Product\";s:7:\"carrier\";s:7:\"Carrier\";s:6:\"status\";s:6:\"Status\";s:15:\"order_not_found\";s:20:\"Could Not Find Order\";s:16:\"enter_your_order\";s:30:\"Please enter your order number\";s:16:\"enter_your_email\";s:23:\"Please enter your email\";s:26:\"enter_your_tracking_number\";s:33:\"Please enter your tracking number\";s:15:\"not_yet_shipped\";s:33:\"These items have not yet shipped.\";s:7:\"ordered\";s:7:\"Ordered\";s:11:\"order_ready\";s:11:\"Order Ready\";s:15:\"waiting_updated\";s:75:\"Waiting for carrier to update tracking information, please try again later.\";s:11:\"shipping_to\";s:11:\"Shipping To\";s:16:\"current_location\";s:16:\"Current Location\";s:8:\"may_like\";s:20:\"You may also like...\";s:7:\"pending\";s:7:\"Pending\";s:10:\"in_transit\";s:10:\"In Transit\";s:16:\"out_for_delivery\";s:16:\"Out for Delivery\";s:9:\"delivered\";s:9:\"Delivered\";s:7:\"expired\";s:7:\"Expired\";s:14:\"failed_attempt\";s:14:\"Failed Attempt\";s:9:\"exception\";s:9:\"Exception\";s:13:\"info_received\";s:13:\"Info Received\";}s:9:\"cst_o_sta\";a:0:{}s:11:\"cst_trk_inf\";a:2:{s:4:\"days\";i:5;s:4:\"info\";s:31:\"On the way to the next facility\";}s:10:\"est_dely_t\";a:5:{s:7:\"enabled\";b:0;s:9:\"calc_from\";i:0;s:5:\"e_d_t\";a:2:{i:0;i:10;i:1;i:20;}s:11:\"bod_enabled\";b:0;s:9:\"bod_items\";a:0:{}}s:9:\"prod_reco\";a:4:{s:7:\"enabled\";b:0;s:8:\"position\";i:0;s:8:\"advanced\";b:0;s:14:\"product_cat_id\";i:36;}s:12:\"addl_txt_set\";a:2:{s:10:\"text_above\";s:0:\"\";s:10:\"text_below\";s:0:\"\";}s:8:\"dt_t_set\";a:2:{s:11:\"date_format\";i:2;s:11:\"time_format\";i:0;}s:18:\"trans_trk_detl_inf\";a:0:{}s:12:\"cst_css_html\";a:3:{s:3:\"css\";s:0:\"\";s:8:\"html_top\";s:0:\"\";s:11:\"html_bottom\";s:0:\"\";}s:7:\"thm_lng\";a:1:{s:3:\"val\";s:2:\"en\";}}','yes'),(55979,'parcelpanel_remove_branding','1700327499','yes'),(55987,'parcelpanel_admin_notice_ignore_remove_branding','1678571601','yes'),(57118,'woocommerce_failed_order_settings','a:6:{s:7:\"enabled\";s:2:\"no\";s:9:\"recipient\";s:19:\"example@example.com\";s:7:\"subject\";s:0:\"\";s:7:\"heading\";s:0:\"\";s:18:\"additional_content\";s:112:\"En savoir plus sur <a href=\"https://docs.woocommerce.com/document/managing-orders/\">les paiements échoués</a>.\";s:10:\"email_type\";s:4:\"html\";}','yes'),(57119,'woocommerce_customer_on_hold_order_settings','a:5:{s:7:\"enabled\";s:2:\"no\";s:7:\"subject\";s:0:\"\";s:7:\"heading\";s:0:\"\";s:18:\"additional_content\";s:48:\"Nous comptons exécuter votre commande sous peu.\";s:10:\"email_type\";s:4:\"html\";}','yes'),(57125,'woocommerce_customer_processing_order_settings','a:5:{s:7:\"enabled\";s:3:\"yes\";s:7:\"subject\";s:45:\"Uw bestelling voor {site_title} is ontvangen!\";s:7:\"heading\";s:24:\"Bedankt voor uw aankoop!\";s:18:\"additional_content\";s:87:\"We maken je bestelling klaar voor levering. We laten je weten wanneer het is verzonden.\";s:10:\"email_type\";s:4:\"html\";}','yes'),(57138,'woocommerce_customer_completed_order_settings','a:5:{s:7:\"enabled\";s:3:\"yes\";s:7:\"subject\";s:48:\"Je bestelling voor {site_title} is nu verzonden!\";s:7:\"heading\";s:25:\"Uw bestelling is onderweg\";s:18:\"additional_content\";s:179:\"Je bestelling is onderweg. Volg je zending om de afleverstatus te zien.\r\n\r\nJe kunt je bestelling volgen op onze trackingpagina: https://www.nl.ecom-expansion.com/track-your-order/\";s:10:\"email_type\";s:4:\"html\";}','yes'),(57146,'woocommerce_customer_refunded_order_settings','a:7:{s:7:\"enabled\";s:3:\"yes\";s:12:\"subject_full\";s:59:\"Uw {site_title} bestelling #{order_number} is terugbetaald.\";s:15:\"subject_partial\";s:72:\"Uw {site_title} bestelling #{order_number} is gedeeltelijk terugbetaald.\";s:12:\"heading_full\";s:29:\"Uw bestelling is terugbetaald\";s:15:\"heading_partial\";s:42:\"Je bestelling is gedeeltelijk terugbetaald\";s:18:\"additional_content\";s:30:\"We hopen je snel weer te zien.\";s:10:\"email_type\";s:4:\"html\";}','yes'),(57153,'woocommerce_customer_invoice_settings','a:6:{s:7:\"subject\";s:36:\"Uw laatste factuur van {site_title}.\";s:7:\"heading\";s:37:\"Uw factuur voor order #{order_number}\";s:12:\"subject_paid\";s:56:\"Factuur voor bestelling #{order_number} op {site_title}.\";s:12:\"heading_paid\";s:35:\"Factuur voor orders #{order_number}\";s:18:\"additional_content\";s:42:\"Bedankt voor het gebruik van {site_title}!\";s:10:\"email_type\";s:4:\"html\";}','yes'),(57161,'woocommerce_customer_note_settings','a:5:{s:7:\"enabled\";s:2:\"no\";s:7:\"subject\";s:0:\"\";s:7:\"heading\";s:0:\"\";s:18:\"additional_content\";s:25:\"Merci de votre attention.\";s:10:\"email_type\";s:4:\"html\";}','yes'),(57164,'woocommerce_customer_reset_password_settings','a:5:{s:7:\"enabled\";s:3:\"yes\";s:7:\"subject\";s:45:\"Verzoek om wachtwoord reset voor {site_title}\";s:7:\"heading\";s:28:\"Wachtwoord opnieuw instellen\";s:18:\"additional_content\";s:23:\"Bedankt voor het lezen.\";s:10:\"email_type\";s:4:\"html\";}','yes'),(57170,'woocommerce_customer_new_account_settings','a:5:{s:7:\"enabled\";s:3:\"yes\";s:7:\"subject\";s:42:\"Je account bij {site_title} is aangemaakt!\";s:7:\"heading\";s:23:\"Welkom bij {site_title}\";s:18:\"additional_content\";s:37:\"We kijken ernaar uit je te ontmoeten.\";s:10:\"email_type\";s:4:\"html\";}','yes'),(57200,'woocommerce_customer_pp_partial_shipped_order_settings','a:5:{s:7:\"enabled\";s:3:\"yes\";s:7:\"subject\";s:46:\"Your Teng Shop order is now partially shipped.\";s:7:\"heading\";s:31:\"Your order is partially shipped\";s:18:\"additional_content\";s:31:\"Thank you for ordering with us.\";s:10:\"email_type\";s:4:\"html\";}','yes'),(57210,'woocommerce_failed_renewal_authentication_settings','a:4:{s:7:\"enabled\";s:3:\"yes\";s:7:\"subject\";s:82:\"Betalingsautorisatie vereist voor verlenging van {site_title} order {order_number}\";s:7:\"heading\";s:65:\"Betalingsautorisatie vereist voor ordervernieuwing {order_number}\";s:10:\"email_type\";s:4:\"html\";}','yes'),(57216,'woocommerce_failed_preorder_sca_authentication_settings','a:4:{s:7:\"enabled\";s:3:\"yes\";s:7:\"subject\";s:63:\"Betalingsautorisatie vereist voor voorbestelling {order_number}\";s:7:\"heading\";s:63:\"Betalingsautorisatie vereist voor voorbestelling {order_number}\";s:10:\"email_type\";s:4:\"html\";}','yes'),(57220,'woocommerce_failed_authentication_requested_settings','a:6:{s:7:\"enabled\";s:3:\"yes\";s:9:\"recipient\";s:0:\"\";s:7:\"subject\";s:110:\"{site_title} Automatische betaling mislukt voor {order_number}. De klant vroeg om verificatie van de betaling.\";s:7:\"heading\";s:71:\"Automatische betaling voor verlenging mislukt door verificatievereisten\";s:18:\"additional_content\";s:0:\"\";s:10:\"email_type\";s:4:\"html\";}','yes'),(59356,'googlesitekit_db_version','1.8.1','yes'),(59361,'_transient_googlesitekit_verification_meta_tags','a:0:{}','yes'),(59366,'googlesitekit_active_modules','a:4:{i:0;s:18:\"pagespeed-insights\";i:1;s:9:\"analytics\";i:3;s:7:\"adsense\";i:5;s:10:\"tagmanager\";}','yes'),(59369,'googlesitekit_credentials','TQKchkrpJ1JG7NOe29erPThPRXM5cFVGUEgyc2kvQVZSckcyM3FMcFpVL25CNVV3MnlnNWtpclA5M2REa2tucjNKWkhDaDdhNDVqeEc5dWVOTVZTSkhwdmpvRzdYWXFEQzMybXBzdWtvdnRmT2tGekphUjhVY3Bqa1hnR3NhenhoTmxxbUZ6SE44Q2ZENlhyVktIOVl2dUpBTEpOM1RXWXFFVDFnWjRUQnNaTUVKaWZHTC90WUJodUhvRFNWZG9Lbm1Ya0RMMXJxVjkyY0F4SWNmNklJYkkyaFRSd1V6ajNKZVRyUDVnNE82UGU4bXNQZ01EeFJ0aENEc2dGQVdkek9ibjk5N1dPQ0lLS2NOMkpUNDlZam1qWXdvZ1ROSy9JMGNoZVVCRjdQZjN5RThmQzYvMXpIeUxMM3hBb2Qvc1lRbHdDS011VXVRPT0=','yes'),(59370,'googlesitekitpersistent_remote_features','a:15:{s:18:\"adBlockerDetection\";a:1:{s:7:\"enabled\";b:1;}s:14:\"adsenseSetupV2\";a:1:{s:7:\"enabled\";b:1;}s:16:\"dashboardSharing\";a:1:{s:7:\"enabled\";b:1;}s:19:\"ga4ActivationBanner\";a:1:{s:7:\"enabled\";b:0;}s:12:\"ga4Reporting\";a:1:{s:7:\"enabled\";b:1;}s:8:\"ga4setup\";a:1:{s:7:\"enabled\";b:1;}s:10:\"gteSupport\";a:1:{s:7:\"enabled\";b:1;}s:14:\"helpVisibility\";a:1:{s:7:\"enabled\";b:1;}s:13:\"ideaHubModule\";a:1:{s:7:\"enabled\";b:0;}s:14:\"serviceSetupV2\";a:1:{s:7:\"enabled\";b:1;}s:16:\"unifiedDashboard\";a:1:{s:7:\"enabled\";b:1;}s:12:\"userFeedback\";a:1:{s:7:\"enabled\";b:1;}s:17:\"widgets.dashboard\";a:1:{s:7:\"enabled\";b:1;}s:21:\"widgets.pageDashboard\";a:1:{s:7:\"enabled\";b:1;}s:14:\"zeroDataStates\";a:1:{s:7:\"enabled\";b:1;}}','yes'),(59372,'googlesitekit_connected_proxy_url','https://www.nl.ecom-expansion.com/','yes'),(59373,'googlesitekit_search-console_settings','a:2:{s:10:\"propertyID\";s:34:\"https://www.nl.ecom-expansion.com/\";s:7:\"ownerID\";i:5;}','yes'),(59374,'googlesitekit_owner_id','5','yes'),(59382,'googlesitekit_analytics_settings','a:12:{s:7:\"ownerID\";i:5;s:9:\"accountID\";s:9:\"279214306\";s:13:\"adsenseLinked\";b:0;s:15:\"adsConversionID\";s:0:\"\";s:11:\"anonymizeIP\";b:1;s:21:\"internalWebPropertyID\";s:9:\"357948389\";s:9:\"profileID\";s:9:\"286482700\";s:10:\"propertyID\";s:14:\"UA-260354945-1\";s:16:\"trackingDisabled\";a:1:{i:0;s:13:\"loggedinUsers\";}s:10:\"useSnippet\";b:1;s:13:\"canUseSnippet\";b:1;s:13:\"dashboardView\";s:18:\"google-analytics-4\";}','yes'),(59383,'googlesitekit_analytics-4_settings','a:9:{s:7:\"ownerID\";i:5;s:10:\"propertyID\";s:9:\"399008585\";s:15:\"webDataStreamID\";s:10:\"5892329012\";s:13:\"measurementID\";s:12:\"G-8PGCPVRVL2\";s:10:\"useSnippet\";b:1;s:11:\"googleTagID\";s:10:\"GT-NGB7SDH\";s:18:\"googleTagAccountID\";s:10:\"6137411567\";s:20:\"googleTagContainerID\";s:9:\"136115931\";s:23:\"googleTagLastSyncedAtMs\";i:1690243273265;}','yes'),(59391,'googlesitekit_adsense_settings','a:10:{s:7:\"ownerID\";i:3;s:9:\"accountID\";s:0:\"\";s:15:\"autoAdsDisabled\";a:0:{}s:8:\"clientID\";s:0:\"\";s:13:\"accountStatus\";s:4:\"none\";s:10:\"siteStatus\";s:0:\"\";s:20:\"accountSetupComplete\";b:0;s:17:\"siteSetupComplete\";b:0;s:10:\"useSnippet\";b:1;s:16:\"webStoriesAdUnit\";s:0:\"\";}','yes'),(59418,'gtm4wp-options','a:77:{s:8:\"gtm-code\";s:12:\"GTM-KKGLDB6L\";s:27:\"gtm-datalayer-variable-name\";s:0:\"\";s:18:\"gtm-code-placement\";i:0;s:16:\"gtm-env-gtm-auth\";s:0:\"\";s:19:\"gtm-env-gtm-preview\";s:0:\"\";s:24:\"gtm-browser-do-not-track\";b:0;s:18:\"gtm-load-gtm-early\";b:0;s:15:\"gtm-domain-name\";s:0:\"\";s:24:\"gtm-no-gtm-for-logged-in\";s:0:\"\";s:16:\"include-loggedin\";b:0;s:16:\"include-userrole\";b:0;s:14:\"include-userid\";b:0;s:17:\"include-useremail\";b:0;s:19:\"include-userregdate\";b:0;s:16:\"include-username\";b:0;s:18:\"include-visitor-ip\";b:0;s:16:\"include-posttype\";b:1;s:18:\"include-categories\";b:1;s:12:\"include-tags\";b:1;s:14:\"include-author\";b:1;s:16:\"include-authorid\";b:0;s:16:\"include-postdate\";b:0;s:17:\"include-posttitle\";b:0;s:17:\"include-postcount\";b:0;s:14:\"include-postid\";b:0;s:18:\"include-postformat\";b:0;s:17:\"include-postterms\";b:0;s:18:\"include-searchdata\";b:0;s:19:\"include-browserdata\";b:0;s:14:\"include-osdata\";b:0;s:18:\"include-devicedata\";b:0;s:15:\"include-miscgeo\";b:0;s:10:\"geo-apikey\";s:0:\"\";s:26:\"include-miscgeo-cloudflare\";b:0;s:15:\"include-weather\";b:0;s:20:\"weather-weatherunits\";i:0;s:29:\"weather-openweathermap-apikey\";s:0:\"\";s:14:\"include-siteid\";b:0;s:16:\"include-sitename\";b:0;s:15:\"event-form-move\";b:0;s:27:\"event-new-user-registration\";b:0;s:20:\"event-user-logged-in\";b:0;s:13:\"event-youtube\";b:0;s:11:\"event-vimeo\";b:0;s:16:\"event-soundcloud\";b:0;s:16:\"scroller-enabled\";b:0;s:19:\"scroller-debug-mode\";b:0;s:22:\"scroller-callback-time\";i:100;s:17:\"scroller-distance\";i:150;s:18:\"scroller-contentid\";s:7:\"content\";s:19:\"scroller-readertime\";i:60;s:16:\"blacklist-enable\";i:0;s:19:\"blacklist-sandboxed\";b:0;s:16:\"blacklist-status\";s:0:\"\";s:15:\"integrate-wpcf7\";b:0;s:45:\"integrate-woocommerce-track-classic-ecommerce\";b:0;s:46:\"integrate-woocommerce-track-enhanced-ecommerce\";b:1;s:44:\"integrate-woocommerce-product-per-impression\";i:10;s:40:\"integrate-woocommerce-cart-as-first-step\";b:0;s:47:\"integrate-woocommerce-cart-content-in-datalayer\";b:0;s:36:\"integrate-woocommerce-brand-taxonomy\";s:0:\"\";s:33:\"integrate-woocommerce-remarketing\";b:0;s:39:\"integrate-woocommerce-business-vertical\";s:6:\"retail\";s:40:\"integrate-woocommerce-remarketing-usesku\";b:0;s:44:\"integrate-woocommerce-use-full-category-path\";b:0;s:49:\"integrate-woocommerce-remarketing-productidprefix\";s:0:\"\";s:35:\"integrate-woocommerce-customer-data\";b:0;s:32:\"integrate-woocommerce-order-data\";b:0;s:35:\"integrate-woocommerce-order-max-age\";i:30;s:33:\"integrate-woocommerce-exclude-tax\";b:0;s:38:\"integrate-woocommerce-exclude-shipping\";b:0;s:51:\"integrate-woocommerce-do-not-use-order-tracked-flag\";b:0;s:32:\"integrate-google-optimize-idlist\";s:0:\"\";s:33:\"integrate-google-optimize-timeout\";i:4000;s:23:\"integrate-wp-e-commerce\";b:0;s:16:\"integrate-amp-id\";s:0:\"\";s:19:\"integrate-cookiebot\";b:0;}','yes'),(59473,'channel_statics','a:201:{s:13:\"All countries\";a:16:{s:15:\"Google Shopping\";a:6:{s:12:\"channel_hash\";s:32:\"d4cb75caae5a73ac6b01171816b33bfb\";s:4:\"name\";s:15:\"Google Shopping\";s:6:\"fields\";s:15:\"google_shopping\";s:8:\"taxonomy\";s:15:\"google_shopping\";s:10:\"utm_source\";s:15:\"Google Shopping\";s:4:\"type\";s:11:\"Advertising\";}s:31:\"Google Merchant Promotions Feed\";a:6:{s:12:\"channel_hash\";s:32:\"b139f056f1c86e71d11d0ebbd3bdd948\";s:4:\"name\";s:31:\"Google Merchant Promotions Feed\";s:6:\"fields\";s:26:\"google_shopping_promotions\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:15:\"Google Shopping\";s:4:\"type\";s:11:\"Advertising\";}s:24:\"Google Remarketing - DRM\";a:6:{s:12:\"channel_hash\";s:32:\"5dd24aca187e3a6b5820868e57043428\";s:4:\"name\";s:24:\"Google Remarketing - DRM\";s:6:\"fields\";s:10:\"google_drm\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:18:\"Google Remarketing\";s:4:\"type\";s:11:\"Advertising\";}s:15:\"Google DSA Feed\";a:6:{s:12:\"channel_hash\";s:32:\"008e1fda379835ba11512429631a792e\";s:4:\"name\";s:12:\"Google - DSA\";s:6:\"fields\";s:10:\"google_dsa\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Google DSA\";s:4:\"type\";s:11:\"Advertising\";}s:26:\"Google Local Products Feed\";a:6:{s:12:\"channel_hash\";s:32:\"26e3e513a3ee25a114910f1e8c619c48\";s:4:\"name\";s:21:\"Google Local Products\";s:6:\"fields\";s:21:\"google_local_products\";s:8:\"taxonomy\";s:15:\"google_shopping\";s:10:\"utm_source\";s:21:\"Google Local Products\";s:4:\"type\";s:11:\"Advertising\";}s:36:\"Google Local Products Inventory Feed\";a:6:{s:12:\"channel_hash\";s:32:\"8e2d11264b29ea626889c6ae07d1858b\";s:4:\"name\";s:31:\"Google Local Products Inventory\";s:6:\"fields\";s:12:\"google_local\";s:8:\"taxonomy\";s:15:\"google_shopping\";s:10:\"utm_source\";s:30:\"Google Local Product Inventory\";s:4:\"type\";s:11:\"Advertising\";}s:26:\"Google Product Review Feed\";a:6:{s:12:\"channel_hash\";s:32:\"338250275238e84c070b18fb7ef5067e\";s:4:\"name\";s:21:\"Google Product Review\";s:6:\"fields\";s:21:\"google_product_review\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:21:\"Google Product Review\";s:4:\"type\";s:11:\"Advertising\";}s:13:\"Bing Shopping\";a:6:{s:12:\"channel_hash\";s:32:\"db9030c52a0642cf6e47df03541dec1c\";s:4:\"name\";s:13:\"Bing Shopping\";s:6:\"fields\";s:15:\"google_shopping\";s:8:\"taxonomy\";s:15:\"google_shopping\";s:10:\"utm_source\";s:13:\"Bing Shopping\";s:4:\"type\";s:11:\"Advertising\";}s:24:\"Bing Shopping Promotions\";a:6:{s:12:\"channel_hash\";s:32:\"b6a2e990e44fd2882d860d36e033161a\";s:4:\"name\";s:24:\"Bing Shopping Promotions\";s:6:\"fields\";s:26:\"google_shopping_promotions\";s:8:\"taxonomy\";s:26:\"google_shopping_promotions\";s:10:\"utm_source\";s:24:\"Bing Shopping Promotions\";s:4:\"type\";s:11:\"Advertising\";}s:33:\"Facebook Catalog Feed / Instagram\";a:6:{s:12:\"channel_hash\";s:32:\"a80023c048bcf50aa70821992617d970\";s:4:\"name\";s:40:\"Meta / Facebook Catalog Feed / Instagram\";s:6:\"fields\";s:12:\"facebook_drm\";s:8:\"taxonomy\";s:15:\"google_shopping\";s:10:\"utm_source\";s:21:\"Facebook Catalog Feed\";s:4:\"type\";s:11:\"Advertising\";}s:9:\"Pinterest\";a:6:{s:12:\"channel_hash\";s:32:\"86709a608bd914b28221164e6680ebf7\";s:4:\"name\";s:9:\"Pinterest\";s:6:\"fields\";s:9:\"pinterest\";s:8:\"taxonomy\";s:15:\"google_shopping\";s:10:\"utm_source\";s:9:\"Pinterest\";s:4:\"type\";s:11:\"Advertising\";}s:7:\"Twitter\";a:6:{s:12:\"channel_hash\";s:32:\"2491bc9c7d8731e1ae33124093bc7026\";s:4:\"name\";s:7:\"Twitter\";s:6:\"fields\";s:15:\"google_shopping\";s:8:\"taxonomy\";s:15:\"google_shopping\";s:10:\"utm_source\";s:7:\"Twitter\";s:4:\"type\";s:11:\"Advertising\";}s:19:\"Pinterest RSS Board\";a:6:{s:12:\"channel_hash\";s:32:\"6150bd7ad3e007709de90f035ef1615c\";s:4:\"name\";s:19:\"Pinterest RSS Board\";s:6:\"fields\";s:13:\"pinterest_rss\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:19:\"Pinterest RSS Board\";s:4:\"type\";s:11:\"Advertising\";}s:24:\"Snapchat Product Catalog\";a:6:{s:12:\"channel_hash\";s:32:\"b0c642f1d81e0d8e359c6efae6d23007\";s:4:\"name\";s:24:\"Snapchat Product Catalog\";s:6:\"fields\";s:8:\"snapchat\";s:8:\"taxonomy\";s:15:\"google_shopping\";s:10:\"utm_source\";s:8:\"snapchat\";s:4:\"type\";s:11:\"Advertising\";}s:22:\"TikTok Product Catalog\";a:6:{s:12:\"channel_hash\";s:32:\"c18b6f285f37a8f4106611c9a247dffc\";s:4:\"name\";s:22:\"TikTok Product Catalog\";s:6:\"fields\";s:6:\"tiktok\";s:8:\"taxonomy\";s:15:\"google_shopping\";s:10:\"utm_source\";s:6:\"tiktok\";s:4:\"type\";s:11:\"Advertising\";}s:6:\"Vivino\";a:6:{s:12:\"channel_hash\";s:32:\"4f4d30ea9fef64d166fe50c577e7f312\";s:4:\"name\";s:6:\"Vivino\";s:6:\"fields\";s:6:\"vivino\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:6:\"Vivino\";s:4:\"type\";s:11:\"Advertising\";}}s:11:\"Custom Feed\";a:1:{s:11:\"Custom Feed\";a:6:{s:12:\"channel_hash\";s:32:\"b0c1fa7a7dd12cadb7d8be768ce91315\";s:4:\"name\";s:11:\"Custom Feed\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:11:\"Custom Feed\";s:4:\"type\";s:11:\"Custom Feed\";}}s:11:\"Afghanistan\";a:0:{}s:7:\"Albania\";a:0:{}s:7:\"Algeria\";a:0:{}s:7:\"Andorra\";a:0:{}s:6:\"Angola\";a:0:{}s:14:\"Antigua & Deps\";a:0:{}s:9:\"Argentina\";a:2:{s:9:\"ShopMania\";a:6:{s:12:\"channel_hash\";s:32:\"6efc3cdaf65f3da218c65281fcfe1bc3\";s:4:\"name\";s:16:\"Shopmania.com.ar\";s:6:\"fields\";s:12:\"shopmania_ro\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:16:\"Shopmania.com.ar\";s:4:\"type\";s:11:\"Marketplace\";}s:8:\"Wish.com\";a:6:{s:12:\"channel_hash\";s:32:\"70ec5f93b0f12e6f76d5f97657f23cd4\";s:4:\"name\";s:8:\"Wish.com\";s:6:\"fields\";s:7:\"wishcom\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:8:\"Wish.com\";s:4:\"type\";s:11:\"Marketplace\";}}s:7:\"Armenia\";a:0:{}s:9:\"Australia\";a:8:{s:12:\"Catch.com.au\";a:6:{s:12:\"channel_hash\";s:32:\"7116d4b51bb0bdf631df9becc635e8c2\";s:4:\"name\";s:12:\"Catch.com.au\";s:6:\"fields\";s:10:\"catchcomau\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Catch.com.au\";s:4:\"type\";s:11:\"Marketplace\";}s:8:\"Wish.com\";a:6:{s:12:\"channel_hash\";s:32:\"70ec5f93b0f12e6f76d5f97657f23cd4\";s:4:\"name\";s:8:\"Wish.com\";s:6:\"fields\";s:7:\"wishcom\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:8:\"Wish.com\";s:4:\"type\";s:11:\"Marketplace\";}s:9:\"Kogan.com\";a:6:{s:12:\"channel_hash\";s:32:\"0167abe8de113cca248094c9abdfa9ba\";s:4:\"name\";s:9:\"Kogan.com\";s:6:\"fields\";s:5:\"kogan\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Kogan.com\";s:4:\"type\";s:11:\"Marketplace\";}s:15:\"Fruugoaustralia\";a:6:{s:12:\"channel_hash\";s:32:\"b7cb6aa0f80b909311ae54a6230c78f7\";s:4:\"name\";s:19:\"Fruugoaustralia.com\";s:6:\"fields\";s:9:\"fruugoaus\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:19:\"Fruugoaustralia.com\";s:4:\"type\";s:11:\"Marketplace\";}s:12:\"Shopping.com\";a:6:{s:12:\"channel_hash\";s:32:\"6e3bbd8e7e9ca791bf13f28fb701e038\";s:4:\"name\";s:12:\"Shopping.com\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Shopping.com\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:10:\"Myshopping\";a:6:{s:12:\"channel_hash\";s:32:\"77a755aef80d6b6357f42ca4c298500a\";s:4:\"name\";s:17:\"Myshopping.com.au\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:17:\"Myshopping.com.au\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:9:\"ShopMania\";a:6:{s:12:\"channel_hash\";s:32:\"a0ddcc639228faef4a9e14d9cb23c809\";s:4:\"name\";s:16:\"Shopmania.com.au\";s:6:\"fields\";s:12:\"shopmania_ro\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:16:\"Shopmania.com.au\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:12:\"Polyvore.com\";a:6:{s:12:\"channel_hash\";s:32:\"9a9abd8532878629e2b3487c1ad157eb\";s:4:\"name\";s:12:\"Polyvore.com\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Polyvore.com\";s:4:\"type\";s:26:\"Comparison shopping engine\";}}s:7:\"Austria\";a:0:{}s:10:\"Azerbaijan\";a:0:{}s:7:\"Bahamas\";a:0:{}s:7:\"Bahrain\";a:0:{}s:10:\"Bangladesh\";a:0:{}s:8:\"Barbados\";a:0:{}s:7:\"Belarus\";a:0:{}s:7:\"Belgium\";a:5:{s:12:\"Vergelijk.be\";a:6:{s:12:\"channel_hash\";s:32:\"b14cc501a3a39111ada7d135eecaf1c8\";s:4:\"name\";s:12:\"Vergelijk.be\";s:6:\"fields\";s:11:\"vergelijkbe\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Vergelijk.be\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:11:\"Comparer.be\";a:6:{s:12:\"channel_hash\";s:32:\"94e9e3ebc8c4d09cf6d5678db730d312\";s:4:\"name\";s:11:\"Comparer.be\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:11:\"Comparer.be\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:13:\"Kieskeurig.be\";a:6:{s:12:\"channel_hash\";s:32:\"2775af9e954da0528a1e9e7520d74cd4\";s:4:\"name\";s:13:\"Kieskeurig.be\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:13:\"Kieskeurig.be\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:10:\"Beslist.be\";a:6:{s:12:\"channel_hash\";s:32:\"04e1cd6fae01b2a7f92cf228192955c7\";s:4:\"name\";s:10:\"Beslist.be\";s:6:\"fields\";s:7:\"beslist\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Beslist.be\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:7:\"Bol.com\";a:6:{s:12:\"channel_hash\";s:32:\"304953957ace01b0632a659b05c976fa\";s:4:\"name\";s:7:\"Bol.com\";s:6:\"fields\";s:3:\"bol\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:7:\"Bol.com\";s:4:\"type\";s:11:\"Marketplace\";}}s:6:\"Belize\";a:0:{}s:5:\"Benin\";a:0:{}s:6:\"Bhutan\";a:0:{}s:7:\"Bolivia\";a:0:{}s:18:\"Bosnia Herzegovina\";a:0:{}s:8:\"Botswana\";a:0:{}s:6:\"Brazil\";a:2:{s:8:\"Stylight\";a:6:{s:12:\"channel_hash\";s:32:\"37071bd1527b16cea909bf9efba4677c\";s:4:\"name\";s:15:\"Stylight.com.br\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:15:\"Stylight.com.br\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:9:\"Shopmania\";a:6:{s:12:\"channel_hash\";s:32:\"f106585b820c3ef031c5a4429d84658b\";s:4:\"name\";s:16:\"Shopmania.com.br\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:16:\"Shopmanie.com.br\";s:4:\"type\";s:26:\"Comparison shopping engine\";}}s:6:\"Brunei\";a:0:{}s:8:\"Bulgaria\";a:1:{s:9:\"Shopmania\";a:6:{s:12:\"channel_hash\";s:32:\"fb595d74de3599b73a7e2463873db035\";s:4:\"name\";s:12:\"Shopmania.bg\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Shopmanie.bg\";s:4:\"type\";s:26:\"Comparison shopping engine\";}}s:7:\"Burkina\";a:0:{}s:7:\"Burundi\";a:0:{}s:8:\"Cambodia\";a:0:{}s:8:\"Cameroon\";a:0:{}s:6:\"Canada\";a:4:{s:7:\"Incurvy\";a:6:{s:12:\"channel_hash\";s:32:\"b9c15c9c8b92b028ece8171dc10a1dcc\";s:4:\"name\";s:11:\"Incurvy.com\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:11:\"Incurvy.com\";s:4:\"type\";s:11:\"Marketplace\";}s:6:\"Kijiji\";a:6:{s:12:\"channel_hash\";s:32:\"9c050ba1834dbd534f2dcf58341bdb49\";s:4:\"name\";s:9:\"Kijiji.ca\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Kijiji.ca\";s:4:\"type\";s:11:\"Advertising\";}s:12:\"Polyvore.com\";a:6:{s:12:\"channel_hash\";s:32:\"9a9abd8532878629e2b3487c1ad157eb\";s:4:\"name\";s:12:\"Polyvore.com\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Polyvore.com\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:11:\"Stylight.ca\";a:6:{s:12:\"channel_hash\";s:32:\"25722c8eecf57e6be5d90a7074617dce\";s:4:\"name\";s:11:\"Stylight.ca\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:11:\"Stylight.ca\";s:4:\"type\";s:26:\"Comparison shopping engine\";}}s:11:\"Cape Verder\";a:0:{}s:19:\"Central African Rep\";a:0:{}s:4:\"Chad\";a:0:{}s:5:\"Chile\";a:1:{s:12:\"Shopmania.cl\";a:6:{s:12:\"channel_hash\";s:32:\"c7b6ca35fa8657536447d821629d883c\";s:4:\"name\";s:12:\"Shopmania.cl\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Shopmania.cl\";s:4:\"type\";s:26:\"Comparison shopping engine\";}}s:5:\"China\";a:0:{}s:8:\"Colombia\";a:0:{}s:7:\"Comoros\";a:0:{}s:5:\"Congo\";a:0:{}s:10:\"Costa Rica\";a:0:{}s:7:\"Croatia\";a:0:{}s:4:\"Cuba\";a:0:{}s:6:\"Cyprus\";a:0:{}s:14:\"Czech Republic\";a:6:{s:13:\"Shop-mania.cz\";a:6:{s:12:\"channel_hash\";s:32:\"8f9ebbc4890cad87750226f60e072f16\";s:4:\"name\";s:13:\"Shop-mania.cz\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:13:\"Shop-mania.cz\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:9:\"Kelkoo.cz\";a:6:{s:12:\"channel_hash\";s:32:\"5ea8c05e549f9a84334ac21667ad8348\";s:4:\"name\";s:9:\"Kelkoo.cz\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Kelkoo.cz\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:5:\"Glami\";a:6:{s:12:\"channel_hash\";s:32:\"374cd7095ff1ddac2b22862387012c79\";s:4:\"name\";s:8:\"Glami.cz\";s:6:\"fields\";s:5:\"glami\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:8:\"Glami.cz\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:8:\"Zbozi.cz\";a:6:{s:12:\"channel_hash\";s:32:\"3dc562578553be9862881159004f0017\";s:4:\"name\";s:8:\"Zbozi.cz\";s:6:\"fields\";s:5:\"zbozi\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:8:\"Zbozi.cz\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:12:\"Shopalike.cz\";a:6:{s:12:\"channel_hash\";s:32:\"305720fe0a9ecd993dbf4fa62319f314\";s:4:\"name\";s:12:\"Shopalike.cz\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Shopalike.cz\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:10:\"Heureka.cz\";a:6:{s:12:\"channel_hash\";s:32:\"58f2a2d37c2437078ac08e3ea1771673\";s:4:\"name\";s:10:\"Heureka.cz\";s:6:\"fields\";s:7:\"heureka\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Heureka.cz\";s:4:\"type\";s:11:\"Marketplace\";}}s:7:\"Denmark\";a:6:{s:6:\"Adform\";a:6:{s:12:\"channel_hash\";s:32:\"15602bd34e4d3e8a319b24328f5e1629\";s:4:\"name\";s:6:\"Adform\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Adform.com\";s:4:\"type\";s:11:\"Advertising\";}s:10:\"Smartly.io\";a:6:{s:12:\"channel_hash\";s:32:\"461ad54178f49a7c738633afabf21c12\";s:4:\"name\";s:10:\"Smartly.io\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Smartly.io\";s:4:\"type\";s:11:\"Advertising\";}s:11:\"Pricerunner\";a:6:{s:12:\"channel_hash\";s:32:\"543d00bd13951a8155e712c12ac96e99\";s:4:\"name\";s:14:\"Pricerunner.dk\";s:6:\"fields\";s:15:\"google_shopping\";s:8:\"taxonomy\";s:15:\"google_shopping\";s:10:\"utm_source\";s:14:\"Pricerunner.dk\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:9:\"Shopalike\";a:6:{s:12:\"channel_hash\";s:32:\"d46c69236087665b5439092b3db4af0e\";s:4:\"name\";s:12:\"ShopAlike.dk\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"ShopAlike.dk\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:6:\"Miinto\";a:6:{s:12:\"channel_hash\";s:32:\"f4d56ea28a3b6903c484ec6dfc15fd4b\";s:4:\"name\";s:9:\"Miinto.dk\";s:6:\"fields\";s:9:\"miinto_dk\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Miinto.dk\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:6:\"Katoni\";a:6:{s:12:\"channel_hash\";s:32:\"77aae8def5af3ac1136b5977e3f3894f\";s:4:\"name\";s:9:\"Katoni.dk\";s:6:\"fields\";s:6:\"katoni\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Katoni.dk\";s:4:\"type\";s:26:\"Comparison shopping engine\";}}s:8:\"Djibouti\";a:0:{}s:8:\"Dominica\";a:0:{}s:18:\"Dominican Republic\";a:0:{}s:10:\"East Timor\";a:0:{}s:7:\"Ecuador\";a:0:{}s:5:\"Egypt\";a:0:{}s:11:\"El Salvador\";a:0:{}s:17:\"Equatorial Guinea\";a:0:{}s:7:\"Eritrea\";a:0:{}s:7:\"Estonia\";a:0:{}s:8:\"Ethiopia\";a:0:{}s:4:\"Fiji\";a:0:{}s:7:\"Finland\";a:5:{s:6:\"Adform\";a:6:{s:12:\"channel_hash\";s:32:\"15602bd34e4d3e8a319b24328f5e1629\";s:4:\"name\";s:6:\"Adform\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Adform.com\";s:4:\"type\";s:11:\"Advertising\";}s:10:\"Smartly.io\";a:6:{s:12:\"channel_hash\";s:32:\"461ad54178f49a7c738633afabf21c12\";s:4:\"name\";s:10:\"Smartly.io\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Smartly.io\";s:4:\"type\";s:11:\"Advertising\";}s:9:\"Vertaa.fi\";a:6:{s:12:\"channel_hash\";s:32:\"8eb68a68e5f26a54a96274cf535fdcdf\";s:4:\"name\";s:9:\"Vertaa.fi\";s:6:\"fields\";s:8:\"vertaafi\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Vertaa.fi\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:8:\"Prisjakt\";a:6:{s:12:\"channel_hash\";s:32:\"a7c74fa1a6dab18191ba2da46450b4d4\";s:4:\"name\";s:8:\"Prisjakt\";s:6:\"fields\";s:15:\"google_shopping\";s:8:\"taxonomy\";s:15:\"google_shopping\";s:10:\"utm_source\";s:8:\"Prisjakt\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:13:\"Hintaseuranta\";a:6:{s:12:\"channel_hash\";s:32:\"156bc501056b152b57baed207b1a13b7\";s:4:\"name\";s:16:\"Hintaseuranta.fi\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:16:\"Hintaseuranta.fi\";s:4:\"type\";s:26:\"Comparison shopping engine\";}}s:6:\"France\";a:21:{s:9:\"Connexity\";a:6:{s:12:\"channel_hash\";s:32:\"e8ce03e3f24a932e7ac633d37fef1654\";s:4:\"name\";s:9:\"Connexity\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:13:\"Connexity.com\";s:4:\"type\";s:11:\"Advertising\";}s:8:\"ManoMano\";a:6:{s:12:\"channel_hash\";s:32:\"96cf4957b22a5a4844ae6eeaecdd914e\";s:4:\"name\";s:11:\"ManoMano.fr\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:11:\"ManoMano.fr\";s:4:\"type\";s:11:\"Marketplace\";}s:7:\"Incurvy\";a:6:{s:12:\"channel_hash\";s:32:\"8f5a5256a7f6fb954be381327445440b\";s:4:\"name\";s:7:\"Incurvy\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:7:\"Incurvy\";s:4:\"type\";s:11:\"Marketplace\";}s:13:\"Cherchons.com\";a:6:{s:12:\"channel_hash\";s:32:\"6a9697f23060d90ac2d090c6e59fe22d\";s:4:\"name\";s:13:\"Cherchons.com\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:13:\"Cherchons.com\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:10:\"Choozen.fr\";a:6:{s:12:\"channel_hash\";s:32:\"19041edf315d34d799f1f1608a9baa4d\";s:4:\"name\";s:10:\"Choozen.fr\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Choozen.fr\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:7:\"Ciao.fr\";a:6:{s:12:\"channel_hash\";s:32:\"dd98d44d496bfb11717dbef588c32a67\";s:4:\"name\";s:7:\"Ciao.fr\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:7:\"Ciao.fr\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:11:\"Comparer.fr\";a:6:{s:12:\"channel_hash\";s:32:\"dd6f55470c8b1b90a099d2669befb132\";s:4:\"name\";s:11:\"Comparer.fr\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:11:\"Comparer.fr\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:9:\"Idealo.fr\";a:6:{s:12:\"channel_hash\";s:32:\"dfec07026d2a6724bb609bbb9ad1028a\";s:4:\"name\";s:9:\"Idealo.fr\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Idealo.fr\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:9:\"Kelkoo.fr\";a:6:{s:12:\"channel_hash\";s:32:\"d3f1473a0f4eb16743e7d496a15c0af3\";s:4:\"name\";s:9:\"Kelkoo.fr\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Kelkoo.fr\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:10:\"LeGuide.fr\";a:6:{s:12:\"channel_hash\";s:32:\"598ec5697697e716d95e7a7f12e029d5\";s:4:\"name\";s:10:\"LeGuide.fr\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"LeGuide.fr\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:6:\"Miinto\";a:6:{s:12:\"channel_hash\";s:32:\"38ee6eeeb2c68f39c3d0b5759db8ffca\";s:4:\"name\";s:9:\"Miinto.fr\";s:6:\"fields\";s:9:\"miinto_fr\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Miinto.fr\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:16:\"Priceminister.fr\";a:6:{s:12:\"channel_hash\";s:32:\"3b5483411970132dd1ac20a5d080162e\";s:4:\"name\";s:16:\"Priceminister.fr\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:16:\"Priceminister.fr\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:14:\"Pricerunner.fr\";a:6:{s:12:\"channel_hash\";s:32:\"cdd7a67023b9761e66d22818731ded4e\";s:4:\"name\";s:14:\"Pricerunner.fr\";s:6:\"fields\";s:15:\"google_shopping\";s:8:\"taxonomy\";s:15:\"google_shopping\";s:10:\"utm_source\";s:14:\"Pricerunner.fr\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:12:\"ShopAlike.fr\";a:6:{s:12:\"channel_hash\";s:32:\"a8a47c7477ab85d695dfbe59c02a9110\";s:4:\"name\";s:12:\"ShopAlike.fr\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"ShopAlike.fr\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:12:\"ShopMania.fr\";a:6:{s:12:\"channel_hash\";s:32:\"dc4d5c1673ce330ccd3250236f74974b\";s:4:\"name\";s:12:\"ShopMania.fr\";s:6:\"fields\";s:12:\"shopmania_ro\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"ShopMania.fr\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:12:\"Shopping.com\";a:6:{s:12:\"channel_hash\";s:32:\"6e3bbd8e7e9ca791bf13f28fb701e038\";s:4:\"name\";s:12:\"Shopping.com\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Shopping.com\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:12:\"Shopzilla.fr\";a:6:{s:12:\"channel_hash\";s:32:\"26347f8580ca8411762c47ba4980642b\";s:4:\"name\";s:12:\"Shopzilla.fr\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Shopzilla.fr\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:14:\"Stylefruits.fr\";a:6:{s:12:\"channel_hash\";s:32:\"6e583ed7574776a8e14234fbba0cb5c6\";s:4:\"name\";s:14:\"Stylefruits.fr\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:14:\"Stylefruits.fr\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:11:\"Stylight.fr\";a:6:{s:12:\"channel_hash\";s:32:\"4297f0a03b3eb2c1f287788603294543\";s:4:\"name\";s:11:\"Stylight.fr\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:11:\"Stylight.fr\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:9:\"Twenga.fr\";a:6:{s:12:\"channel_hash\";s:32:\"b1fd34002f837eaf30af24abdc75f3cb\";s:4:\"name\";s:9:\"Twenga.fr\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Twenga.fr\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:15:\"Webmarchand.com\";a:6:{s:12:\"channel_hash\";s:32:\"5aee3b77e05409685dc54772210c89fa\";s:4:\"name\";s:15:\"Webmarchand.com\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:15:\"Webmarchand.com\";s:4:\"type\";s:26:\"Comparison shopping engine\";}}s:13:\"French Guiana\";a:0:{}s:5:\"Gabon\";a:0:{}s:6:\"Gambia\";a:0:{}s:7:\"Georgia\";a:0:{}s:7:\"Germany\";a:41:{s:9:\"Connexity\";a:6:{s:12:\"channel_hash\";s:32:\"e8ce03e3f24a932e7ac633d37fef1654\";s:4:\"name\";s:9:\"Connexity\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:13:\"Connexity.com\";s:4:\"type\";s:11:\"Advertising\";}s:6:\"Adform\";a:6:{s:12:\"channel_hash\";s:32:\"1f8fd79bdc962ff2bd707095cb9b998e\";s:4:\"name\";s:6:\"Adform\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:6:\"Adform\";s:4:\"type\";s:11:\"Advertising\";}s:6:\"AdRoll\";a:6:{s:12:\"channel_hash\";s:32:\"66bb51c1b1beb93d13b3232548cd06c1\";s:4:\"name\";s:9:\"AdRoll.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"AdRoll.de\";s:4:\"type\";s:11:\"Advertising\";}s:11:\"ElCheapo.de\";a:6:{s:12:\"channel_hash\";s:32:\"3158228c1b0ef249aa27f74879234938\";s:4:\"name\";s:11:\"ElCheapo.de\";s:6:\"fields\";s:11:\"vergelijknl\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:11:\"ElCheapo.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:10:\"Smartly.io\";a:6:{s:12:\"channel_hash\";s:32:\"461ad54178f49a7c738633afabf21c12\";s:4:\"name\";s:10:\"Smartly.io\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Smartly.io\";s:4:\"type\";s:11:\"Advertising\";}s:9:\"TheNextAd\";a:6:{s:12:\"channel_hash\";s:32:\"313e53991d222faa60c8654d157adf91\";s:4:\"name\";s:9:\"TheNextAd\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"TheNextAd\";s:4:\"type\";s:11:\"Advertising\";}s:8:\"Webgains\";a:6:{s:12:\"channel_hash\";s:32:\"0f30f50891d0306a7560532e75f8d972\";s:4:\"name\";s:11:\"Webgains.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:11:\"Webgains.de\";s:4:\"type\";s:11:\"Advertising\";}s:8:\"Crowdfox\";a:6:{s:12:\"channel_hash\";s:32:\"84536c34ee3130d6bc3cb8a2aca1af65\";s:4:\"name\";s:12:\"Crowdfox.com\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Crowdfox.com\";s:4:\"type\";s:11:\"Marketplace\";}s:7:\"Real.de\";a:6:{s:12:\"channel_hash\";s:32:\"e014d0bb084768f36664c749a1074631\";s:4:\"name\";s:7:\"Real.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:7:\"Real.de\";s:4:\"type\";s:11:\"Marketplace\";}s:10:\"Incurvy.de\";a:6:{s:12:\"channel_hash\";s:32:\"a7ebc5d86ba15fe717ce8c53c97ed46f\";s:4:\"name\";s:10:\"Incurvy.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Incurvy.de\";s:4:\"type\";s:11:\"Marketplace\";}s:10:\"Allyouneed\";a:6:{s:12:\"channel_hash\";s:32:\"049fb486d3893e0d6ad644e5860d105d\";s:4:\"name\";s:13:\"Allyouneed.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:13:\"Allyouneed.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:6:\"Apomio\";a:6:{s:12:\"channel_hash\";s:32:\"ffc2c824a3baba59aef78fb2aa527778\";s:4:\"name\";s:9:\"Apomio.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Apomio.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:8:\"Billiger\";a:6:{s:12:\"channel_hash\";s:32:\"960855afe1068c4577ffeea7c14d56f4\";s:4:\"name\";s:11:\"Billiger.de\";s:6:\"fields\";s:8:\"billiger\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:11:\"Billiger.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:7:\"Choozen\";a:6:{s:12:\"channel_hash\";s:32:\"7aa805f40ae37f794a1336fe9543a74e\";s:4:\"name\";s:10:\"Choozen.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Choozen.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:4:\"Ciao\";a:6:{s:12:\"channel_hash\";s:32:\"7af3a673866f2ab7525b721549d8d460\";s:4:\"name\";s:7:\"Ciao.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:7:\"Ciao.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:6:\"Domodi\";a:6:{s:12:\"channel_hash\";s:32:\"6ec9a3eeb4f64c3d5aaf5e96710178b0\";s:4:\"name\";s:9:\"Domodi.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Domodi.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:8:\"Fashiola\";a:6:{s:12:\"channel_hash\";s:32:\"1936afcd82ebd5e3545e9fc11ccc353b\";s:4:\"name\";s:11:\"Fashiola.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:11:\"Fashiola.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:8:\"Geizhals\";a:6:{s:12:\"channel_hash\";s:32:\"cd92901262dc9fec50419741d2967df9\";s:4:\"name\";s:11:\"Geizhals.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:11:\"Geishals.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:10:\"Guenstiger\";a:6:{s:12:\"channel_hash\";s:32:\"91274396f50a1d0bbeb85cacaaa7b128\";s:4:\"name\";s:13:\"Guenstiger.de\";s:6:\"fields\";s:10:\"guenstiger\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:13:\"Guenstiger.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:7:\"Hood.de\";a:6:{s:12:\"channel_hash\";s:32:\"5db45e968ba43c2bd407d45b032eed8c\";s:4:\"name\";s:7:\"Hood.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:7:\"Hood.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:9:\"Idealo.de\";a:6:{s:12:\"channel_hash\";s:32:\"2ee3561d8c79d18f53203ca765482201\";s:4:\"name\";s:9:\"Idealo.de\";s:6:\"fields\";s:6:\"idealo\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Idealo.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:9:\"Kelkoo.de\";a:6:{s:12:\"channel_hash\";s:32:\"4d910564613d32784060cc2f1a9fd151\";s:4:\"name\";s:9:\"Kelkoo.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Kelkoo.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:13:\"Ladenzeile.de\";a:6:{s:12:\"channel_hash\";s:32:\"223d4ab99245b88158fe5baef97bd0a8\";s:4:\"name\";s:13:\"Ladenzeile.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:13:\"Ladenzeile.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:10:\"Livingo.de\";a:6:{s:12:\"channel_hash\";s:32:\"79a3d6a445837ab2ec62c291a9c0a8c2\";s:4:\"name\";s:10:\"Livingo.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Livingo.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:15:\"Medizinfuchs.de\";a:6:{s:12:\"channel_hash\";s:32:\"182dc45ca30116e3216f82759cc015ee\";s:4:\"name\";s:15:\"Medizinfuchs.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:15:\"Medizinfuchs.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:9:\"Miinto.de\";a:6:{s:12:\"channel_hash\";s:32:\"fab6e42f1657ed83bb21f7111a5a7c7d\";s:4:\"name\";s:9:\"Miinto.de\";s:6:\"fields\";s:9:\"miinto_de\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Miinto.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:9:\"Moebel.de\";a:6:{s:12:\"channel_hash\";s:32:\"490f766df6fc7e0af4330da9894deb4d\";s:4:\"name\";s:9:\"Moebel.de\";s:6:\"fields\";s:6:\"moebel\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Moebel.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:14:\"My Best Brands\";a:6:{s:12:\"channel_hash\";s:32:\"453ca2dddfe68601d8cfcb0e98c76a89\";s:4:\"name\";s:15:\"Mybestbrands.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:15:\"Mybestbrands.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:8:\"Preis.de\";a:6:{s:12:\"channel_hash\";s:32:\"045f1a0c057d99ce462ae97ac89aa5ca\";s:4:\"name\";s:8:\"Preis.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:8:\"Preis.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:14:\"Pricerunner.de\";a:6:{s:12:\"channel_hash\";s:32:\"ea3b639b7af05673e1800526f24d5a1a\";s:4:\"name\";s:14:\"Pricerunner.de\";s:6:\"fields\";s:15:\"google_shopping\";s:8:\"taxonomy\";s:15:\"google_shopping\";s:10:\"utm_source\";s:14:\"Pricerunner.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:10:\"Rakuten.de\";a:6:{s:12:\"channel_hash\";s:32:\"de56d454b94ed12c1ef320321a748531\";s:4:\"name\";s:10:\"Rakuten.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Rakuten.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:13:\"Restposten.de\";a:6:{s:12:\"channel_hash\";s:32:\"d8ace963800514a43bbecdc39080ac10\";s:4:\"name\";s:13:\"Restposten.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:13:\"Restposten.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:12:\"Shopmania.de\";a:6:{s:12:\"channel_hash\";s:32:\"bd851db4983a92fd0964aec473011294\";s:4:\"name\";s:12:\"Shopmania.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Shopmania.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:12:\"Shopping.com\";a:6:{s:12:\"channel_hash\";s:32:\"6e3bbd8e7e9ca791bf13f28fb701e038\";s:4:\"name\";s:12:\"Shopping.com\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Shopping.com\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:12:\"Shopzilla.de\";a:6:{s:12:\"channel_hash\";s:32:\"7a63803182a008ed3601eb064778c14e\";s:4:\"name\";s:12:\"Shopzilla.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Shopzilla.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:11:\"Sparmedo.de\";a:6:{s:12:\"channel_hash\";s:32:\"226c5d6ef522a955723e39e41d790c95\";s:4:\"name\";s:11:\"Sparmedo.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:11:\"Sparmedo.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:14:\"Stylefruits.de\";a:6:{s:12:\"channel_hash\";s:32:\"8adce1fb4e054d16a3b808cc2728db5e\";s:4:\"name\";s:14:\"Stylefruits.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:14:\"Stylefruits.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:14:\"Stylelounge.de\";a:6:{s:12:\"channel_hash\";s:32:\"b3be5fb5526c2a214a9e2ef33518fe4a\";s:4:\"name\";s:14:\"Stylelounge.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:14:\"Stylelounge.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:11:\"Stylight.de\";a:6:{s:12:\"channel_hash\";s:32:\"ad0e620da1822d19bd857d91f58b8c3d\";s:4:\"name\";s:11:\"Stylight.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:11:\"Stylight.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:9:\"Twenga.de\";a:6:{s:12:\"channel_hash\";s:32:\"9a43d51ce80705fe2b3ef11e35effc85\";s:4:\"name\";s:9:\"Twenga.de\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Twenga.de\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:8:\"Wish.com\";a:6:{s:12:\"channel_hash\";s:32:\"70ec5f93b0f12e6f76d5f97657f23cd4\";s:4:\"name\";s:8:\"Wish.com\";s:6:\"fields\";s:7:\"wishcom\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:8:\"Wish.com\";s:4:\"type\";s:11:\"Marketplace\";}}s:5:\"Ghana\";a:0:{}s:6:\"Greece\";a:4:{s:7:\"Incurvy\";a:6:{s:12:\"channel_hash\";s:32:\"b9c15c9c8b92b028ece8171dc10a1dcc\";s:4:\"name\";s:7:\"Incurvy\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:11:\"Incurvy.com\";s:4:\"type\";s:11:\"Marketplace\";}s:7:\"Skroutz\";a:6:{s:12:\"channel_hash\";s:32:\"d4e5a1ae056299a65ce0d2b72b83ac00\";s:4:\"name\";s:7:\"Skroutz\";s:6:\"fields\";s:7:\"skroutz\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Skroutz.gr\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:9:\"Bestprice\";a:6:{s:12:\"channel_hash\";s:32:\"3678b92a2e469b2d32d2918275b54f1b\";s:4:\"name\";s:9:\"Bestprice\";s:6:\"fields\";s:9:\"bestprice\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Bestprice.gr\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:5:\"Glami\";a:6:{s:12:\"channel_hash\";s:32:\"5eb6e7e39596930e78c653c83699ef04\";s:4:\"name\";s:8:\"Glami.gr\";s:6:\"fields\";s:5:\"glami\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:8:\"Glami.gr\";s:4:\"type\";s:26:\"Comparison shopping engine\";}}s:7:\"Grenada\";a:0:{}s:10:\"Guadeloupe\";a:0:{}s:9:\"Guatemala\";a:0:{}s:6:\"Guinea\";a:0:{}s:13:\"Guinea-Bissau\";a:0:{}s:6:\"Guyana\";a:0:{}s:5:\"Haiti\";a:0:{}s:8:\"Honduras\";a:0:{}s:9:\"Hong Kong\";a:0:{}s:7:\"Hungary\";a:1:{s:9:\"ShopMania\";a:6:{s:12:\"channel_hash\";s:32:\"a4add996b9580ee7f1d08832c974cb0a\";s:4:\"name\";s:12:\"ShopMania.hu\";s:6:\"fields\";s:12:\"shopmania_ro\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"ShopMania.hu\";s:4:\"type\";s:26:\"Comparison shopping engine\";}}s:7:\"Iceland\";a:0:{}s:5:\"India\";a:1:{s:9:\"ShopMania\";a:6:{s:12:\"channel_hash\";s:32:\"b871141a936ff750db71bd3dfc3b1924\";s:4:\"name\";s:12:\"ShopMania.in\";s:6:\"fields\";s:12:\"shopmania_ro\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"ShopMania.in\";s:4:\"type\";s:26:\"Comparison shopping engine\";}}s:9:\"Indonesia\";a:0:{}s:4:\"Iran\";a:0:{}s:4:\"Iraq\";a:0:{}s:7:\"Ireland\";a:2:{s:9:\"ShopMania\";a:6:{s:12:\"channel_hash\";s:32:\"3f4759c9332fedd2fa7182d7953793b6\";s:4:\"name\";s:12:\"ShopMania.ie\";s:6:\"fields\";s:12:\"shopmania_ro\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"ShopMania.ie\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:8:\"Stylight\";a:6:{s:12:\"channel_hash\";s:32:\"7393cbc85411aba928c7443420a65eb1\";s:4:\"name\";s:11:\"Stylight.ie\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:11:\"Stylight.ie\";s:4:\"type\";s:26:\"Comparison shopping engine\";}}s:6:\"Israel\";a:1:{s:9:\"Zap.co.il\";a:6:{s:12:\"channel_hash\";s:32:\"173421ab95332639b860baf534501a35\";s:4:\"name\";s:9:\"Zap.co.il\";s:6:\"fields\";s:3:\"zap\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Zap.co.il\";s:4:\"type\";s:26:\"Comparison shopping engine\";}}s:5:\"Italy\";a:7:{s:9:\"ShopAlike\";a:6:{s:12:\"channel_hash\";s:32:\"d5b85ea8d340869b82e98a6ccfb4162d\";s:4:\"name\";s:12:\"ShopAlike.it\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"ShopAlike.it\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:9:\"Idealo.it\";a:6:{s:12:\"channel_hash\";s:32:\"0362057dfeec1227d736e028b8f96d87\";s:4:\"name\";s:9:\"Idealo.it\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Idealo.it\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:9:\"ShopMania\";a:6:{s:12:\"channel_hash\";s:32:\"03984d720f798a8278f72c4de8b9d13e\";s:4:\"name\";s:12:\"ShopMania.it\";s:6:\"fields\";s:12:\"shopmania_ro\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"ShopMania.it\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:11:\"Trovaprezzi\";a:6:{s:12:\"channel_hash\";s:32:\"704d5085f0631c2819207d73bc42324a\";s:4:\"name\";s:14:\"Trovaprezzi.it\";s:6:\"fields\";s:11:\"trovaprezzi\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:14:\"Trovaprezzi.it\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:8:\"Stylight\";a:6:{s:12:\"channel_hash\";s:32:\"45bcc322af1565f20c6aa534b0b90986\";s:4:\"name\";s:11:\"Stylight.it\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:11:\"Stylight.it\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:6:\"Kijiji\";a:6:{s:12:\"channel_hash\";s:32:\"da45d6e36e7d20a274a4165cc79aebdb\";s:4:\"name\";s:9:\"Kijiji.it\";s:6:\"fields\";s:6:\"kijiji\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Kijiji.it\";s:4:\"type\";s:11:\"Marketplace\";}s:8:\"Wish.com\";a:6:{s:12:\"channel_hash\";s:32:\"70ec5f93b0f12e6f76d5f97657f23cd4\";s:4:\"name\";s:8:\"Wish.com\";s:6:\"fields\";s:7:\"wishcom\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:8:\"Wish.com\";s:4:\"type\";s:11:\"Marketplace\";}}s:11:\"Ivory Coast\";a:0:{}s:7:\"Jamaica\";a:0:{}s:5:\"Japan\";a:1:{s:9:\"ShopMania\";a:6:{s:12:\"channel_hash\";s:32:\"d88609f76a0e1f87c7afd03c839c7cb7\";s:4:\"name\";s:12:\"ShopMania.jp\";s:6:\"fields\";s:12:\"shopmania_ro\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"ShopMania.jp\";s:4:\"type\";s:26:\"Comparison shopping engine\";}}s:6:\"Jordan\";a:0:{}s:10:\"Kazakhstan\";a:0:{}s:5:\"Kenya\";a:0:{}s:8:\"Kiribati\";a:0:{}s:11:\"Korea North\";a:0:{}s:11:\"Korea South\";a:0:{}s:6:\"Kosovo\";a:0:{}s:6:\"Kuwait\";a:0:{}s:10:\"Kyrgyzstan\";a:0:{}s:4:\"Laos\";a:0:{}s:6:\"Latvia\";a:1:{s:12:\"Salidzini.lv\";a:6:{s:12:\"channel_hash\";s:32:\"a935d1752ae3a0636a9e746e64fd3d77\";s:4:\"name\";s:12:\"Salidzini.lv\";s:6:\"fields\";s:9:\"salidzini\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Salidzini.lv\";s:4:\"type\";s:26:\"Comparison shopping engine\";}}s:7:\"Lebanon\";a:0:{}s:7:\"Lesotho\";a:0:{}s:7:\"Liberia\";a:0:{}s:5:\"Libya\";a:0:{}s:12:\"Lichtenstein\";a:0:{}s:9:\"Lithuania\";a:0:{}s:10:\"Luxembourg\";a:0:{}s:9:\"Macedonia\";a:0:{}s:10:\"Madagascar\";a:0:{}s:6:\"Malawi\";a:0:{}s:8:\"Malaysia\";a:0:{}s:8:\"Maldives\";a:0:{}s:4:\"Mali\";a:0:{}s:5:\"Malta\";a:0:{}s:16:\"Marshall Islands\";a:0:{}s:10:\"Martinique\";a:0:{}s:10:\"Mauritania\";a:0:{}s:9:\"Mauritius\";a:0:{}s:6:\"Mexico\";a:2:{s:9:\"ShopMania\";a:6:{s:12:\"channel_hash\";s:32:\"065f36bd06d8a8aedaf3b769c003a320\";s:4:\"name\";s:16:\"ShopMania.com.mx\";s:6:\"fields\";s:12:\"shopmania_ro\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:16:\"ShopMania.com.mx\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:8:\"Stylight\";a:6:{s:12:\"channel_hash\";s:32:\"8d71e67b84160c2dd655c9eb9fa100f3\";s:4:\"name\";s:15:\"Stylight.com.mx\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:15:\"Stylight.com.mx\";s:4:\"type\";s:26:\"Comparison shopping engine\";}}s:10:\"Micronesia\";a:0:{}s:7:\"Moldova\";a:0:{}s:6:\"Monaco\";a:0:{}s:8:\"Mongolia\";a:0:{}s:10:\"Montenegro\";a:0:{}s:7:\"Morocco\";a:0:{}s:10:\"Mozambiqua\";a:0:{}s:7:\"Myanmar\";a:0:{}s:7:\"Namibia\";a:0:{}s:5:\"Nauru\";a:0:{}s:5:\"Nepal\";a:0:{}s:11:\"Netherlands\";a:19:{s:12:\"Vergelijk.nl\";a:6:{s:12:\"channel_hash\";s:32:\"7c65ce50e8175aef25d8a8946c0b1368\";s:4:\"name\";s:12:\"Vergelijk.nl\";s:6:\"fields\";s:11:\"vergelijknl\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Vergelijk.nl\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:13:\"Kieskeurig.nl\";a:6:{s:12:\"channel_hash\";s:32:\"15e8f034cbbbc39d612225a650782f2b\";s:4:\"name\";s:13:\"Kieskeurig.nl\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:13:\"Kieskeurig.nl\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:11:\"Tweakers.nl\";a:6:{s:12:\"channel_hash\";s:32:\"873e1e4b39d951b129dee8e277319696\";s:4:\"name\";s:11:\"Tweakers.nl\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:11:\"Tweakers.nl\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:10:\"Boetiek.nl\";a:6:{s:12:\"channel_hash\";s:32:\"432a39d14c7d8e7fd362027a9a111512\";s:4:\"name\";s:10:\"Boetiek.nl\";s:6:\"fields\";s:7:\"boetiek\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Boetiek.nl\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:15:\"Fashionchick.nl\";a:6:{s:12:\"channel_hash\";s:32:\"4e943c208f8a5c17ba7743cd355cb335\";s:4:\"name\";s:15:\"Fashionchick.nl\";s:6:\"fields\";s:12:\"fashionchick\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:15:\"Fashionchick.nl\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:10:\"Kleding.nl\";a:6:{s:12:\"channel_hash\";s:32:\"a87809b5d8a28c0c1928c8b4a74a5aaf\";s:4:\"name\";s:10:\"Kleding.nl\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Kleding.nl\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:13:\"Hardware.info\";a:6:{s:12:\"channel_hash\";s:32:\"e29f2c729fe2ac1a65e6cff2bc137401\";s:4:\"name\";s:13:\"Hardware.info\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:13:\"Hardware.info\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:9:\"Kelkoo.nl\";a:6:{s:12:\"channel_hash\";s:32:\"255bfbafa81ea4f6543f0b0b4d84b3c8\";s:4:\"name\";s:9:\"Kelkoo.nl\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Kelkoo.nl\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:16:\"Ciao-shopping.nl\";a:6:{s:12:\"channel_hash\";s:32:\"3f89f2f63b515336f47bb15960da3e3b\";s:4:\"name\";s:15:\"Cia-shopping.nl\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:16:\"Ciao-shopping.nl\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:10:\"Beslist.nl\";a:6:{s:12:\"channel_hash\";s:32:\"c1dffa4aec7858719db7d59af8e3d1c9\";s:4:\"name\";s:10:\"Beslist.nl\";s:6:\"fields\";s:7:\"beslist\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Beslist.nl\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:6:\"Miinto\";a:6:{s:12:\"channel_hash\";s:32:\"47fe5a9cd14e2d763213711ab191138e\";s:4:\"name\";s:9:\"Miinto.nl\";s:6:\"fields\";s:9:\"miinto_nl\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Miinto.nl\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:7:\"Bol.com\";a:6:{s:12:\"channel_hash\";s:32:\"304953957ace01b0632a659b05c976fa\";s:4:\"name\";s:7:\"Bol.com\";s:6:\"fields\";s:3:\"bol\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:7:\"Bol.com\";s:4:\"type\";s:11:\"Marketplace\";}s:9:\"Fruugo.nl\";a:6:{s:12:\"channel_hash\";s:32:\"59cfba15aef47e3743cdf4e388c6ef6a\";s:4:\"name\";s:9:\"Fruugo.nl\";s:6:\"fields\";s:8:\"fruugonl\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Fruugo.nl\";s:4:\"type\";s:11:\"Marketplace\";}s:13:\"Ooshopping.nl\";a:6:{s:12:\"channel_hash\";s:32:\"c4d493daf417220eac8552b1fc1b18b3\";s:4:\"name\";s:13:\"Ooshopping.nl\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:13:\"Ooshopping.nl\";s:4:\"type\";s:11:\"Marketplace\";}s:6:\"Adform\";a:6:{s:12:\"channel_hash\";s:32:\"35a45b9c25f457dae6cc6fa782a05ed5\";s:4:\"name\";s:9:\"Adform.nl\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Adform.nl\";s:4:\"type\";s:11:\"Advertising\";}s:6:\"AdRoll\";a:6:{s:12:\"channel_hash\";s:32:\"8e9e4e6cd88fe800934d15a19cfdae90\";s:4:\"name\";s:9:\"AdRoll.nl\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"AdRoll.nl\";s:4:\"type\";s:11:\"Advertising\";}s:10:\"Smartly.io\";a:6:{s:12:\"channel_hash\";s:32:\"461ad54178f49a7c738633afabf21c12\";s:4:\"name\";s:10:\"Smartly.io\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Smartly.io\";s:4:\"type\";s:11:\"Advertising\";}s:9:\"TheNextAd\";a:6:{s:12:\"channel_hash\";s:32:\"313e53991d222faa60c8654d157adf91\";s:4:\"name\";s:9:\"TheNextAd\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"TheNextAd\";s:4:\"type\";s:11:\"Advertising\";}s:20:\"Daisycon huis & tuin\";a:6:{s:12:\"channel_hash\";s:32:\"ee514045c14c37216a57fc50f51ef89d\";s:4:\"name\";s:20:\"Daisycon huis & tuin\";s:6:\"fields\";s:18:\"daisyconhuisentuin\";s:8:\"taxonomy\";s:15:\"google_shopping\";s:10:\"utm_source\";s:8:\"Daisycon\";s:4:\"type\";s:11:\"Advertising\";}}s:11:\"New Zealand\";a:0:{}s:9:\"Nicaragua\";a:0:{}s:5:\"Niger\";a:0:{}s:7:\"Nigeria\";a:0:{}s:6:\"Norway\";a:1:{s:8:\"Prisjakt\";a:6:{s:12:\"channel_hash\";s:32:\"562c39b5a9bce897a6ccf60f8ac5f17f\";s:4:\"name\";s:11:\"Prisjakt.no\";s:6:\"fields\";s:15:\"google_shopping\";s:8:\"taxonomy\";s:15:\"google_shopping\";s:10:\"utm_source\";s:11:\"Prisjakt.no\";s:4:\"type\";s:26:\"Comparison shopping engine\";}}s:4:\"Oman\";a:0:{}s:8:\"Pakistan\";a:0:{}s:5:\"Palau\";a:0:{}s:6:\"Panama\";a:0:{}s:16:\"Papua New Guinea\";a:0:{}s:8:\"Paraguay\";a:0:{}s:4:\"Peru\";a:0:{}s:11:\"Philippines\";a:0:{}s:6:\"Poland\";a:6:{s:6:\"Adform\";a:6:{s:12:\"channel_hash\";s:32:\"ad2a7c40fe2b4c7b149f4842216ebd35\";s:4:\"name\";s:9:\"Adform.pl\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Adform.pl\";s:4:\"type\";s:11:\"Advertising\";}s:9:\"Cenowarka\";a:6:{s:12:\"channel_hash\";s:32:\"f99a2427e9fca097e8b082d17cea0ea2\";s:4:\"name\";s:12:\"Cenowarka.pl\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Cenowarka.pl\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:6:\"Miinto\";a:6:{s:12:\"channel_hash\";s:32:\"0a0431594fd6db28ce32304229ec6c03\";s:4:\"name\";s:9:\"Miinto.pl\";s:6:\"fields\";s:9:\"miinto_pl\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Miinto.pl\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:9:\"ShopAlike\";a:6:{s:12:\"channel_hash\";s:32:\"8025b4e98abe3a174a6be42c079e184a\";s:4:\"name\";s:12:\"ShopAlike.pl\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"ShopAlike.pl\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:9:\"ShopMania\";a:6:{s:12:\"channel_hash\";s:32:\"d175e3586053ac0807560de4a79cd4a8\";s:4:\"name\";s:12:\"ShopMania.pl\";s:6:\"fields\";s:12:\"shopmania_ro\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:11:\"ShoMania.pl\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:7:\"Skapiec\";a:6:{s:12:\"channel_hash\";s:32:\"e3beaee26297764b2a1d1520837750fa\";s:4:\"name\";s:10:\"Skapiec.pl\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Skapiec.pl\";s:4:\"type\";s:26:\"Comparison shopping engine\";}}s:8:\"Portugal\";a:2:{s:9:\"ShopMania\";a:6:{s:12:\"channel_hash\";s:32:\"b8efb0dc3ca9f99f004cbfe5c8b101ad\";s:4:\"name\";s:12:\"ShopMania.pt\";s:6:\"fields\";s:12:\"shopmania_ro\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:11:\"ShoMania.pt\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:11:\"Kuantokusta\";a:6:{s:12:\"channel_hash\";s:32:\"a1acc82aa0cdecd85c1a4e002492e912\";s:4:\"name\";s:14:\"Kuantokusta.pt\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:14:\"Kuantokusta.pt\";s:4:\"type\";s:26:\"Comparison shopping engine\";}}s:5:\"Qatar\";a:0:{}s:7:\"Reunion\";a:0:{}s:7:\"Romania\";a:3:{s:6:\"Okazzi\";a:6:{s:12:\"channel_hash\";s:32:\"21a027b99bad4b38aecc8adbfbc216c0\";s:4:\"name\";s:9:\"Okazzi.ro\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Okazzi.ro\";s:4:\"type\";s:11:\"Marketplace\";}s:9:\"ShopMania\";a:6:{s:12:\"channel_hash\";s:32:\"44c4964ed5543059adc680399bf058bc\";s:4:\"name\";s:12:\"ShopMania.ro\";s:6:\"fields\";s:12:\"shopmania_ro\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:11:\"ShoMania.ro\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:7:\"Compari\";a:6:{s:12:\"channel_hash\";s:32:\"79c8b98c255cea061a47abe5fcac7da4\";s:4:\"name\";s:10:\"Compari.ro\";s:6:\"fields\";s:10:\"compari_ro\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Compari.ro\";s:4:\"type\";s:26:\"Comparison shopping engine\";}}s:18:\"Russian Federation\";a:1:{s:6:\"Yandex\";a:6:{s:12:\"channel_hash\";s:32:\"62909b17dbeb21fb278c53dfaab9b5b4\";s:4:\"name\";s:6:\"Yandex\";s:6:\"fields\";s:6:\"yandex\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Yandex.com\";s:4:\"type\";s:11:\"Advertising\";}}s:6:\"Rwanda\";a:0:{}s:16:\"St Kitts & Nevis\";a:0:{}s:8:\"St Lucia\";a:0:{}s:27:\"St Vincent & the Grenadines\";a:0:{}s:5:\"Samoa\";a:0:{}s:10:\"San Marino\";a:0:{}s:19:\"Sao Tome & Principe\";a:0:{}s:12:\"Saudi Arabia\";a:0:{}s:7:\"Senegal\";a:0:{}s:6:\"Serbia\";a:1:{s:9:\"ShopMania\";a:6:{s:12:\"channel_hash\";s:32:\"4cace348da378bc016757f6d8c0adda7\";s:4:\"name\";s:12:\"ShopMania.rs\";s:6:\"fields\";s:12:\"shopmania_ro\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"ShopMania.rs\";s:4:\"type\";s:26:\"Comparison shopping engine\";}}s:10:\"Seychelles\";a:0:{}s:12:\"Sierra Leone\";a:0:{}s:9:\"Singapore\";a:0:{}s:8:\"Slovakia\";a:5:{s:9:\"ShopMania\";a:6:{s:12:\"channel_hash\";s:32:\"c8edd9bf39b7345dcccc31d6e1f36c6b\";s:4:\"name\";s:12:\"ShopMania.sk\";s:6:\"fields\";s:12:\"shopmania_ro\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"ShopMania.sk\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:5:\"Glami\";a:6:{s:12:\"channel_hash\";s:32:\"7a9baabfe9de72bb67c1c3e6a07ecf4f\";s:4:\"name\";s:8:\"Glami.sk\";s:6:\"fields\";s:5:\"glami\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:8:\"Glami.sk\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:10:\"Heureka.sk\";a:6:{s:12:\"channel_hash\";s:32:\"b40e8dfa2e24d54731805e54b2786af2\";s:4:\"name\";s:10:\"Heureka.sk\";s:6:\"fields\";s:7:\"heureka\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Heureka.sk\";s:4:\"type\";s:11:\"Marketplace\";}s:20:\"Mall.sk availability\";a:6:{s:12:\"channel_hash\";s:32:\"219a77b28af9cdf0e2971172e3b0cb79\";s:4:\"name\";s:20:\"Mall.sk availability\";s:6:\"fields\";s:17:\"mall_availability\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:20:\"Mall.sk availability\";s:4:\"type\";s:11:\"Marketplace\";}s:17:\"Mall.sk main feed\";a:6:{s:12:\"channel_hash\";s:32:\"37c5133028c11d1fabb1fd8c3cad24ce\";s:4:\"name\";s:7:\"Mall.sk\";s:6:\"fields\";s:4:\"mall\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:7:\"Mall.sk\";s:4:\"type\";s:11:\"Marketplace\";}}s:8:\"Slovenia\";a:0:{}s:15:\"Solomon Islands\";a:0:{}s:12:\"South Africa\";a:2:{s:9:\"ShopMania\";a:6:{s:12:\"channel_hash\";s:32:\"5984c2f6e246266d4b88f80d3ff9210a\";s:4:\"name\";s:15:\"ShopMania.co.za\";s:6:\"fields\";s:12:\"shopmania_ro\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:15:\"ShopMania.co.za\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:10:\"Pricecheck\";a:6:{s:12:\"channel_hash\";s:32:\"b4fe8c3f2868abb8bb89569c95f314d4\";s:4:\"name\";s:16:\"Pricecheck.co.za\";s:6:\"fields\";s:10:\"pricecheck\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:16:\"Pricecheck.co.za\";s:4:\"type\";s:26:\"Comparison shopping engine\";}}s:11:\"South Sudan\";a:0:{}s:5:\"Spain\";a:3:{s:6:\"Adform\";a:6:{s:12:\"channel_hash\";s:32:\"1f8fd79bdc962ff2bd707095cb9b998e\";s:4:\"name\";s:6:\"Adform\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:6:\"Adform\";s:4:\"type\";s:11:\"Advertising\";}s:8:\"Fruugoes\";a:6:{s:12:\"channel_hash\";s:32:\"19e52a8d2cb905e967e231022ffc8b68\";s:4:\"name\";s:9:\"Fruugo.es\";s:6:\"fields\";s:8:\"fruugoes\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Fruugo.es\";s:4:\"type\";s:11:\"Marketplace\";}s:6:\"Kelkoo\";a:6:{s:12:\"channel_hash\";s:32:\"169ef51d74066baa613278db8df0c094\";s:4:\"name\";s:9:\"Kelkoo.es\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Kelkoo.es\";s:4:\"type\";s:26:\"Comparison shopping engine\";}}s:9:\"Sri Lanka\";a:0:{}s:5:\"Sudan\";a:0:{}s:8:\"Suriname\";a:0:{}s:9:\"Swaziland\";a:0:{}s:6:\"Sweden\";a:6:{s:6:\"Adform\";a:6:{s:12:\"channel_hash\";s:32:\"1f8fd79bdc962ff2bd707095cb9b998e\";s:4:\"name\";s:6:\"Adform\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:6:\"Adform\";s:4:\"type\";s:11:\"Advertising\";}s:6:\"Kelkoo\";a:6:{s:12:\"channel_hash\";s:32:\"91fca891b978f27aaf7d5720f536c574\";s:4:\"name\";s:9:\"Kelkoo.se\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Kelkoo.se\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:6:\"Fyndiq\";a:6:{s:12:\"channel_hash\";s:32:\"f35224b877d2273ba263ac2840bf2bea\";s:4:\"name\";s:9:\"Fyndiq.se\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Fyndiq.se\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:11:\"Pricerunner\";a:6:{s:12:\"channel_hash\";s:32:\"26945ba0952a27dd18bc50e82af2129d\";s:4:\"name\";s:14:\"Pricerunner.se\";s:6:\"fields\";s:15:\"google_shopping\";s:8:\"taxonomy\";s:15:\"google_shopping\";s:10:\"utm_source\";s:14:\"Pricerunner.se\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:6:\"Miinto\";a:6:{s:12:\"channel_hash\";s:32:\"7f0b78dceb15aafbe3165d830b19212b\";s:4:\"name\";s:9:\"Miinto.se\";s:6:\"fields\";s:9:\"miinto_se\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Miinto.se\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:8:\"Prisjakt\";a:6:{s:12:\"channel_hash\";s:32:\"7eec67ad2626bb55796b9d2fe989f88a\";s:4:\"name\";s:11:\"Prisjakt.se\";s:6:\"fields\";s:15:\"google_shopping\";s:8:\"taxonomy\";s:15:\"google_shopping\";s:10:\"utm_source\";s:11:\"Prisjakt.se\";s:4:\"type\";s:26:\"Comparison shopping engine\";}}s:11:\"Switzerland\";a:2:{s:8:\"Kauftipp\";a:6:{s:12:\"channel_hash\";s:32:\"426be23b8b34568dec4c165980bcab1c\";s:4:\"name\";s:11:\"Kauftipp.ch\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:11:\"Kauftipp.ch\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:7:\"Ricardo\";a:6:{s:12:\"channel_hash\";s:32:\"8ee69ba8d4af2a3784c4a89b6ccc008b\";s:4:\"name\";s:10:\"Ricardo.ch\";s:6:\"fields\";s:7:\"ricardo\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Ricardo.ch\";s:4:\"type\";s:11:\"Marketplace\";}}s:5:\"Syria\";a:0:{}s:6:\"Taiwan\";a:0:{}s:10:\"Tajikistan\";a:0:{}s:8:\"Tanzania\";a:0:{}s:8:\"Thailand\";a:0:{}s:4:\"Togo\";a:0:{}s:5:\"Tonga\";a:0:{}s:17:\"Trinidad & Tobago\";a:0:{}s:7:\"Tunesia\";a:0:{}s:6:\"Turkey\";a:0:{}s:12:\"Turkmenistan\";a:0:{}s:6:\"Tuvalu\";a:0:{}s:6:\"Uganda\";a:0:{}s:7:\"Ukraine\";a:1:{s:6:\"Yandex\";a:6:{s:12:\"channel_hash\";s:32:\"62909b17dbeb21fb278c53dfaab9b5b4\";s:4:\"name\";s:6:\"Yandex\";s:6:\"fields\";s:6:\"yandex\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Yandex.com\";s:4:\"type\";s:11:\"Advertising\";}}s:20:\"United Arab Emirates\";a:0:{}s:14:\"United Kingdom\";a:24:{s:6:\"Adform\";a:6:{s:12:\"channel_hash\";s:32:\"15602bd34e4d3e8a319b24328f5e1629\";s:4:\"name\";s:10:\"Adform.com\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Adform.com\";s:4:\"type\";s:11:\"Advertising\";}s:6:\"AdRoll\";a:6:{s:12:\"channel_hash\";s:32:\"9c53b1f00d16db52f75c54a886cb256d\";s:4:\"name\";s:10:\"AdRoll.com\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"AdRoll.com\";s:4:\"type\";s:11:\"Advertising\";}s:9:\"Connexity\";a:6:{s:12:\"channel_hash\";s:32:\"e8ce03e3f24a932e7ac633d37fef1654\";s:4:\"name\";s:13:\"Connexity.com\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:13:\"Connexity.com\";s:4:\"type\";s:11:\"Advertising\";}s:10:\"Smartly.io\";a:6:{s:12:\"channel_hash\";s:32:\"461ad54178f49a7c738633afabf21c12\";s:4:\"name\";s:10:\"Smartly.io\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Smartly.io\";s:4:\"type\";s:11:\"Advertising\";}s:9:\"TheNextAd\";a:6:{s:12:\"channel_hash\";s:32:\"556cd1fe29e03ee70606df062aa10bb1\";s:4:\"name\";s:9:\"TheNextAd\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:13:\"TheNextAd.com\";s:4:\"type\";s:11:\"Advertising\";}s:8:\"Fruugouk\";a:6:{s:12:\"channel_hash\";s:32:\"7488cf7f3b5a112308b5d2f6851dd9ad\";s:4:\"name\";s:12:\"Fruugo.co.uk\";s:6:\"fields\";s:8:\"fruugouk\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Fruugo.co.uk\";s:4:\"type\";s:11:\"Marketplace\";}s:8:\"ManoMano\";a:6:{s:12:\"channel_hash\";s:32:\"d2a2f51263047e14c773b25b44c66cc8\";s:4:\"name\";s:14:\"ManoMano.co.uk\";s:6:\"fields\";s:8:\"manomano\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:14:\"ManoMano.co.uk\";s:4:\"type\";s:11:\"Marketplace\";}s:7:\"Choozen\";a:6:{s:12:\"channel_hash\";s:32:\"f7bef404d973147066d95b8c809f5bc7\";s:4:\"name\";s:13:\"Choozen.co.uk\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:13:\"Choozen.co.uk\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:4:\"Ciao\";a:6:{s:12:\"channel_hash\";s:32:\"f0f5e767cd40f159986b57fc4d7a7a64\";s:4:\"name\";s:10:\"Ciao.co.uk\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Ciao.co.uk\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:6:\"Dooyoo\";a:6:{s:12:\"channel_hash\";s:32:\"0a1dca5316beebc521923df1dafde621\";s:4:\"name\";s:12:\"Dooyoo.co.uk\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Dooyoo.co.uk\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:6:\"Idealo\";a:6:{s:12:\"channel_hash\";s:32:\"ba5724e97b78754cb4606754ff21ed54\";s:4:\"name\";s:12:\"Idealo.co.uk\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Idealo.co.uk\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:6:\"Kelkoo\";a:6:{s:12:\"channel_hash\";s:32:\"bc5b6aa38b73d892e63ecd6f0bf01dd1\";s:4:\"name\";s:12:\"Kelkoo.co.uk\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Kelkoo.co.uk\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:12:\"Pricegrabber\";a:6:{s:12:\"channel_hash\";s:32:\"19b0196034fbc680856cd8f1e2636be5\";s:4:\"name\";s:18:\"Pricegrabber.co.uk\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:18:\"Pricegrabber.co.uk\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:13:\"Priceminister\";a:6:{s:12:\"channel_hash\";s:32:\"409626c96e7581f6e4021c2a7b1ed5d6\";s:4:\"name\";s:17:\"Priceminister.com\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:17:\"Priceminister.com\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:11:\"Pricerunner\";a:6:{s:12:\"channel_hash\";s:32:\"1d289e47be23e15e62dc8c32b21f35bb\";s:4:\"name\";s:17:\"Pricerunner.co.uk\";s:6:\"fields\";s:15:\"google_shopping\";s:8:\"taxonomy\";s:15:\"google_shopping\";s:10:\"utm_source\";s:17:\"Pricerunner.co.uk\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:8:\"Pricespy\";a:6:{s:12:\"channel_hash\";s:32:\"333dd17eef54033cfbfe71b4fad7561b\";s:4:\"name\";s:14:\"Pricespy.co.uk\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:14:\"Pricespy.co.uk\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:7:\"Rakuten\";a:6:{s:12:\"channel_hash\";s:32:\"eb015c280c201c7fd4c82814f494081c\";s:4:\"name\";s:11:\"Rakuten.com\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:11:\"Rakuten.com\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:9:\"ShopMania\";a:6:{s:12:\"channel_hash\";s:32:\"04c3d36f8931862316f0b7566d618ad2\";s:4:\"name\";s:15:\"ShapMania.co.uk\";s:6:\"fields\";s:12:\"shopmania_ro\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:15:\"ShopMania.co.uk\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:12:\"Shopping.com\";a:6:{s:12:\"channel_hash\";s:32:\"6e3bbd8e7e9ca791bf13f28fb701e038\";s:4:\"name\";s:12:\"Shopping.com\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Shopping.com\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:9:\"Shopzilla\";a:6:{s:12:\"channel_hash\";s:32:\"949dd6b0b76423daad4135f4d25f41bd\";s:4:\"name\";s:15:\"Shopzilla.co.uk\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:15:\"Shopzilla.co.uk\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:9:\"Skinflint\";a:6:{s:12:\"channel_hash\";s:32:\"d103e9a8fbd63eaad89195540b8a49ce\";s:4:\"name\";s:15:\"Skinflint.co.uk\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:15:\"Skinflint.co.uk\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:8:\"Stylight\";a:6:{s:12:\"channel_hash\";s:32:\"a9ae78bf41067eefedfcfdc2c2a31cce\";s:4:\"name\";s:14:\"Stylight.co.uk\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:14:\"Stylight.co.uk\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:6:\"Twenga\";a:6:{s:12:\"channel_hash\";s:32:\"68d4e9f5d94b048f613cd975f59e6429\";s:4:\"name\";s:12:\"Twenga.co.uk\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Twenga.co.uk\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:8:\"Wish.com\";a:6:{s:12:\"channel_hash\";s:32:\"70ec5f93b0f12e6f76d5f97657f23cd4\";s:4:\"name\";s:8:\"Wish.com\";s:6:\"fields\";s:7:\"wishcom\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:8:\"Wish.com\";s:4:\"type\";s:11:\"Marketplace\";}}s:13:\"United States\";a:16:{s:6:\"Adform\";a:6:{s:12:\"channel_hash\";s:32:\"15602bd34e4d3e8a319b24328f5e1629\";s:4:\"name\";s:10:\"Adform.com\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Adform.com\";s:4:\"type\";s:11:\"Advertising\";}s:6:\"AdRoll\";a:6:{s:12:\"channel_hash\";s:32:\"9c53b1f00d16db52f75c54a886cb256d\";s:4:\"name\";s:10:\"Adroll.com\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Adroll.com\";s:4:\"type\";s:11:\"Advertising\";}s:9:\"Connexity\";a:6:{s:12:\"channel_hash\";s:32:\"e8ce03e3f24a932e7ac633d37fef1654\";s:4:\"name\";s:13:\"Connexity.com\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:13:\"Connexity.com\";s:4:\"type\";s:11:\"Advertising\";}s:10:\"ShareASale\";a:6:{s:12:\"channel_hash\";s:32:\"d9f4300c517acf7fcd76a4008dc36d05\";s:4:\"name\";s:10:\"ShareASale\";s:6:\"fields\";s:10:\"shareasale\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"ShareASale\";s:4:\"type\";s:11:\"Advertising\";}s:10:\"Smartly.io\";a:6:{s:12:\"channel_hash\";s:32:\"461ad54178f49a7c738633afabf21c12\";s:4:\"name\";s:10:\"Smartly.io\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Smartly.io\";s:4:\"type\";s:11:\"Advertising\";}s:9:\"TheNextAd\";a:6:{s:12:\"channel_hash\";s:32:\"313e53991d222faa60c8654d157adf91\";s:4:\"name\";s:9:\"TheNextAd\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"TheNextAd\";s:4:\"type\";s:11:\"Advertising\";}s:6:\"Fruugo\";a:6:{s:12:\"channel_hash\";s:32:\"bfd48c235251bf2078a514a7520d6e10\";s:4:\"name\";s:9:\"Fruugo.us\";s:6:\"fields\";s:8:\"fruugous\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:9:\"Fruugo.us\";s:4:\"type\";s:11:\"Marketplace\";}s:8:\"Polyvore\";a:6:{s:12:\"channel_hash\";s:32:\"88cece5a7ed3b6ce7e0f5679d1e2df89\";s:4:\"name\";s:12:\"Polyvore.com\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Polyvore.com\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:12:\"Pricegrabber\";a:6:{s:12:\"channel_hash\";s:32:\"90a65c65552866697ff71feb202bdf35\";s:4:\"name\";s:16:\"Pricegrabber.com\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:16:\"Pricegrabber.com\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:9:\"ShopMania\";a:6:{s:12:\"channel_hash\";s:32:\"2b3f8be1c51261db7cec1f6ce324b720\";s:4:\"name\";s:13:\"ShopMania.com\";s:6:\"fields\";s:12:\"shopmania_ro\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:13:\"ShopMania.com\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:8:\"Shopping\";a:6:{s:12:\"channel_hash\";s:32:\"6e3bbd8e7e9ca791bf13f28fb701e038\";s:4:\"name\";s:12:\"Shopping.com\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Shopping.com\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:9:\"Shopzilla\";a:6:{s:12:\"channel_hash\";s:32:\"3de19c070f475cb55abe83e65fe97ee6\";s:4:\"name\";s:13:\"Shopzilla.com\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:13:\"Shopzilla.com\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:8:\"Stylight\";a:6:{s:12:\"channel_hash\";s:32:\"f8ee4c4dd073862740839b37b5eecbd3\";s:4:\"name\";s:12:\"Stylight.com\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:12:\"Stylight.com\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:6:\"Twenga\";a:6:{s:12:\"channel_hash\";s:32:\"db8273f5de4d66493cb0d1b804b88564\";s:4:\"name\";s:10:\"Twenga.com\";s:6:\"fields\";s:10:\"customfeed\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Twenga.com\";s:4:\"type\";s:26:\"Comparison shopping engine\";}s:6:\"Yandex\";a:6:{s:12:\"channel_hash\";s:32:\"62909b17dbeb21fb278c53dfaab9b5b4\";s:4:\"name\";s:6:\"Yandex\";s:6:\"fields\";s:6:\"yandex\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:10:\"Yandex.com\";s:4:\"type\";s:11:\"Advertising\";}s:8:\"Wish.com\";a:6:{s:12:\"channel_hash\";s:32:\"70ec5f93b0f12e6f76d5f97657f23cd4\";s:4:\"name\";s:8:\"Wish.com\";s:6:\"fields\";s:7:\"wishcom\";s:8:\"taxonomy\";s:4:\"none\";s:10:\"utm_source\";s:8:\"Wish.com\";s:4:\"type\";s:11:\"Marketplace\";}}s:7:\"Uraguay\";a:0:{}s:10:\"Uzbekistan\";a:0:{}s:7:\"Vanuatu\";a:0:{}s:12:\"Vatican City\";a:0:{}s:9:\"Venezuela\";a:0:{}s:7:\"Vietnam\";a:0:{}s:5:\"Yemen\";a:0:{}s:6:\"Zambia\";a:0:{}s:8:\"Zimbabwe\";a:0:{}}','no'),(59474,'woosea_extra_attributes','a:4:{s:29:\"custom_attributes__woosea_mpn\";s:10:\"woosea mpn\";s:30:\"custom_attributes__woosea_gtin\";s:11:\"woosea gtin\";s:29:\"custom_attributes__woosea_ean\";s:10:\"woosea ean\";s:31:\"custom_attributes__woosea_brand\";s:12:\"woosea brand\";}','yes'),(59475,'structured_data_fix','no','yes'),(59476,'woosea_first_activation','1678667432','yes'),(59477,'woosea_count_activation','1','yes'),(59491,'cron_projects','a:1:{i:0;a:37:{s:12:\"channel_hash\";s:32:\"d4cb75caae5a73ac6b01171816b33bfb\";s:4:\"name\";s:15:\"Google Shopping\";s:6:\"fields\";s:15:\"google_shopping\";s:8:\"taxonomy\";s:15:\"google_shopping\";s:10:\"utm_source\";s:15:\"Google Shopping\";s:4:\"type\";s:11:\"Advertising\";s:11:\"projectname\";s:10:\"Flux TS US\";s:9:\"countries\";s:13:\"United States\";s:18:\"product_variations\";s:2:\"on\";s:10:\"fileformat\";s:3:\"xml\";s:4:\"cron\";s:5:\"daily\";s:4:\"step\";s:3:\"100\";s:12:\"project_hash\";s:32:\"2TiKGw3JRcNw7r4ddfi8JVpCTsAVzMqU\";s:8:\"filename\";s:32:\"2TiKGw3JRcNw7r4ddfi8JVpCTsAVzMqU\";s:13:\"external_file\";s:114:\"https://www.nl.ecom-expansion.com/wp-content/uploads/woo-product-feed-pro/xml/2TiKGw3JRcNw7r4ddfi8JVpCTsAVzMqU.xml\";s:9:\"query_log\";s:88:\"https://www.nl.ecom-expansion.com/wp-content/uploads/woo-product-feed-pro/logs/query.log\";s:16:\"query_output_log\";s:95:\"https://www.nl.ecom-expansion.com/wp-content/uploads/woo-product-feed-pro/logs/query_output.log\";s:19:\"nonce_field_mapping\";s:10:\"86c926c0d4\";s:10:\"attributes\";a:15:{i:0;a:5:{s:8:\"rowCount\";s:1:\"0\";s:9:\"attribute\";s:4:\"g:id\";s:6:\"prefix\";s:0:\"\";s:7:\"mapfrom\";s:2:\"id\";s:6:\"suffix\";s:0:\"\";}i:1;a:5:{s:8:\"rowCount\";s:1:\"1\";s:9:\"attribute\";s:7:\"g:title\";s:6:\"prefix\";s:0:\"\";s:7:\"mapfrom\";s:5:\"title\";s:6:\"suffix\";s:0:\"\";}i:2;a:5:{s:8:\"rowCount\";s:1:\"2\";s:9:\"attribute\";s:13:\"g:description\";s:6:\"prefix\";s:0:\"\";s:7:\"mapfrom\";s:11:\"description\";s:6:\"suffix\";s:0:\"\";}i:3;a:5:{s:8:\"rowCount\";s:1:\"3\";s:9:\"attribute\";s:6:\"g:link\";s:6:\"prefix\";s:0:\"\";s:7:\"mapfrom\";s:4:\"link\";s:6:\"suffix\";s:0:\"\";}i:4;a:5:{s:8:\"rowCount\";s:1:\"4\";s:9:\"attribute\";s:12:\"g:image_link\";s:6:\"prefix\";s:0:\"\";s:7:\"mapfrom\";s:5:\"image\";s:6:\"suffix\";s:0:\"\";}i:5;a:5:{s:8:\"rowCount\";s:1:\"5\";s:9:\"attribute\";s:14:\"g:availability\";s:6:\"prefix\";s:0:\"\";s:7:\"mapfrom\";s:12:\"availability\";s:6:\"suffix\";s:0:\"\";}i:6;a:5:{s:8:\"rowCount\";s:1:\"6\";s:9:\"attribute\";s:7:\"g:price\";s:6:\"prefix\";s:3:\"USD\";s:7:\"mapfrom\";s:5:\"price\";s:6:\"suffix\";s:0:\"\";}i:7;a:5:{s:8:\"rowCount\";s:1:\"7\";s:9:\"attribute\";s:25:\"g:google_product_category\";s:6:\"prefix\";s:0:\"\";s:7:\"mapfrom\";s:10:\"categories\";s:6:\"suffix\";s:0:\"\";}i:8;a:5:{s:8:\"rowCount\";s:1:\"8\";s:9:\"attribute\";s:14:\"g:product_type\";s:6:\"prefix\";s:0:\"\";s:7:\"mapfrom\";s:14:\"raw_categories\";s:6:\"suffix\";s:0:\"\";}i:9;a:5:{s:8:\"rowCount\";s:1:\"9\";s:9:\"attribute\";s:7:\"g:brand\";s:6:\"prefix\";s:0:\"\";s:7:\"mapfrom\";s:0:\"\";s:6:\"suffix\";s:0:\"\";}i:10;a:5:{s:8:\"rowCount\";s:2:\"10\";s:9:\"attribute\";s:6:\"g:gtin\";s:6:\"prefix\";s:0:\"\";s:7:\"mapfrom\";s:3:\"sku\";s:6:\"suffix\";s:0:\"\";}i:11;a:5:{s:8:\"rowCount\";s:2:\"11\";s:9:\"attribute\";s:5:\"g:mpn\";s:6:\"prefix\";s:0:\"\";s:7:\"mapfrom\";s:0:\"\";s:6:\"suffix\";s:0:\"\";}i:12;a:6:{s:8:\"rowCount\";s:2:\"12\";s:9:\"attribute\";s:19:\"g:identifier_exists\";s:6:\"prefix\";s:0:\"\";s:7:\"mapfrom\";s:5:\"FALSE\";s:12:\"static_value\";s:4:\"true\";s:6:\"suffix\";s:0:\"\";}i:13;a:5:{s:8:\"rowCount\";s:2:\"13\";s:9:\"attribute\";s:11:\"g:condition\";s:6:\"prefix\";s:0:\"\";s:7:\"mapfrom\";s:9:\"condition\";s:6:\"suffix\";s:0:\"\";}i:14;a:5:{s:8:\"rowCount\";s:2:\"14\";s:9:\"attribute\";s:15:\"g:item_group_id\";s:6:\"prefix\";s:0:\"\";s:7:\"mapfrom\";s:13:\"item_group_id\";s:6:\"suffix\";s:0:\"\";}}s:6:\"addrow\";s:1:\"1\";s:22:\"nonce_category_mapping\";s:10:\"a3f21e1c84\";s:21:\"nonce_filters_mapping\";s:10:\"a3f21e1c84\";s:20:\"nonce_google_mapping\";s:10:\"a3f21e1c84\";s:6:\"utm_on\";s:2:\"on\";s:10:\"utm_medium\";s:3:\"cpc\";s:12:\"utm_campaign\";s:10:\"Flux TS US\";s:8:\"utm_term\";s:2:\"id\";s:11:\"utm_content\";s:0:\"\";s:29:\"total_product_orders_lookback\";s:0:\"\";s:11:\"woosea_page\";s:9:\"analytics\";s:6:\"active\";b:1;s:12:\"last_updated\";s:17:\"16 Mar 2023 08:56\";s:7:\"running\";s:5:\"ready\";s:11:\"nr_products\";i:3420;s:21:\"nr_products_processed\";i:0;s:14:\"project_update\";s:3:\"yes\";s:16:\"history_products\";a:3:{s:17:\"13 Mar 2023 11:55\";i:603;s:17:\"15 Mar 2023 08:30\";i:406;s:17:\"16 Mar 2023 09:40\";i:603;}}}','no'),(66188,'mwp_service_key','a83a4bff-12e9-4de5-b305-bc5dbebe139e','yes'),(66191,'mwp_openssl_parameters','a:2:{s:4:\"time\";i:1700751052;s:7:\"working\";b:1;}','yes'),(66192,'mwp_incremental_update_active','','yes'),(66199,'worker_migration_version','2','yes'),(66204,'mwp_public_keys_refresh_time','1700410197','yes'),(66205,'mwp_public_keys','a:14:{i:0;a:6:{s:2:\"id\";s:15:\"wpps_1696597502\";s:7:\"service\";s:4:\"wpps\";s:9:\"validFrom\";s:19:\"2023-10-21 13:05:01\";s:7:\"validTo\";s:19:\"2023-11-22 13:05:01\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2sGa2r2LuLLlHbdgQygw\nNG1vIa3C84L6uVevcwUaZvsvUAmGkFn4mvs2cYowawJZoepMcJNnh52Yt7mjN159\nRzd2UIKC0yoAA4qhVaw9oi2W6guntOPOm1PHFymHP52AQAwwpXmxtHN4dndZ8Bie\nEsWnz05qZlXMmdC03oLm31+gjC1MAA9Ke17c/ld+yvtDzbyWJuC5UlmUUH9uH3q6\natHqyr2GKPFgV/VTjzy4j4S4WLBovMh9U5S0xGOOcpZrrCb3PXct8rvhqH+ZA5D5\nT6WWkeoqYO7O/ID0BRJcFIpZkxBzZZxbP5+2XMJ9tUXuguf6YMU/0NPyUo5StavE\ngwIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}i:1;a:6:{s:2:\"id\";s:15:\"mwp1_1696687502\";s:7:\"service\";s:4:\"mwp1\";s:9:\"validFrom\";s:19:\"2023-10-22 14:05:01\";s:7:\"validTo\";s:19:\"2023-11-23 14:05:01\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxHMxbcxKI4+jS3ihZf5r\nliLNgsQjH8aJwkj2qfn1YzGs8K0bbe5qUP9wIcNZKuum5zqPl8bDz3AGwdxWjGPX\n+Z7/3XTDnrg599eJhzDbcczaRW11sXQg3TS4zAkl0xBc9KMNOc9RNzfO11AZ1EbA\n9ajjkeK/RAy1X43kpJKL8EKwsYyjSJFyr4cbplZmXtmFqoIH6NRRjigyfCWziUqm\nzOdSmmA+ibUsMmLwgg1FmThX5G8e+Hx1TwzlXtz12D1PCMC3MeXFrHojSKhiA8Mz\nOKssavFrfdVT0BtUwNgGYMbuhwLDyC23J9JFO6wPgfHejrZTIAROnuev80btRJSK\nrQIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}i:2;a:6:{s:2:\"id\";s:20:\"migration_1696943102\";s:7:\"service\";s:9:\"migration\";s:9:\"validFrom\";s:19:\"2023-10-25 13:05:02\";s:7:\"validTo\";s:19:\"2023-11-26 13:05:02\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2IBstIr0O2yd4HXQ2kLS\n9ONW5xgSPFlGGusqjOSATN1WcI3YmYzo+qp4aJF3imyxKP6n1SnlwEGuqfrYhKtA\nECAHitrBVqgqSnGwA3RrbnL74Km3e4sqT/FxDqdzIKwsY0Emxezgbj/PszkRMWdY\nT83k2f8pwqnmKP3USdbnYdEGeE12dquYlNkeEqcyaTcb37K2IJ1LxDb+sxhUD3wl\nJzfqnL4T/LaT6AU6pwxYgAVkn4ZiFuampZDMmQ3A98BvByrjOe6q1DcoDrKtIkH+\nrzetCygUnbJSuxDqsXGp8dL6ERdDtegejwgxEHnR+1+sL+wZWUemTtNOAXpvD9tj\n3QIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}i:3;a:6:{s:2:\"id\";s:19:\"managewp_1696989902\";s:7:\"service\";s:8:\"managewp\";s:9:\"validFrom\";s:19:\"2023-10-26 01:26:15\";s:7:\"validTo\";s:19:\"2023-11-27 01:26:15\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4GKXDop+FOWmA72l0FgD\nICWOCrXKpE3vFedXvQojgIALHTq5tIc3HhyhitTvE8xueE/H5kxCs+aG9DuakiGo\ncs1bGjd86d1ham+YwsNBCZcUn3cnru9shsS4L2hq7jaap7WfWIxWHppW8HOG10WT\nm66TJ6HUCg0LuLvux/M3NO1lWvETqD16xzVUPoxkoxu+OqqGpC7KNZO9LEw6f9Oq\n1HD/7ZFzCZLmUvVUkC9RqWcgE5XWRiGR//VAt0ZCCt4NUV5FtF3gnUG5xKdS0KGq\nV7HgwsgDulv6GspsRVyIfLSJKRLFUXXB0d+9ruMJIDuDDpJ1FeTAbzMq6jcpwmuz\nyQIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:0;}i:4;a:6:{s:2:\"id\";s:23:\"managewp_dev_1696989902\";s:7:\"service\";s:12:\"managewp_dev\";s:9:\"validFrom\";s:19:\"2023-10-26 01:26:15\";s:7:\"validTo\";s:19:\"2023-11-27 01:26:15\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0AnIEni3WLoMX7nWKgh1\nYIVjYKR7GWdX+bdmKPq/JP/w7uSB3EU+C1nmH1+eySmdnEWQ7Z1ft5aVfWzglUTK\nnIr3GLhDzsDgPrYIdTHR7DXDNwEo/RY1a+pM+UQLs1UdgNupFrpsBb+xEFnp3zjD\nphpeh5yMPOsnwE6/IaMngpMhluHD+CLoKuZfW6MkHBbKIzzqeA99cSTjkv1HSXCJ\nqkNhxhAwoze0uNO2rJh87XTxU8eHnG3LvLEbDRND8iTebPBuRGp+mGveUeC/B5Q/\nh/VsoEnOxedYtYRbSzJ1d93UnLL/Mn8Qq2AJdMJyYtLV1viIMqjLVUQyalULH65W\nvQIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:0;}i:5;a:6:{s:2:\"id\";s:16:\"mwp20_1696989902\";s:7:\"service\";s:5:\"mwp20\";s:9:\"validFrom\";s:19:\"2023-10-26 01:26:15\";s:7:\"validTo\";s:19:\"2023-11-27 01:26:15\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAna/J9ewyDsNLkXINsmLN\nucuapA3G4kit+HyL5gkblb2hYVIiFVlGAlpH5hEX9hp2dfEgmVzMStEIHUEjXIh/\ntESDP+S056WqLa9uL88lPBd+XXv8gAMzbYoXuAcLqsteYyfq8aKtBAnxOE4IiPI6\ni2Zjw3tVZxYs0DE/Ql3DOItEzEF7E94Tg2JcU3gdtbfGS4zfGZyG6dJbtypQ9Qgp\nQ6bPTQRepgAFvnVB6wcMGURe+wZ4q/x6HvMJoLoNuSUzzN+lrw9zc8Wf5DAv0REf\ntOkatdWeKhW468LtNP487qX4MHd8Kz4tjjf1txfc9qCeYRGtNSHUcwpCb4DvFG9d\n/wIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}i:6;a:6:{s:2:\"id\";s:25:\"cookie_service_1697982105\";s:7:\"service\";s:14:\"cookie_service\";s:9:\"validFrom\";s:19:\"2023-11-04 16:27:25\";s:7:\"validTo\";s:19:\"2023-12-06 16:27:25\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtf09Ufc/D+XaGA67M9kn\nYk6L86RUmnhh7cXzraJjoaGDT44GTQhOwzqG2FY7J6slRymHlyL1xQ8++QN1ncXY\nb9CEX629wD/GMPInSCczOj35E0BjZotk95Dv0ylAf9Q/8TkHkPYcm6NbVn3Kl7P/\nT9ID8cBC/sKhHEriYplocV5yHcHV2fWsUOgHgCrpfCmf6aL9caXGz0tOMH8DhQJd\n1s4Xfbg0EAoNkns6LseNwoQZakQmLF5A5YbliZGlLr9RVpF75ou+JZfU5gC8f/+f\n4QyFL4wke1a3oyKd2E6d1OVN2EqpKU4WxrxDWnyITeuyq0k0Hl74M1HrdnMMAoOx\nlQIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}i:7;a:6:{s:2:\"id\";s:27:\"wpps_new_account_1698937501\";s:7:\"service\";s:16:\"wpps_new_account\";s:9:\"validFrom\";s:19:\"2023-11-17 14:14:30\";s:7:\"validTo\";s:19:\"2023-12-19 14:14:30\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAux3SeOt6EDs4UUC8B7Rb\nthifEMrMt+3DDnW3NMKv/hfmBXrZQGvH6VPVRsGlphV4Ne1Y0NhLuUIvisSIIX9W\nFkHBi4ku2GAMKVrR3uKzmSxGOn7o7jLbh1VvFEUa94XTkb4X1mA49M1vu1oyJtSk\nsh5OL/zk2lqrZPcNGLzAz3ZECDrQo4shdcosMLEDIOjdlIQ1NaJekdgDwKSpoG2y\npAJEFeHQY/xaOrl+jvIxYKSAmm4NyB4ZAGfYRvbjN+7wL5Neb5IHRpul0Q/kIQNS\nlgcLS5OP2rerMu9OPkSs6LZ88xLGjTtKYTZdTkzDiHmd79eyT54CMLQxAlmX61Mh\nzwIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}i:8;a:6:{s:2:\"id\";s:15:\"wpps_1699189502\";s:7:\"service\";s:4:\"wpps\";s:9:\"validFrom\";s:19:\"2023-11-20 13:05:01\";s:7:\"validTo\";s:19:\"2023-12-22 13:05:01\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAu8T52P1PlElpxOrCXYGA\n/N1kGygFHx3cQliHahRgnqMkxt/rggZnvrzAmUv76ycfV3twEcSk2FZ/zUdZZm8u\nHzyFp6E2HK98ZDMuFQ6Fsn3Vlg/wljWkE/RPJY3Lv8Zg/wypx5m1O2H0MaOMTfXG\nPOs1omZE23RXeyBc7CiAkLa3khRY21QvTeIo/NMbFHuP5q9v9+tRQq3GfBN/lnK6\n9H1RmAZ0Rw1NUlT704lNa/6PCacRH/DuaJU9Dh323h/0jemf/QdpAGIteeuZC31P\nxZCtxjRglWxzi+in2WIWUl0jIsUrJ2SqXDXNPKnlUDBoYENs2rVIDjZF+f0DztH1\npQIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}i:9;a:6:{s:2:\"id\";s:15:\"mwp1_1699279501\";s:7:\"service\";s:4:\"mwp1\";s:9:\"validFrom\";s:19:\"2023-11-21 14:05:01\";s:7:\"validTo\";s:19:\"2023-12-23 14:05:01\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAv7t05lQ59kgOy0DYC8aH\nTNPtFcbhW/G5JEJ9yS6NQ1uiYr3Ad96nmlzV+dBG4kJsKbEO+6YVGu4gmadr8Wq6\n4uKW9qRa9Mg0vYCIO0CS3VxSR/Pf72BznmOGdsxsXv6edn7HVOe007riDicY7rVD\n0So1ZXDdMKX7aqXrJUmXEURXgvxL6mQqt7anqFkIS02RAiCRrWQN0mDqnJJg/vtc\nSnzSEm405WEDpc/taKZwvzvlZHZ2N4NBVypOLzu+VKsmOrzk5JFML14XfqfsAppK\ndjXZU/2hmJNpcvME6dOQAKDq4qf/weI5O5pQFZxbscFcVdbbms0J8GfCONs0o1mV\nbwIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}i:10;a:6:{s:2:\"id\";s:20:\"migration_1699535102\";s:7:\"service\";s:9:\"migration\";s:9:\"validFrom\";s:19:\"2023-11-24 13:05:02\";s:7:\"validTo\";s:19:\"2023-12-26 13:05:02\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAq2t4SE1DEn+tUJz3zxqc\ncub3ZqPi/tFp68lzog31+sY6kN+PolK6hryBEPo+K1btTsgpzv7G1U+EaxxNaSBw\nma6TJk91hwJns1fJ5OnNo5beiHAyc5hyygTwK0cOBc0u1z2v/1D0nUQ8B1MeCkqn\nFbyQ7i2j3TcXo9K994MX43f9r2a55tpwPeV34uwscz/+9E3y9/Z1lH7LloVi4Edl\nm4l+s9OCZIeTAtPG71XhkcVpsjeA+OHa2h16wfC0SC2yGr10cXn4aTi8QHpCMlGb\nIxz2qSVYvtjNL3MlPxNBWSXVrT5zY4Vl6ontwzbHKc4i/1ahYu/IK6QjxqFa2iIe\nRwIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}i:11;a:6:{s:2:\"id\";s:19:\"managewp_1699581902\";s:7:\"service\";s:8:\"managewp\";s:9:\"validFrom\";s:19:\"2023-11-25 01:26:15\";s:7:\"validTo\";s:19:\"2023-12-27 01:26:15\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArZ4A5Vs56xXDSXOeNwjl\neg24EUY3Oesv4VSV3OgCQ6626D9Hz5KYP1uzNsbbLoTFrkLP5WE0N8BcHutPHu24\n25uwZ2XXrbTd7Bo1jLAxFTep1SxzyP0GnkwCwGaenOe51Vf7kmTUeSQjoBi8N7c0\nhYs3+/I+2QKHeqaYLAJT4NljroIijZMSeIQo/acZYtYGm1KWKB4DdhrlTzYqIDiN\n4kywFtQ2X9yZ/VkB1vdJ/BkGaW+/OkOXW2MAAP8FdDY6bYGSdYau7ezvEi8pg9Jt\n1nnfKYcuH/iKBJ4gthmFnsEVfbxbCunWB5Fk5jk9HLpuwAyPK238YniOdFOirqJm\nswIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:0;}i:12;a:6:{s:2:\"id\";s:23:\"managewp_dev_1699581903\";s:7:\"service\";s:12:\"managewp_dev\";s:9:\"validFrom\";s:19:\"2023-11-25 01:26:15\";s:7:\"validTo\";s:19:\"2023-12-27 01:26:15\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwwyn3DLlwPfCMSUtKpTi\nstgHRWCyuSvtMXHn2VzI7q3tTkxwtYKp+sn6C+SvpF4PpdBGS9BW2XYnWTfulGx3\nGEd9xXtzvp8e2d/RX5n/ORrU6CWNKJLwQG3QoE4sm6kp7CDnb12At629yqSjy4/2\ny5gPWgKKYR4E9A3uW5TV5f9ACoPQnPAwuV3T18jV+g2/sMjCgt6OxEd5i4dUtv4e\nExFp1i4oqEQCia6HpRsh0I9BeKmEN5ry6LSAJoZTr8TuCI3iDFYLDM94F8EjLJQa\n8rgu9+/DR7qxAUbCMQINjPa9Ra/lFmez+oq1B75OrxeC2F2GEgT985nF6Pf3E8by\nYwIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:0;}i:13;a:6:{s:2:\"id\";s:16:\"mwp20_1699581903\";s:7:\"service\";s:5:\"mwp20\";s:9:\"validFrom\";s:19:\"2023-11-25 01:26:15\";s:7:\"validTo\";s:19:\"2023-12-27 01:26:15\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA03g2GqeDKmkuG7seg+8a\n6Agp9JQAgihguxAZiMHeg/6mRSi1niH045TRRsPrZFAeflD+D/u3IrVOfjo3U5sZ\nZur57ajNABJZ97oGDVOcEGex5B0AAJ8m9UhCy8t9g3pGQKozQPvEUY+DUATe2dI+\nMRZUCVkmBxeQHxqP0+OAtOzW6FnT/lYpLwKFGGQGFtKQSU9pmhBK+mHK/TftpS88\noBqgQhI19BPAAzElLlt+MJ1UhYFBkZiI3ivYgxDrnpYul91wJO4SfSaptGAeY7n4\nP0T+OV8zGmPrSktat/9Bewln9L7wi8hW5SBwzbkm7rHb/8to1XROK4unrkjhIxX1\niQIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}}','yes'),(66212,'mwp_communication_keys','a:4:{i:11519498;a:2:{s:3:\"key\";s:36:\"9e3a59a3-663e-47aa-844f-4b77ef6ff94c\";s:5:\"added\";i:1678893135;}i:11920988;a:2:{s:3:\"key\";s:36:\"a666c965-b04f-4e55-88ce-a79d63a2aff9\";s:5:\"added\";i:1695997541;}i:13163472;a:2:{s:3:\"key\";s:36:\"1dd0bb68-d127-4e0e-9369-7b1888d24fb2\";s:5:\"added\";i:1699505569;}i:13194377;a:2:{s:3:\"key\";s:36:\"a2af20e7-a6a8-4091-9d9d-087fef61cca9\";s:5:\"added\";i:1700751078;}}','yes'),(66213,'mwp_key_last_used_9e3a59a3-663e-47aa-844f-4b77ef6ff94c','1678893135','yes'),(66214,'mmb_stats_filter','a:1:{s:7:\"plugins\";a:1:{s:7:\"cleanup\";a:1:{s:9:\"revisions\";a:1:{s:11:\"num_to_keep\";i:5;}}}}','yes'),(66217,'mwp_key_last_used_11519498','1688570062','yes'),(66218,'mwp_new_communication_established','1','yes'),(66316,'user_hit_count','a:57:{s:10:\"2023-09-25\";i:23;s:10:\"2023-09-26\";i:124;s:10:\"2023-09-27\";i:142;s:10:\"2023-09-28\";i:92;s:10:\"2023-09-29\";i:45;s:10:\"2023-09-30\";i:183;s:10:\"2023-10-01\";i:53;s:10:\"2023-10-02\";i:58;s:10:\"2023-10-03\";i:59;s:10:\"2023-10-04\";i:30;s:10:\"2023-10-05\";i:62;s:10:\"2023-10-06\";i:35;s:10:\"2023-10-07\";i:35;s:10:\"2023-10-08\";i:23;s:10:\"2023-10-09\";i:17;s:10:\"2023-10-10\";i:28;s:10:\"2023-10-11\";i:39;s:10:\"2023-10-12\";i:37;s:10:\"2023-10-13\";i:34;s:10:\"2023-10-14\";i:29;s:10:\"2023-10-15\";i:23;s:10:\"2023-10-16\";i:32;s:10:\"2023-10-17\";i:54;s:10:\"2023-10-18\";i:33;s:10:\"2023-10-19\";i:58;s:10:\"2023-10-20\";i:50;s:10:\"2023-10-21\";i:22;s:10:\"2023-10-22\";i:41;s:10:\"2023-10-23\";i:24;s:10:\"2023-10-24\";i:38;s:10:\"2023-10-25\";i:45;s:10:\"2023-10-26\";i:48;s:10:\"2023-10-27\";i:91;s:10:\"2023-10-28\";i:19;s:10:\"2023-10-29\";i:28;s:10:\"2023-10-30\";i:37;s:10:\"2023-10-31\";i:35;s:10:\"2023-11-01\";i:28;s:10:\"2023-11-02\";i:90;s:10:\"2023-11-03\";i:64;s:10:\"2023-11-04\";i:27;s:10:\"2023-11-05\";i:33;s:10:\"2023-11-06\";i:107;s:10:\"2023-11-07\";i:354;s:10:\"2023-11-08\";i:272;s:10:\"2023-11-09\";i:135;s:10:\"2023-11-10\";i:74;s:10:\"2023-11-11\";i:218;s:10:\"2023-11-12\";i:34;s:10:\"2023-11-13\";i:22;s:10:\"2023-11-14\";i:14;s:10:\"2023-11-15\";i:74;s:10:\"2023-11-16\";i:187;s:10:\"2023-11-17\";i:38;s:10:\"2023-11-18\";i:204;s:10:\"2023-11-19\";i:2;s:10:\"2023-11-23\";i:17;}','yes'),(66744,'woosea_allow_update','no','yes'),(67010,'woocommerce_gpf_config','a:5:{s:14:\"product_fields\";a:12:{s:5:\"title\";s:2:\"on\";s:11:\"description\";s:2:\"on\";s:20:\"availability_instock\";s:2:\"on\";s:22:\"availability_backorder\";s:2:\"on\";s:23:\"availability_outofstock\";s:2:\"on\";s:9:\"condition\";s:2:\"on\";s:5:\"brand\";s:2:\"on\";s:3:\"mpn\";s:2:\"on\";s:12:\"product_type\";s:2:\"on\";s:23:\"google_product_category\";s:2:\"on\";s:12:\"tax_category\";s:2:\"on\";s:11:\"size_system\";s:2:\"on\";}s:18:\"send_item_group_id\";s:2:\"on\";s:9:\"shop_code\";s:0:\"\";s:16:\"product_defaults\";a:46:{s:20:\"availability_instock\";s:8:\"in stock\";s:22:\"availability_backorder\";s:8:\"in stock\";s:23:\"availability_outofstock\";s:12:\"out of stock\";s:9:\"condition\";s:3:\"new\";s:5:\"brand\";s:12:\"{site_title}\";s:12:\"product_type\";s:0:\"\";s:23:\"google_product_category\";s:32:\"Apparel & Accessories > Clothing\";s:12:\"tax_category\";s:1:\"0\";s:6:\"gender\";s:0:\"\";s:9:\"age_group\";s:0:\"\";s:9:\"size_type\";s:0:\"\";s:11:\"size_system\";s:0:\"\";s:20:\"unit_pricing_measure\";s:0:\"\";s:25:\"unit_pricing_base_measure\";s:0:\"\";s:9:\"multipack\";s:0:\"\";s:5:\"adult\";s:0:\"\";s:17:\"identifier_exists\";s:0:\"\";s:16:\"adwords_grouping\";s:0:\"\";s:14:\"adwords_labels\";s:0:\"\";s:13:\"bing_category\";s:0:\"\";s:14:\"delivery_label\";s:0:\"\";s:18:\"ships_from_country\";s:0:\"\";s:29:\"shopping_ads_excluded_country\";s:0:\"\";s:18:\"transit_time_label\";s:0:\"\";s:17:\"min_handling_time\";s:0:\"\";s:17:\"max_handling_time\";s:0:\"\";s:23:\"energy_label_image_link\";s:0:\"\";s:20:\"included_destination\";s:0:\"\";s:20:\"excluded_destination\";s:0:\"\";s:23:\"sell_on_google_quantity\";s:0:\"\";s:23:\"purchase_quantity_limit\";s:0:\"\";s:35:\"google_funded_promotion_eligibility\";s:0:\"\";s:20:\"return_address_label\";s:0:\"\";s:19:\"return_policy_label\";s:0:\"\";s:13:\"pickup_method\";s:0:\"\";s:10:\"pickup_sla\";s:0:\"\";s:14:\"custom_label_0\";s:0:\"\";s:14:\"custom_label_1\";s:0:\"\";s:14:\"custom_label_2\";s:0:\"\";s:14:\"custom_label_3\";s:0:\"\";s:14:\"custom_label_4\";s:0:\"\";s:12:\"promotion_id\";s:0:\"\";s:17:\"bing_promotion_id\";s:0:\"\";s:13:\"shippingprice\";s:0:\"\";s:20:\"shippingcountryprice\";s:0:\"\";s:27:\"shippingcountryserviceprice\";s:0:\"\";}s:19:\"product_prepopulate\";a:32:{s:5:\"title\";s:19:\"field:product_title\";s:11:\"description\";s:19:\"description:fullvar\";s:5:\"brand\";s:0:\"\";s:3:\"mpn\";s:9:\"field:sku\";s:12:\"product_type\";s:0:\"\";s:12:\"tax_category\";s:0:\"\";s:4:\"gtin\";s:0:\"\";s:11:\"short_title\";s:0:\"\";s:5:\"color\";s:0:\"\";s:4:\"size\";s:0:\"\";s:20:\"unit_pricing_measure\";s:0:\"\";s:25:\"unit_pricing_base_measure\";s:0:\"\";s:9:\"multipack\";s:0:\"\";s:8:\"material\";s:0:\"\";s:7:\"pattern\";s:0:\"\";s:14:\"adwords_labels\";s:0:\"\";s:13:\"bing_category\";s:0:\"\";s:14:\"delivery_label\";s:0:\"\";s:18:\"transit_time_label\";s:0:\"\";s:23:\"energy_label_image_link\";s:0:\"\";s:18:\"cost_of_goods_sold\";s:0:\"\";s:23:\"sell_on_google_quantity\";s:0:\"\";s:23:\"purchase_quantity_limit\";s:0:\"\";s:20:\"return_address_label\";s:0:\"\";s:19:\"return_policy_label\";s:0:\"\";s:14:\"custom_label_0\";s:0:\"\";s:14:\"custom_label_1\";s:0:\"\";s:14:\"custom_label_2\";s:0:\"\";s:14:\"custom_label_3\";s:0:\"\";s:14:\"custom_label_4\";s:0:\"\";s:12:\"promotion_id\";s:0:\"\";s:17:\"bing_promotion_id\";s:0:\"\";}}','yes'),(67011,'woocommerce_gpf_debug_key','da49b02e-ed8c-44df-8576-00febe942b92','yes'),(67012,'woocommerce_gpf_feed_configs','a:1:{s:16:\"0d09d4b2ab133e9f\";a:2:{s:4:\"type\";s:6:\"google\";s:4:\"name\";s:35:\"Google merchant centre product feed\";}}','yes'),(67013,'woocommerce_gpf_db_version','16','yes'),(67014,'woocommerce_gpf_install_ts','1678988612','no'),(67027,'woocommerce_gpf_tax_ts_en-US','1702920319','no'),(67029,'woocommerce_gpf_autocomplete_last_triggered_refresh','1678988770','yes'),(67041,'parcelpanel_admin_notice_ignore_question','1704153600','yes'),(74093,'woocommerce_free_shipping_9_settings','a:4:{s:5:\"title\";s:17:\"Gratis verzending\";s:8:\"requires\";s:10:\"min_amount\";s:10:\"min_amount\";s:2:\"70\";s:16:\"ignore_discounts\";s:2:\"no\";}','yes'),(88621,'members_notifications','a:4:{s:6:\"update\";i:1705880283;s:4:\"feed\";a:0:{}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:0:{}}','yes'),(102333,'parcelpanel_pp_wc_admin_language','','yes'),(104762,'parcelpanel_close_quota_notice','1684627200','yes'),(104763,'parcelpanel_integration_app_enabled_1001','0','yes'),(104764,'parcelpanel_integration_app_enabled_1002','0','yes'),(104765,'parcelpanel_integration_app_enabled_1003','0','yes'),(119015,'woocommerce_feature_product_block_editor_enabled','no','yes'),(119023,'wc_remote_inbox_notifications_wca_updated','','no'),(122183,'parcelpanel_admin_notice_ignore_nps','1704153600','yes'),(134020,'fs_active_plugins','O:8:\"stdClass\":3:{s:7:\"plugins\";a:1:{s:28:\"shortcodes-ultimate/freemius\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"2.6.1\";s:4:\"type\";s:6:\"plugin\";s:9:\"timestamp\";i:1702239087;s:11:\"plugin_path\";s:43:\"shortcodes-ultimate/shortcodes-ultimate.php\";}}s:7:\"abspath\";s:37:\"/home/cach0166/nl.ecom-expansion.com/\";s:6:\"newest\";O:8:\"stdClass\":5:{s:11:\"plugin_path\";s:43:\"shortcodes-ultimate/shortcodes-ultimate.php\";s:8:\"sdk_path\";s:28:\"shortcodes-ultimate/freemius\";s:7:\"version\";s:5:\"2.6.1\";s:13:\"in_activation\";b:0;s:9:\"timestamp\";i:1702239087;}}','yes'),(134021,'fs_debug_mode','','yes'),(134022,'fs_accounts','a:6:{s:21:\"id_slug_type_path_map\";a:2:{i:4417;a:3:{s:4:\"slug\";s:25:\"advanced-form-integration\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:55:\"advanced-form-integration/advanced-form-integration.php\";}i:7180;a:3:{s:4:\"slug\";s:19:\"shortcodes-ultimate\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:43:\"shortcodes-ultimate/shortcodes-ultimate.php\";}}s:11:\"plugin_data\";a:2:{s:25:\"advanced-form-integration\";a:17:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:55:\"advanced-form-integration/advanced-form-integration.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1687636007;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:1;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.5.9\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";N;s:14:\"plugin_version\";s:6:\"1.68.4\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:13:\"teng-shop.com\";s:9:\"server_ip\";s:12:\"35.215.65.17\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1687642556;s:7:\"version\";s:6:\"1.68.4\";}s:15:\"prev_is_premium\";b:0;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1687636203;s:7:\"version\";s:6:\"1.68.4\";}s:16:\"uninstall_reason\";O:8:\"stdClass\":3:{s:2:\"id\";s:2:\"12\";s:4:\"info\";s:0:\"\";s:12:\"is_anonymous\";b:0;}}s:19:\"shortcodes-ultimate\";a:17:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:43:\"shortcodes-ultimate/shortcodes-ultimate.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1699654385;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:16:\"sdk_last_version\";s:5:\"2.6.0\";s:11:\"sdk_version\";s:5:\"2.6.1\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";s:5:\"7.0.0\";s:14:\"plugin_version\";s:5:\"7.0.1\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";N;s:4:\"host\";s:23:\"www.se.cach0166.odns.fr\";s:9:\"server_ip\";s:15:\"109.234.165.186\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1699654385;s:7:\"version\";s:6:\"5.13.2\";}s:15:\"prev_is_premium\";b:0;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1699654403;s:7:\"version\";s:6:\"5.13.2\";}s:19:\"last_load_timestamp\";i:1705839378;}}s:13:\"file_slug_map\";a:2:{s:55:\"advanced-form-integration/advanced-form-integration.php\";s:25:\"advanced-form-integration\";s:43:\"shortcodes-ultimate/shortcodes-ultimate.php\";s:19:\"shortcodes-ultimate\";}s:7:\"plugins\";a:2:{s:25:\"advanced-form-integration\";O:9:\"FS_Plugin\":24:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:25:\"Advanced Form Integration\";s:4:\"slug\";s:25:\"advanced-form-integration\";s:12:\"premium_slug\";s:33:\"advanced-form-integration-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:55:\"advanced-form-integration/advanced-form-integration.php\";s:7:\"version\";s:6:\"1.68.4\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:12:\"Professional\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:17:\"opt_in_moderation\";N;s:10:\"public_key\";s:32:\"pk_f94bb401ae01ff3a79f438df51715\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"4417\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:0;}s:19:\"shortcodes-ultimate\";O:9:\"FS_Plugin\":24:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:19:\"Shortcodes Ultimate\";s:4:\"slug\";s:19:\"shortcodes-ultimate\";s:12:\"premium_slug\";s:23:\"shortcodes-ultimate-pro\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:43:\"shortcodes-ultimate/shortcodes-ultimate.php\";s:7:\"version\";s:5:\"7.0.1\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:3:\"Pro\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:17:\"opt_in_moderation\";N;s:10:\"public_key\";s:32:\"pk_c9ecad02df10f17e67880ac6bd8fc\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"7180\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:1;}}s:9:\"unique_id\";s:32:\"e83a02a172c73f48a057713277c5c50b\";s:13:\"admin_notices\";a:1:{s:25:\"advanced-form-integration\";a:0:{}}}','yes'),(134023,'fs_api_cache','a:0:{}','no'),(134033,'adfoin_review','a:2:{s:4:\"time\";i:1687636186;s:9:\"dismissed\";b:0;}','yes'),(134046,'widget_klaviyo_emailsignup_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(134047,'widget_klaviyo_embedemailsignup_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(134062,'adfoin_general_settings_platforms','a:78:{s:14:\"activecampaign\";b:0;s:8:\"agilecrm\";b:0;s:8:\"airtable\";b:0;s:5:\"asana\";b:0;s:9:\"autopilot\";b:0;s:6:\"aweber\";b:0;s:9:\"benchmark\";b:0;s:15:\"campaignmonitor\";b:0;s:10:\"capsulecrm\";b:0;s:7:\"clickup\";b:0;s:9:\"clinchpad\";b:0;s:5:\"close\";b:0;s:10:\"companyhub\";b:0;s:15:\"constantcontact\";b:0;s:10:\"convertkit\";b:0;s:6:\"copper\";b:0;s:7:\"curated\";b:0;s:5:\"demio\";b:0;s:8:\"directiq\";b:0;s:4:\"drip\";b:0;s:9:\"easysendy\";b:0;s:12:\"elasticemail\";b:0;s:12:\"emailoctopus\";b:0;s:9:\"engagebay\";b:0;s:11:\"everwebinar\";b:0;s:6:\"flowlu\";b:0;s:10:\"freshsales\";b:0;s:11:\"getresponse\";b:0;s:14:\"googlecalendar\";b:0;s:12:\"googlesheets\";b:0;s:7:\"hubspot\";b:0;s:9:\"insightly\";b:0;s:8:\"jumplead\";b:0;s:4:\"keap\";b:0;s:7:\"klaviyo\";b:1;s:7:\"lemlist\";b:0;s:8:\"liondesk\";b:0;s:9:\"livestorm\";b:0;s:9:\"mailchimp\";b:0;s:11:\"mailercloud\";b:0;s:10:\"mailerlite\";b:0;s:7:\"mailify\";b:0;s:7:\"mailjet\";b:0;s:8:\"mailwizz\";b:0;s:6:\"mautic\";b:0;s:7:\"moosend\";b:0;s:6:\"nimble\";b:0;s:8:\"omnisend\";b:0;s:7:\"onehash\";b:0;s:12:\"autopilotnew\";b:0;s:6:\"pabbly\";b:0;s:9:\"pipedrive\";b:0;s:8:\"pushover\";b:0;s:5:\"revue\";b:0;s:5:\"robly\";b:0;s:10:\"salesflare\";b:0;s:10:\"salesrocks\";b:0;s:5:\"selzy\";b:0;s:7:\"sendfox\";b:0;s:10:\"sendinblue\";b:0;s:9:\"sendpulse\";b:0;s:5:\"sendx\";b:0;s:5:\"sendy\";b:0;s:5:\"slack\";b:0;s:10:\"smartsheet\";b:0;s:6:\"trello\";b:0;s:6:\"twilio\";b:0;s:16:\"verticalresponse\";b:0;s:6:\"vtiger\";b:0;s:9:\"wealthbox\";b:0;s:7:\"webhook\";b:0;s:10:\"webinarjam\";b:0;s:10:\"woodpecker\";b:0;s:9:\"wordpress\";b:0;s:6:\"zapier\";b:0;s:13:\"zohocampaigns\";b:0;s:7:\"zohocrm\";b:0;s:9:\"zohosheet\";b:0;}','yes'),(134063,'adfoin_general_settings_log','','yes'),(134064,'adfoin_general_settings_st','','yes'),(134065,'adfoin_general_settings_utm','','yes'),(134726,'mailoptin_settings','a:3:{s:9:\"from_name\";s:9:\"Teng Shop\";s:10:\"from_email\";s:23:\"kotaro21.mail@gmail.com\";s:8:\"reply_to\";s:23:\"kotaro21.mail@gmail.com\";}','yes'),(134727,'mo_install_date','2023-06-24 16:37:19','yes'),(134728,'mo_plugin_activated','true','yes'),(134729,'mo_db_ver','13','yes'),(134730,'mailoptin_connections','a:42:{s:18:\"elementor_activate\";s:4:\"true\";s:18:\"sendinblue_api_key\";s:0:\"\";s:22:\"activecampaign_api_url\";s:0:\"\";s:22:\"activecampaign_api_key\";s:0:\"\";s:22:\"benchmarkemail_api_key\";s:0:\"\";s:14:\"ctctv3_api_key\";s:0:\"\";s:17:\"ctctv3_api_secret\";s:0:\"\";s:18:\"convertkit_api_key\";s:0:\"\";s:21:\"convertkit_api_secret\";s:0:\"\";s:24:\"convertkit_template_name\";s:0:\"\";s:14:\"drip_api_token\";s:0:\"\";s:15:\"drip_account_id\";s:0:\"\";s:20:\"emailoctopus_api_key\";s:0:\"\";s:19:\"emma_public_api_key\";s:0:\"\";s:20:\"emma_private_api_key\";s:0:\"\";s:15:\"emma_account_id\";s:0:\"\";s:19:\"getresponse_api_key\";s:0:\"\";s:18:\"getresponse_is_360\";s:5:\"false\";s:32:\"getresponse360_registered_domain\";s:0:\"\";s:22:\"getresponse360_country\";s:4:\"none\";s:18:\"convertfox_api_key\";s:0:\"\";s:9:\"gem_email\";s:0:\"\";s:11:\"gem_api_key\";s:0:\"\";s:15:\"klaviyo_api_key\";s:37:\"pk_2e0db9c22ea4da39667143e7a5c289c8c2\";s:17:\"mailchimp_api_key\";s:0:\"\";s:20:\"mailerlitev2_api_key\";s:0:\"\";s:18:\"mailerlite_api_key\";s:0:\"\";s:15:\"mailjet_api_key\";s:0:\"\";s:18:\"mailjet_secret_key\";s:0:\"\";s:15:\"moosend_api_key\";s:0:\"\";s:16:\"omnisend_api_key\";s:0:\"\";s:17:\"ontraport_api_key\";s:0:\"\";s:16:\"ontraport_app_id\";s:0:\"\";s:15:\"sendfox_api_key\";s:0:\"\";s:16:\"sendgrid_api_key\";s:0:\"\";s:16:\"sendlane_api_key\";s:0:\"\";s:17:\"sendlane_hash_key\";s:0:\"\";s:15:\"sendlane_domain\";s:0:\"\";s:13:\"sendy_api_key\";s:0:\"\";s:22:\"sendy_installation_url\";s:0:\"\";s:16:\"sendy_email_list\";a:1:{i:1;a:2:{s:9:\"list_name\";s:0:\"\";s:7:\"list_id\";s:0:\"\";}}s:14:\"wemail_api_key\";s:0:\"\";}','yes'),(134731,'mo_optin_campaign','a:0:{}','no'),(134732,'widget_mo_optin_widgets','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(134737,'pand-488942d411053eff8a8295cfc2399ed3','forever','no'),(134738,'pand-89815c8c301650df3fd93237b5ec40c3','forever','no'),(135000,'fwp_dismiss_fwpadnotice','true','yes'),(164298,'pand-afb253bb3e9f10f03c9b5e275edfcc5f','forever','no'),(171681,'wpvivid_check_htaccess_rule_free','1','yes'),(171735,'wc_stripe_show_ssl_notice','no','yes'),(171816,'mwp_key_last_used_6cc6b79d-2ce8-45ce-b7aa-5dd0225f7a24','1688580736','yes'),(171820,'mwp_key_last_used_11920988','1699204037','yes'),(172688,'new_admin_email','kotaro21.mail@gmail.com','yes'),(172715,'_transient_woocommerce_shipping_task_zone_count_transient','1','yes'),(211643,'wpsewcp_welcome_redirect','no','yes'),(211646,'vg_sheet_editor','a:78:{s:8:\"last_tab\";N;s:13:\"be_post_types\";a:2:{i:0;s:4:\"post\";i:1;s:7:\"product\";}s:17:\"be_posts_per_page\";i:505;s:23:\"be_load_items_on_scroll\";b:1;s:19:\"be_fix_columns_left\";i:2;s:22:\"be_posts_per_page_save\";i:4;s:26:\"be_timeout_between_batches\";i:6;s:23:\"be_disable_post_actions\";s:0:\"\";s:32:\"wc_variation_whitelisted_columns\";s:0:\"\";s:16:\"export_page_size\";s:0:\"\";s:21:\"delete_posts_per_page\";s:0:\"\";s:37:\"wc_products_variation_copy_batch_size\";s:0:\"\";s:17:\"enable_pagination\";s:0:\"\";s:33:\"be_disable_automatic_loading_rows\";s:0:\"\";s:30:\"be_disable_full_screen_mode_on\";s:0:\"\";s:18:\"enable_auto_saving\";s:0:\"\";s:19:\"default_sortby_post\";s:0:\"\";s:16:\"be_columns_limit\";s:0:\"\";s:27:\"be_taxonomy_terms_separator\";s:0:\"\";s:36:\"be_suspend_object_cache_invalidation\";s:0:\"\";s:18:\"be_disable_wpautop\";b:1;s:24:\"be_disable_data_prefetch\";s:0:\"\";s:36:\"keys_for_infinite_serialized_handler\";s:0:\"\";s:17:\"blacklist_columns\";s:0:\"\";s:24:\"fix_utf8_editor_settings\";s:0:\"\";s:20:\"remote_image_timeout\";s:0:\"\";s:31:\"maximum_advanced_filters_fields\";s:0:\"\";s:31:\"allow_line_breaks_export_import\";s:0:\"\";s:25:\"allow_html_in_post_titles\";s:0:\"\";s:28:\"save_every_term_in_hierarchy\";s:0:\"\";s:27:\"run_save_post_action_always\";s:0:\"\";s:47:\"be_allow_raw_content_unfiltered_html_capability\";s:0:\"\";s:31:\"serialized_field_post_templates\";s:0:\"\";s:37:\"enable_spreadsheet_views_restrictions\";s:0:\"\";s:18:\"enable_simple_mode\";s:0:\"\";s:38:\"disable_automatic_formatting_detection\";s:0:\"\";s:29:\"be_disable_cells_lazy_loading\";s:0:\"\";s:27:\"be_disable_dashboard_widget\";s:0:\"\";s:29:\"be_disable_serialized_columns\";s:0:\"\";s:20:\"be_disable_heartbeat\";s:0:\"\";s:29:\"be_enable_fancy_taxonomy_cell\";s:0:\"\";s:25:\"be_taxonomy_cell_renderer\";s:0:\"\";s:24:\"show_all_custom_statuses\";s:0:\"\";s:18:\"hide_cell_comments\";s:0:\"\";s:32:\"manage_taxonomy_columns_term_ids\";s:0:\"\";s:34:\"manage_taxonomy_columns_term_slugs\";s:0:\"\";s:27:\"dont_auto_enable_new_fields\";s:0:\"\";s:29:\"math_formula_roundup_decimals\";s:0:\"\";s:25:\"enable_plain_select_cells\";s:0:\"\";s:19:\"wpmu_delete_account\";s:0:\"\";s:25:\"dont_add_id_to_image_urls\";s:0:\"\";s:37:\"dont_display_file_names_image_columns\";s:0:\"\";s:27:\"add_html_class_status_value\";s:0:\"\";s:32:\"tinymce_preview_characters_limit\";s:0:\"\";s:27:\"manage_post_parents_with_id\";s:0:\"\";s:10:\"color_mode\";s:0:\"\";s:24:\"allow_ftp_images_support\";s:0:\"\";s:28:\"allow_ftp_images_duplication\";s:0:\"\";s:19:\"media_preview_width\";s:0:\"\";s:20:\"media_preview_height\";s:0:\"\";s:22:\"be_initial_rows_offset\";s:0:\"\";s:39:\"delete_attached_images_when_post_delete\";s:0:\"\";s:20:\"disable_help_toolbar\";s:0:\"\";s:29:\"max_value_length_locked_cells\";s:0:\"\";s:45:\"dont_show_readonly_columns_in_advanced_search\";s:0:\"\";s:30:\"be_disable_extension_offerings\";s:0:\"\";s:38:\"exclude_non_visible_columns_from_tools\";s:0:\"\";s:36:\"disable_important_extensions_toolbar\";s:0:\"\";s:38:\"be_disable_woocommerce_inventory_stats\";s:0:\"\";s:29:\"wc_use_separate_image_columns\";s:0:\"\";s:47:\"be_disable_wc_auto_attribute_used_for_variation\";s:0:\"\";s:36:\"be_disable_wc_auto_attribute_visible\";s:0:\"\";s:36:\"wc_product_attributes_is_not_visible\";s:0:\"\";s:35:\"wc_product_attributes_not_variation\";s:0:\"\";s:30:\"maximum_variations_combination\";s:0:\"\";s:34:\"wc_products_custom_attribute_names\";s:0:\"\";s:31:\"allow_to_see_variation_url_slug\";s:0:\"\";s:26:\"update_lookup_table_always\";s:0:\"\";}','no'),(211655,'vgse_columns_visibility','a:2:{s:7:\"product\";a:2:{s:7:\"enabled\";a:106:{s:10:\"post_title\";s:5:\"Title\";s:9:\"post_name\";s:8:\"URL Slug\";s:12:\"post_content\";s:7:\"Content\";s:18:\"_yoast_wpseo_title\";s:9:\"SEO Title\";s:21:\"_yoast_wpseo_metadesc\";s:15:\"SEO Description\";s:11:\"product_cat\";s:23:\"Catégories de produits\";s:14:\"open_wp_editor\";s:9:\"WP Editor\";s:9:\"view_post\";s:4:\"View\";s:9:\"post_date\";s:4:\"Date\";s:13:\"post_modified\";s:13:\"Modified Date\";s:12:\"post_excerpt\";s:18:\"Description courte\";s:11:\"post_status\";s:6:\"Status\";s:11:\"post_parent\";s:11:\"Page Parent\";s:10:\"menu_order\";s:5:\"Order\";s:13:\"_thumbnail_id\";s:14:\"Featured Image\";s:11:\"product_tag\";s:19:\"Étiquettes produit\";s:8:\"pa_color\";s:25:\"Produit Choose your color\";s:7:\"pa_size\";s:24:\"Produit Choose your size\";s:9:\"post_type\";s:9:\"Post type\";s:13:\"post_password\";s:8:\"Password\";s:11:\"_backorders\";s:49:\"Autoriser les commandes de produits en rupture ?\";s:16:\"_download_expiry\";s:15:\"Download expiry\";s:15:\"_download_limit\";s:14:\"Download limit\";s:13:\"_downloadable\";s:12:\"Downloadable\";s:28:\"_flatsome_product_percentage\";s:27:\"Flatsome Product Percentage\";s:13:\"_manage_stock\";s:16:\"Gestion du stock\";s:22:\"_product_image_gallery\";s:15:\"Galerie produit\";s:14:\"_regular_price\";s:15:\"Tarif régulier\";s:11:\"_sale_price\";s:11:\"Tarif promo\";s:19:\"_shopify_product_id\";s:18:\"Shopify Product Id\";s:21:\"_shopify_variation_id\";s:20:\"Shopify Variation Id\";s:4:\"_sku\";s:3:\"UGS\";s:18:\"_sold_individually\";s:23:\"Vendre individuellement\";s:6:\"_stock\";s:5:\"Stock\";s:13:\"_stock_status\";s:14:\"État du stock\";s:10:\"_tax_class\";s:9:\"Tax Class\";s:11:\"_tax_status\";s:10:\"Tax Status\";s:8:\"_virtual\";s:7:\"Virtuel\";s:18:\"_wc_average_rating\";s:17:\"Moyenne des notes\";s:16:\"_wc_review_count\";s:12:\"Review count\";s:23:\"_woosea_exclude_product\";s:22:\"Woosea Exclude Product\";s:26:\"_yoast_wpseo_content_score\";s:25:\"Yoast Wpseo Content Score\";s:43:\"_yoast_wpseo_estimated-reading-time-minutes\";s:42:\"Yoast Wpseo Estimated Reading Time Minutes\";s:20:\"_yoast_wpseo_focuskw\";s:11:\"SEO Keyword\";s:20:\"_yoast_wpseo_linkdex\";s:3:\"SEO\";s:32:\"_yoast_wpseo_primary_product_cat\";s:22:\"SEO Primary Catégorie\";s:32:\"_yoast_wpseo_wordproof_timestamp\";s:31:\"Yoast Wpseo Wordproof Timestamp\";s:21:\"inline_featured_image\";s:21:\"Inline Featured Image\";s:23:\"litespeed_no_image_lazy\";s:23:\"Litespeed No Image Lazy\";s:11:\"total_sales\";s:16:\"Total des ventes\";s:32:\"woocommerce_gpf_primary_media_id\";s:32:\"Woocommerce Gpf Primary Media Id\";s:9:\"wpsecabox\";s:21:\"Custom attribute: Box\";s:9:\"wpsecaset\";s:21:\"Custom attribute: Set\";s:10:\"wpsecasize\";s:22:\"Custom attribute: Size\";s:11:\"wpsecacolor\";s:23:\"Custom attribute: Color\";s:11:\"wpsecapairs\";s:23:\"Custom attribute: Pairs\";s:14:\"wpsecaquantity\";s:26:\"Custom attribute: Quantity\";s:13:\"wpsecacouleur\";s:25:\"Custom attribute: Couleur\";s:14:\"wpsecapainting\";s:26:\"Custom attribute: Painting\";s:15:\"wpsecapaintings\";s:27:\"Custom attribute: Paintings\";s:22:\"_vgse_create_attribute\";s:18:\"Product attributes\";s:22:\"_variation_description\";s:21:\"Variation description\";s:23:\"_vgse_variation_enabled\";s:18:\"Variation enabled?\";s:19:\"_default_attributes\";s:18:\"Default attributes\";s:14:\"_download_type\";s:13:\"Download type\";s:28:\"wpse_downloadable_file_names\";s:22:\"Download files : names\";s:27:\"wpse_downloadable_file_urls\";s:21:\"Download files : URLs\";s:19:\"_downloadable_files\";s:14:\"Download files\";s:11:\"post_author\";s:6:\"Vendor\";s:12:\"product_type\";s:4:\"Type\";s:22:\"_sale_price_dates_from\";s:23:\"Date de début de promo\";s:20:\"_sale_price_dates_to\";s:20:\"Date de fin de promo\";s:7:\"_weight\";s:5:\"Poids\";s:6:\"_width\";s:7:\"Largeur\";s:7:\"_height\";s:7:\"Hauteur\";s:7:\"_length\";s:8:\"Longueur\";s:14:\"_crosssell_ids\";s:16:\"Ventes croisées\";s:11:\"_upsell_ids\";s:19:\"Produits suggérés\";s:18:\"product_visibility\";s:11:\"Visibilité\";s:9:\"_featured\";s:15:\"Mis en avant ?\";s:14:\"_purchase_note\";s:16:\"Note de commande\";s:22:\"product_shipping_class\";s:22:\"Classe d’expédition\";s:28:\"_yoast_wpseo_opengraph-title\";s:12:\"SEO FB title\";s:34:\"_yoast_wpseo_opengraph-description\";s:18:\"SEO FB description\";s:28:\"_yoast_wpseo_opengraph-image\";s:12:\"SEO FB image\";s:26:\"_yoast_wpseo_twitter-title\";s:12:\"SEO TW title\";s:32:\"_yoast_wpseo_twitter-description\";s:18:\"SEO TW description\";s:26:\"_yoast_wpseo_twitter-image\";s:12:\"SEO TW image\";s:22:\"_yoast_wpseo_canonical\";s:17:\"SEO Canonical URL\";s:32:\"_yoast_wpseo_meta-robots-noindex\";s:12:\"SEO No Index\";s:41:\"_woocommerce_gpf_data_exclude_product_i_0\";s:40:\"Woocommerce Gpf Data: Exclude Product: 1\";s:41:\"_woocommerce_gpf_data_exclude_product_i_1\";s:40:\"Woocommerce Gpf Data: Exclude Product: 2\";s:41:\"_woocommerce_gpf_data_exclude_product_i_2\";s:40:\"Woocommerce Gpf Data: Exclude Product: 3\";s:41:\"wc_productdata_options__product_block_i_0\";s:40:\"Wc Productdata Options: Product Block: 1\";s:39:\"wc_productdata_options__top_content_i_0\";s:38:\"Wc Productdata Options: Top Content: 1\";s:42:\"wc_productdata_options__bottom_content_i_0\";s:41:\"Wc Productdata Options: Bottom Content: 1\";s:38:\"wc_productdata_options__bubble_new_i_0\";s:37:\"Wc Productdata Options: Bubble New: 1\";s:39:\"wc_productdata_options__bubble_text_i_0\";s:38:\"Wc Productdata Options: Bubble Text: 1\";s:44:\"wc_productdata_options__custom_tab_title_i_0\";s:43:\"Wc Productdata Options: Custom Tab Title: 1\";s:38:\"wc_productdata_options__custom_tab_i_0\";s:37:\"Wc Productdata Options: Custom Tab: 1\";s:41:\"wc_productdata_options__product_video_i_0\";s:40:\"Wc Productdata Options: Product Video: 1\";s:46:\"wc_productdata_options__product_video_size_i_0\";s:45:\"Wc Productdata Options: Product Video Size: 1\";s:51:\"wc_productdata_options__product_video_placement_i_0\";s:50:\"Wc Productdata Options: Product Video Placement: 1\";s:40:\"woocommerce_gpf_excluded_media_ids_0_i_0\";s:40:\"Woocommerce Gpf Excluded Media Ids: 0: 1\";s:40:\"woocommerce_gpf_excluded_media_ids_0_i_1\";s:40:\"Woocommerce Gpf Excluded Media Ids: 0: 2\";s:40:\"woocommerce_gpf_excluded_media_ids_0_i_2\";s:40:\"Woocommerce Gpf Excluded Media Ids: 0: 3\";}s:8:\"disabled\";a:2:{s:2:\"ID\";s:2:\"ID\";s:4:\"name\";s:3:\"tri\";}}s:4:\"post\";a:2:{s:7:\"enabled\";a:36:{s:10:\"post_title\";s:5:\"Title\";s:9:\"post_name\";s:8:\"URL Slug\";s:12:\"post_content\";s:7:\"Content\";s:18:\"_yoast_wpseo_title\";s:9:\"SEO Title\";s:21:\"_yoast_wpseo_metadesc\";s:15:\"SEO Description\";s:14:\"open_wp_editor\";s:9:\"WP Editor\";s:9:\"view_post\";s:4:\"View\";s:9:\"post_date\";s:4:\"Date\";s:13:\"post_modified\";s:13:\"Modified Date\";s:11:\"post_author\";s:6:\"Author\";s:12:\"post_excerpt\";s:7:\"Excerpt\";s:11:\"post_status\";s:6:\"Status\";s:14:\"comment_status\";s:8:\"Comments\";s:10:\"menu_order\";s:5:\"Order\";s:13:\"_thumbnail_id\";s:14:\"Featured Image\";s:8:\"category\";s:11:\"Catégories\";s:8:\"post_tag\";s:11:\"Étiquettes\";s:11:\"post_format\";s:7:\"Formats\";s:9:\"post_type\";s:9:\"Post type\";s:13:\"post_password\";s:8:\"Password\";s:10:\"_encloseme\";s:9:\"Encloseme\";s:7:\"_pingme\";s:6:\"Pingme\";s:26:\"_yoast_wpseo_content_score\";s:25:\"Yoast Wpseo Content Score\";s:43:\"_yoast_wpseo_estimated-reading-time-minutes\";s:42:\"Yoast Wpseo Estimated Reading Time Minutes\";s:20:\"_yoast_wpseo_focuskw\";s:11:\"SEO Keyword\";s:20:\"_yoast_wpseo_linkdex\";s:3:\"SEO\";s:29:\"_yoast_wpseo_primary_category\";s:22:\"SEO Primary Catégorie\";s:32:\"_yoast_wpseo_wordproof_timestamp\";s:31:\"Yoast Wpseo Wordproof Timestamp\";s:28:\"_yoast_wpseo_opengraph-title\";s:12:\"SEO FB title\";s:34:\"_yoast_wpseo_opengraph-description\";s:18:\"SEO FB description\";s:28:\"_yoast_wpseo_opengraph-image\";s:12:\"SEO FB image\";s:26:\"_yoast_wpseo_twitter-title\";s:12:\"SEO TW title\";s:32:\"_yoast_wpseo_twitter-description\";s:18:\"SEO TW description\";s:26:\"_yoast_wpseo_twitter-image\";s:12:\"SEO TW image\";s:22:\"_yoast_wpseo_canonical\";s:17:\"SEO Canonical URL\";s:32:\"_yoast_wpseo_meta-robots-noindex\";s:12:\"SEO No Index\";}s:8:\"disabled\";a:1:{s:2:\"ID\";s:2:\"ID\";}}}','no'),(211656,'vgse_columns_visibility_migrated','1','yes'),(211672,'vgse_columns_manager','a:0:{}','no'),(211675,'vgse_detected_fields_product_updated','1689532715','yes'),(211758,'vgse_welcome_redirect','no','yes'),(211759,'vgse_hide_whats_new_2.25.3','yes','yes'),(211762,'vgse_disable_quick_setup','1','yes'),(211856,'mfrh_rating_date','1850349208','no'),(211857,'mfrh_license','a:5:{s:3:\"key\";s:0:\"\";s:5:\"issue\";s:0:\"\";s:4:\"logs\";s:0:\"\";s:7:\"expires\";s:8:\"lifetime\";s:7:\"license\";s:5:\"valid\";}','yes'),(211858,'mfrh_options','a:42:{s:11:\"auto_rename\";s:10:\"post_title\";s:9:\"on_upload\";b:0;s:11:\"rename_slug\";b:0;s:16:\"convert_to_ascii\";b:1;s:12:\"update_posts\";b:1;s:15:\"update_excerpts\";b:0;s:15:\"update_postmeta\";b:0;s:16:\"update_elementor\";b:0;s:4:\"undo\";b:0;s:4:\"move\";b:0;s:13:\"manual_rename\";b:0;s:16:\"manual_rename_ai\";b:0;s:15:\"manual_sanitize\";b:0;s:14:\"numbered_files\";b:1;s:8:\"sync_alt\";b:1;s:16:\"sync_media_title\";b:1;s:12:\"force_rename\";b:0;s:3:\"log\";b:0;s:6:\"logsql\";b:0;s:11:\"rename_guid\";b:0;s:22:\"case_insensitive_check\";b:0;s:14:\"rename_on_save\";b:0;s:14:\"acf_field_name\";s:5:\"false\";s:11:\"images_only\";b:0;s:13:\"featured_only\";b:0;s:14:\"posts_per_page\";i:25;s:13:\"autolock_auto\";b:0;s:15:\"autolock_manual\";b:1;s:5:\"delay\";i:100;s:15:\"clean_uninstall\";b:0;s:4:\"mode\";s:6:\"rename\";s:9:\"dashboard\";b:1;s:9:\"alt_field\";b:0;s:11:\"attached_to\";b:1;s:16:\"vision_rename_ai\";b:0;s:26:\"vision_rename_ai_on_upload\";b:0;s:12:\"clean_upload\";b:0;s:4:\"lock\";b:0;s:9:\"logs_path\";N;s:14:\"metadata_title\";b:1;s:12:\"metadata_alt\";b:1;s:20:\"metadata_description\";b:0;}','no'),(213200,'vgse_column_groups','a:1:{s:7:\"product\";a:1:{s:3:\"tri\";a:3:{s:7:\"enabled\";a:106:{s:10:\"post_title\";s:5:\"Title\";s:9:\"post_name\";s:8:\"URL Slug\";s:12:\"post_content\";s:7:\"Content\";s:18:\"_yoast_wpseo_title\";s:9:\"SEO Title\";s:21:\"_yoast_wpseo_metadesc\";s:15:\"SEO Description\";s:11:\"product_cat\";s:23:\"Catégories de produits\";s:14:\"open_wp_editor\";s:9:\"WP Editor\";s:9:\"view_post\";s:4:\"View\";s:9:\"post_date\";s:4:\"Date\";s:13:\"post_modified\";s:13:\"Modified Date\";s:12:\"post_excerpt\";s:18:\"Description courte\";s:11:\"post_status\";s:6:\"Status\";s:11:\"post_parent\";s:11:\"Page Parent\";s:10:\"menu_order\";s:5:\"Order\";s:13:\"_thumbnail_id\";s:14:\"Featured Image\";s:11:\"product_tag\";s:19:\"Étiquettes produit\";s:8:\"pa_color\";s:25:\"Produit Choose your color\";s:7:\"pa_size\";s:24:\"Produit Choose your size\";s:9:\"post_type\";s:9:\"Post type\";s:13:\"post_password\";s:8:\"Password\";s:11:\"_backorders\";s:49:\"Autoriser les commandes de produits en rupture ?\";s:16:\"_download_expiry\";s:15:\"Download expiry\";s:15:\"_download_limit\";s:14:\"Download limit\";s:13:\"_downloadable\";s:12:\"Downloadable\";s:28:\"_flatsome_product_percentage\";s:27:\"Flatsome Product Percentage\";s:13:\"_manage_stock\";s:16:\"Gestion du stock\";s:22:\"_product_image_gallery\";s:15:\"Galerie produit\";s:14:\"_regular_price\";s:15:\"Tarif régulier\";s:11:\"_sale_price\";s:11:\"Tarif promo\";s:19:\"_shopify_product_id\";s:18:\"Shopify Product Id\";s:21:\"_shopify_variation_id\";s:20:\"Shopify Variation Id\";s:4:\"_sku\";s:3:\"UGS\";s:18:\"_sold_individually\";s:23:\"Vendre individuellement\";s:6:\"_stock\";s:5:\"Stock\";s:13:\"_stock_status\";s:14:\"État du stock\";s:10:\"_tax_class\";s:9:\"Tax Class\";s:11:\"_tax_status\";s:10:\"Tax Status\";s:8:\"_virtual\";s:7:\"Virtuel\";s:18:\"_wc_average_rating\";s:17:\"Moyenne des notes\";s:16:\"_wc_review_count\";s:12:\"Review count\";s:23:\"_woosea_exclude_product\";s:22:\"Woosea Exclude Product\";s:26:\"_yoast_wpseo_content_score\";s:25:\"Yoast Wpseo Content Score\";s:43:\"_yoast_wpseo_estimated-reading-time-minutes\";s:42:\"Yoast Wpseo Estimated Reading Time Minutes\";s:20:\"_yoast_wpseo_focuskw\";s:11:\"SEO Keyword\";s:20:\"_yoast_wpseo_linkdex\";s:3:\"SEO\";s:32:\"_yoast_wpseo_primary_product_cat\";s:22:\"SEO Primary Catégorie\";s:32:\"_yoast_wpseo_wordproof_timestamp\";s:31:\"Yoast Wpseo Wordproof Timestamp\";s:21:\"inline_featured_image\";s:21:\"Inline Featured Image\";s:23:\"litespeed_no_image_lazy\";s:23:\"Litespeed No Image Lazy\";s:11:\"total_sales\";s:16:\"Total des ventes\";s:32:\"woocommerce_gpf_primary_media_id\";s:32:\"Woocommerce Gpf Primary Media Id\";s:9:\"wpsecabox\";s:21:\"Custom attribute: Box\";s:9:\"wpsecaset\";s:21:\"Custom attribute: Set\";s:10:\"wpsecasize\";s:22:\"Custom attribute: Size\";s:11:\"wpsecacolor\";s:23:\"Custom attribute: Color\";s:11:\"wpsecapairs\";s:23:\"Custom attribute: Pairs\";s:14:\"wpsecaquantity\";s:26:\"Custom attribute: Quantity\";s:13:\"wpsecacouleur\";s:25:\"Custom attribute: Couleur\";s:14:\"wpsecapainting\";s:26:\"Custom attribute: Painting\";s:15:\"wpsecapaintings\";s:27:\"Custom attribute: Paintings\";s:22:\"_vgse_create_attribute\";s:18:\"Product attributes\";s:22:\"_variation_description\";s:21:\"Variation description\";s:23:\"_vgse_variation_enabled\";s:18:\"Variation enabled?\";s:19:\"_default_attributes\";s:18:\"Default attributes\";s:14:\"_download_type\";s:13:\"Download type\";s:28:\"wpse_downloadable_file_names\";s:22:\"Download files : names\";s:27:\"wpse_downloadable_file_urls\";s:21:\"Download files : URLs\";s:19:\"_downloadable_files\";s:14:\"Download files\";s:11:\"post_author\";s:6:\"Vendor\";s:12:\"product_type\";s:4:\"Type\";s:22:\"_sale_price_dates_from\";s:23:\"Date de début de promo\";s:20:\"_sale_price_dates_to\";s:20:\"Date de fin de promo\";s:7:\"_weight\";s:5:\"Poids\";s:6:\"_width\";s:7:\"Largeur\";s:7:\"_height\";s:7:\"Hauteur\";s:7:\"_length\";s:8:\"Longueur\";s:14:\"_crosssell_ids\";s:16:\"Ventes croisées\";s:11:\"_upsell_ids\";s:19:\"Produits suggérés\";s:18:\"product_visibility\";s:11:\"Visibilité\";s:9:\"_featured\";s:15:\"Mis en avant ?\";s:14:\"_purchase_note\";s:16:\"Note de commande\";s:22:\"product_shipping_class\";s:22:\"Classe d’expédition\";s:28:\"_yoast_wpseo_opengraph-title\";s:12:\"SEO FB title\";s:34:\"_yoast_wpseo_opengraph-description\";s:18:\"SEO FB description\";s:28:\"_yoast_wpseo_opengraph-image\";s:12:\"SEO FB image\";s:26:\"_yoast_wpseo_twitter-title\";s:12:\"SEO TW title\";s:32:\"_yoast_wpseo_twitter-description\";s:18:\"SEO TW description\";s:26:\"_yoast_wpseo_twitter-image\";s:12:\"SEO TW image\";s:22:\"_yoast_wpseo_canonical\";s:17:\"SEO Canonical URL\";s:32:\"_yoast_wpseo_meta-robots-noindex\";s:12:\"SEO No Index\";s:41:\"_woocommerce_gpf_data_exclude_product_i_0\";s:40:\"Woocommerce Gpf Data: Exclude Product: 1\";s:41:\"_woocommerce_gpf_data_exclude_product_i_1\";s:40:\"Woocommerce Gpf Data: Exclude Product: 2\";s:41:\"_woocommerce_gpf_data_exclude_product_i_2\";s:40:\"Woocommerce Gpf Data: Exclude Product: 3\";s:41:\"wc_productdata_options__product_block_i_0\";s:40:\"Wc Productdata Options: Product Block: 1\";s:39:\"wc_productdata_options__top_content_i_0\";s:38:\"Wc Productdata Options: Top Content: 1\";s:42:\"wc_productdata_options__bottom_content_i_0\";s:41:\"Wc Productdata Options: Bottom Content: 1\";s:38:\"wc_productdata_options__bubble_new_i_0\";s:37:\"Wc Productdata Options: Bubble New: 1\";s:39:\"wc_productdata_options__bubble_text_i_0\";s:38:\"Wc Productdata Options: Bubble Text: 1\";s:44:\"wc_productdata_options__custom_tab_title_i_0\";s:43:\"Wc Productdata Options: Custom Tab Title: 1\";s:38:\"wc_productdata_options__custom_tab_i_0\";s:37:\"Wc Productdata Options: Custom Tab: 1\";s:41:\"wc_productdata_options__product_video_i_0\";s:40:\"Wc Productdata Options: Product Video: 1\";s:46:\"wc_productdata_options__product_video_size_i_0\";s:45:\"Wc Productdata Options: Product Video Size: 1\";s:51:\"wc_productdata_options__product_video_placement_i_0\";s:50:\"Wc Productdata Options: Product Video Placement: 1\";s:40:\"woocommerce_gpf_excluded_media_ids_0_i_0\";s:40:\"Woocommerce Gpf Excluded Media Ids: 0: 1\";s:40:\"woocommerce_gpf_excluded_media_ids_0_i_1\";s:40:\"Woocommerce Gpf Excluded Media Ids: 0: 2\";s:40:\"woocommerce_gpf_excluded_media_ids_0_i_2\";s:40:\"Woocommerce Gpf Excluded Media Ids: 0: 3\";}s:8:\"disabled\";a:2:{s:2:\"ID\";s:2:\"ID\";s:4:\"name\";s:3:\"tri\";}s:4:\"name\";s:3:\"tri\";}}}','no'),(213348,'vgse_editions_counter','2027','yes'),(213349,'vgse_processed_counter','772','yes'),(213410,'edd_sl_f563046f435835cadeab0c1b286ab1eb','a:2:{s:7:\"timeout\";i:1705891403;s:5:\"value\";s:36520:\"{\"new_version\":\"5.8.1\",\"stable_version\":\"5.8.1\",\"name\":\"Media File Renamer Pro\",\"slug\":\"media-file-renamer-pro\",\"url\":\"https:\\/\\/meowapps.com\\/products\\/media-file-renamer-pro\\/?changelog=1\",\"last_updated\":\"2024-01-20 07:55:08\",\"homepage\":\"https:\\/\\/meowapps.com\",\"package\":\"\",\"download_link\":\"\",\"sections\":{\"description\":\"<p>Rename and move files directly from the dashboard, either individually or in bulk. You can even set it to automatically rename your files for you! Nicer SEO, tidier WordPress, better life. For more information, please visit the official website: <a href=\\\"https:\\/\\/meowapps.com\\/media-file-renamer\\/\\\">Media File Renamer<\\/a>.<\\/p>\\n<h3>HOW IT WORKS<\\/h3>By default, it automatically renames your media filenames based on their titles every time you modify them. But you can also manually rename files and update references to them throughout your site, including posts, pages, custom post types, and metadata. The best way to use the plugin is through the sleek and dynamic Renamer Dashboard, which makes it easy to work efficiently and effectively. \\n\\n[youtube https:\\/\\/youtu.be\\/XPbKE8pq0i0]\\n\\nPlease have a look at the [tutorial](https:\\/\\/meowapps.com\\/media-file-renamer\\/tutorial\\/).<h3>COMPATIBILITY<\\/h3>Media File Renamer works seamlessly with many features of WordPress and other plugins, including Retina files, WebP, rescaled images (since WP 5.3), PDF Thumbnails, UTF8 files, optimized images, and more. It can handle a wide variety of encoding cases, making it a reliable tool for organizing your media library.\\n\\nThere are a few page builders, like Avia Layout Builder, that currently do not allow Media File Renamer to rename images used in their posts due to encryption. However, we are actively seeking out solutions to this issue and are committed to providing users with the ability to rename these images if they desire.<h3>PRO VERSION<\\/h3>In the [Pro Version](https:\\/\\/meowapps.com\\/media-file-renamer\\/), you\'ll find many exciting features.\\n\\n- Automatically rename files based on attached posts, products, or ALT texts\\n- AI Suggestions (via AI Engine and OpenAI)\\n- Anonymize your files with anonymous filenames\\n- Move files to different directories in bulk\\n- Sync metadata like ALT texts and titles\\n- Number your files to allow for similar filenames\\n- Attach media entries to the posts or pages they\'re used in\\n- Use the Force Rename feature to re-link broken media entries to your files\\n- Advanced transliteration handles accents, emoticons, umlauts, cyrillic, and more<h3>IMPORTANT<\\/h3>Renaming or moving files can be a risky process, which is why it\'s important to take precautions. Before renaming your files in bulk, try renaming them one by one to make sure the references in your pages are updated properly. It\'s worth noting that some plugins may use unconventional methods to encode file usage, which could cause issues with the renaming process. To ensure the safety of your files and database, **it is crucial to make a backup before using Media File Renamer** to its full extent. Protect your valuable media by taking these precautionary measures.\\n\\nIf you notice any issues with your website after renaming your media files, **try clearing your cache**. Cached HTML can often hold onto old references, so this simple step can often resolve any issues. If you\'re still experiencing problems, you can use the Undo feature to roll back to the previous filenames. If you\'re having trouble updating references or have any other questions, please check out the support threads on our website. We\'re always working to cover more use cases and improve the plugin. You will find more here: [Questions &amp; Issues](https:\\/\\/meowapps.com\\/media-file-renamer\\/issues\\/).<h3>FOR DEVELOPERS<\\/h3>The plugin can be tweaked in many ways, there are many actions and filters available. Through them, for example, you can customize the automatic renaming to your liking. There is even a little API that you can call. More about this [here](https:\\/\\/meowapps.com\\/media-file-renamer\\/issues\\/).<h3>A SIMPLER PLUGIN<\\/h3>If you only need an simple field in order to modify the filename, you can also try [Phoenix Media Rename](https:\\/\\/wordpress.org\\/plugins\\/phoenix-media-rename). It\'s simpler, and just does that. Yes, we are friends!\",\"changelog\":\"<h4> 5.8.1 (2024\\/01\\/20) <\\/h4>\\n<ul>\\n<li>Fix: Async upload with AI Vision.<\\/li>\\n<li>Add: Import\\/Export Settings.<\\/li>\\n<li>&#x2b50;&#xfe0f; Don\'t hesitate to join our <a href=\\\"https:\\/\\/discord.gg\\/bHDGh38\\\">Discord Channel<\\/a>.<\\/li>\\n<li>&#x1f334; Please share some love <a href=\\\"https:\\/\\/wordpress.org\\/support\\/plugin\\/media-file-renamer\\/reviews\\/?rate=5#new-post\\\">here<\\/a>. Thank you!<\\/li>\\n<\\/ul>\\n<h4> 5.8.0 (2024\\/01\\/01) <\\/h4>\\n<ul>\\n<li>Fix: Issue with mfrh_media_renamed.<\\/li>\\n<li>Update: Enhanced UI with selection options for upload and improved AI prompts.<\\/li>\\n<li>Fix: Resolved issues in \'Rename All\' AI functionality and fixed Sync selection.<\\/li>\\n<li>Optimization: Improved history features with new filters, styling changes, and history limit adjustments.<\\/li>\\n<li>Add: New renaming methods with NekoTabs, history tracking, and AI-enhanced renaming capabilities.<\\/li>\\n<li>Update: Streamlined settings with revised tabs for Manual, Auto, and AI, and better visual indicators for busy fields.<\\/li>\\n<li>Add: Additional media library field options and a new &quot;Cancel&quot; feature for manual renaming.<\\/li>\\n<li>&#x1f4ab; Happy New Year!<\\/li>\\n<\\/ul>\\n<h4> 5.7.8 (2023\\/12\\/25) <\\/h4>\\n<ul>\\n<li>Update: Tools related to AI got better.<\\/li>\\n<li>Fix: Little fixes and enhancements for some users.<\\/li>\\n<li>&#x1f384; Merry Christmas!<\\/li>\\n<\\/ul>\\n<h4> 5.7.7 (2023\\/12\\/05) <\\/h4>\\n<ul>\\n<li>Update: Enhanced UI, clarified options, unified things.<\\/li>\\n<li>Add: Bulk Rename using AI Vision.<\\/li>\\n<li>Add: AI Vision on Upload.<\\/li>\\n<li>Add: Not Renamed filter in Dashboard.<\\/li>\\n<\\/ul>\\n<h4> 5.7.4 (2023\\/11\\/25) <\\/h4>\\n<ul>\\n<li>Update: Removed &quot;mfrh_sync_media_meta&quot; filter and added &quot;mfrh_rewrite_title&quot;. Enhanced code quality with cleaning and added more logs for sync functions.<\\/li>\\n<li>Add: Introduced Table filters (for media with no alt text, no description, no title) and improved display for empty metadata.<\\/li>\\n<li>Add: Added &quot;mfrh_clean_upload&quot; filter to customize the clean upload value.<\\/li>\\n<li>Fix: Removed &quot;disabled&quot; status on NekoModal to prevent log spamming.<\\/li>\\n<li>Update: Removed busyOverlay and upgraded the description field to a textarea for better input handling.<\\/li>\\n<li>Fix: Resolved an undefined function call issue in the API.<\\/li>\\n<\\/ul>\\n<h4> 5.7.3 (2023\\/11\\/20) <\\/h4>\\n<ul>\\n<li>Add: Sync only for selected items and mfrh_sync_media_meta filter for post modification during syncing.<\\/li>\\n<li>Update: New modal for thumbnails with an &quot;open in new tab&quot; button, and enhanced auto-attach warning message.<\\/li>\\n<li>Fix: Adjusted the default behavior of sync functionality.<\\/li>\\n<\\/ul>\\n<h4> 5.7.2 (2023\\/11\\/17) <\\/h4>\\n<ul>\\n<li>Add: AI suggestion now utilizes Vision for enhanced accuracy.<\\/li>\\n<li>Add: New &quot;Clean Uploads&quot; feature for efficient media management.<\\/li>\\n<li>Add: Magic Wand for Metadata Fields.<\\/li>\\n<li>Update: &quot;Auto-Attach Media&quot; feature now allows selection of target media entries.<\\/li>\\n<li>Update: Created Meow_MFRH_Engine class, consolidating renaming-related code.<\\/li>\\n<li>Update: Conducted various non-code related updates for improved performance.<\\/li>\\n<li>Fix: Resolved extension-related errors in thumbnails for better reliability.<\\/li>\\n<\\/ul>\\n<h4> 5.7.1 (2023\\/10\\/19) <\\/h4>\\n<ul>\\n<li>Fix: The action_update_postmeta filter was not working properly.<\\/li>\\n<li>Fix: Missing buttons in the modals.<\\/li>\\n<\\/ul>\\n<h4> 5.7.0 (2023\\/10\\/10) <\\/h4>\\n<ul>\\n<li>Update: For better confidentiality, the logs file is now randomly generated.<\\/li>\\n<li>Fix: Support of Windows servers.<\\/li>\\n<\\/ul>\\n<h4> 5.6.9 (2023\\/09\\/21) <\\/h4>\\n<ul>\\n<li>Update: The Auto-Attach feature is a bit more robust when using Media Cleaner data.<\\/li>\\n<\\/ul>\\n<h4> 5.6.8 (2023\\/09\\/14) <\\/h4>\\n<ul>\\n<li>Add: Auto-Attach feature now use the data from <a href=\\\"https:\\/\\/wordpress.org\\/plugins\\/media-cleaner\\/\\\">Media Cleaner<\\/a> (if available), which is extremely accurate!<\\/li>\\n<li>Fix: Random issues related to metadata not existing.<\\/li>\\n<li>Fix: Optimize the way the move feature works.<\\/li>\\n<li>Fix: Move didn\'t handle the WebP and AVIF files properly.<\\/li>\\n<li>Fix: Was not possible to completely delete the filename to type it from scratch.<\\/li>\\n<li>Fix: When uninstalled, all the data used by the plugin is now removed properly.<\\/li>\\n<\\/ul>\\n<h4> 5.6.6 (2023\\/07\\/21) <\\/h4>\\n<ul>\\n<li>Fix: Avoid warnings when the metadata isn\'t found.<\\/li>\\n<li>Fix: Better handling of metadata synchronization.<\\/li>\\n<li>Update: Enhanced the UI of the Renamer Field.<\\/li>\\n<\\/ul>\\n<h4> 5.6.5 (2023\\/06\\/21) <\\/h4>\\n<ul>\\n<li>Fix: Issue when automatic renaming was used with the related auto-lock.<\\/li>\\n<li>Update: Latest version of the UI.<\\/li>\\n<\\/ul>\\n<h4> 5.6.4 (2023\\/06\\/02) <\\/h4>\\n<ul>\\n<li>Fix: Removed a few warnings.<\\/li>\\n<li>Fix: The paging issue.<\\/li>\\n<\\/ul>\\n<h4> 5.6.3 (2023\\/05\\/30) <\\/h4>\\n<ul>\\n<li>Update: Trying to improve the UI based on your feedback. It might not please everyone, but I am trying to make it better. Please let me know if you have any idea.<\\/li>\\n<li>Fix: There were a few warning issues.<\\/li>\\n<li>Fix: There were some inconsistencies in the UI.<\\/li>\\n<\\/ul>\\n<h4> 5.6.2 (2023\\/05\\/13) <\\/h4>\\n<ul>\\n<li>Add: Some issues with spacing in some buttons.<\\/li>\\n<li>&#x1f3b5; I am struggling a bit to make the Dashboard UI nicer, if you have any idea, don\'t hesitate to let me know via the <a href=\\\"https:\\/\\/wordpress.org\\/support\\/plugin\\/media-file-renamer\\/\\\">Support Forums<\\/a>.<\\/li>\\n<\\/ul>\\n<h4> 5.6.1 (2023\\/05\\/06) <\\/h4>\\n<ul>\\n<li>Add: We can now edit the ALT Text.<\\/li>\\n<\\/ul>\\n<h4> 5.6.0 (2023\\/05\\/02) <\\/h4>\\n<ul>\\n<li>Add: \'Attached To\' column is now hideable.<\\/li>\\n<li>Add: \'ALT Text\' data now available if enabled in the options.<\\/li>\\n<li>Update: Minimized the size of the bundle.<\\/li>\\n<\\/ul>\\n<h4> 5.5.9 (2023\\/03\\/18) <\\/h4>\\n<ul>\\n<li>Fix: Various fixes in the UI.<\\/li>\\n<li>Update: Latest UI framework.<\\/li>\\n<\\/ul>\\n<h4> 5.5.8 (2023\\/03\\/13) <\\/h4>\\n<ul>\\n<li>Add: AI filename suggestions.<\\/li>\\n<li>Update: Added Unlocked instead of Pending (which was slowing-down the process and was not really useful). Let me know if you preferred it the other way.<\\/li>\\n<\\/ul>\\n<h4> 5.5.7 (2023\\/02\\/09) <\\/h4>\\n<ul>\\n<li>Add: New option to disable the Dashboard.<\\/li>\\n<li>Note: A bit late on the support, it\'s unusual, but very busy these days. I am also trying to gather the feedback\\/issues to fix them all at once in a good way. Thank you for your patience!<\\/li>\\n<\\/ul>\\n<h4> 5.5.5 (2023\\/02\\/01) <\\/h4>\\n<ul>\\n<li>Update: Clean the dashboard a bit, depending on the options.<\\/li>\\n<li>Fix: Issue in the Media Library with the Renamer field.<\\/li>\\n<li>Fix: The Edit Title modal wasn\'t working on ENTER.<\\/li>\\n<\\/ul>\\n<h4> 5.5.4 (2023\\/01\\/29) <\\/h4>\\n<ul>\\n<li>Fix: Titting enter in the Edit Title modal wasn\'t update with the new title.<\\/li>\\n<\\/ul>\\n<h4> 5.5.3 (2023\\/01\\/27) <\\/h4>\\n<ul>\\n<li>Update: Better move features and cleaner UI.<\\/li>\\n<\\/ul>\\n<h4> 5.5.2 (2023\\/01\\/06) <\\/h4>\\n<ul>\\n<li>Update: Slowly (but surely) separating the Rename mode from the Move mode. I will make the UI better and more adapted to the chosen mode. You will find the switch in the Renamer Dashboard.<\\/li>\\n<\\/ul>\\n<h4> 5.5.1 (2022\\/12\\/24) <\\/h4>\\n<ul>\\n<li>Update: Enhanced the hooks (filters).<\\/li>\\n<\\/ul>\\n<h4> 5.5.0 (2022\\/11\\/12) <\\/h4>\\n<ul>\\n<li>Fix: Enhanced the behavior of the UI.\\n= 5.4.9 (2022\\/10\\/30) =<\\/li>\\n<li>Fix: The link to the Dashboard was broken.<\\/li>\\n<\\/ul>\\n<h4> 5.4.8 (2022\\/10\\/24) <\\/h4>\\n<ul>\\n<li>Fix: There was an issue with WP-CLI in the latest versions.<\\/li>\\n<\\/ul>\\n<h4> 5.4.7 (2022\\/10\\/12) <\\/h4>\\n<ul>\\n<li>Add: Consider WebP as an &quot;Image&quot; (which it is &#x1f60f;).<\\/li>\\n<li>Fix: The \'Featured Only\' and \'Images Only\' were not working perfectly.<\\/li>\\n<li>Update: Optimized the way options are updated and retrieved.<\\/li>\\n<li>Update: Some refactoring to simplify the code.<\\/li>\\n<\\/ul>\\n<h4> 5.4.5 (2022\\/09\\/27) <\\/h4>\\n<ul>\\n<li>Add: Auto-retry on failure, up to 10 times.<\\/li>\\n<li>Fix: Typos.<\\/li>\\n<\\/ul>\\n<h4> 5.4.3 (2022\\/08\\/11) <\\/h4>\\n<ul>\\n<li>Add: Handle errors gracefully (with retry, skip or cancel).<\\/li>\\n<\\/ul>\\n<h4> 5.4.1 (2022\\/08\\/03) <\\/h4>\\n<ul>\\n<li>Fix: Tiny UI bug in Safari.<\\/li>\\n<\\/ul>\\n<h4> 5.4.0 (2022\\/07\\/05) <\\/h4>\\n<ul>\\n<li>Add: Support for Elementor (update the metadata and CSS).<\\/li>\\n<li>Update: Use the default WordPress font (to avoid loading data from Google Fonts) and a few UI enhancements.<\\/li>\\n<\\/ul>\\n<h4> 5.3.9 (2022\\/06\\/16) <\\/h4>\\n<ul>\\n<li>Fix: The WebP files weren\'t not renamed perfectly.<\\/li>\\n<\\/ul>\\n<h4> 5.3.8 (2022\\/03\\/29) <\\/h4>\\n<ul>\\n<li>Fix: Support for WebP.<\\/li>\\n<li>Fix: Anonymize (MD5) on upload now works fine.<\\/li>\\n<li>Fix: Decode HTML entities (in the meta, title) when renaming is based on it.<\\/li>\\n<li>Update: I am trying to enhance the UI (the rename field and the actions) depending on the size of the browser. I\'ll try to make this better and better, but don\'t hesitate to give me some feedback.<\\/li>\\n<\\/ul>\\n<h4> 5.3.6 (2022\\/02\\/01) <\\/h4>\\n<ul>\\n<li>Update: Fresh build and support for WordPress 5.9.<\\/li>\\n<\\/ul>\\n<h4> 5.3.5 (2021\\/11\\/10) <\\/h4>\\n<ul>\\n<li>Fix: Renaming of WebP uploaded directly to WordPress.<\\/li>\\n<li>Add: The possibility of locking files automatically after a manual rename (which was always the case previously), and\\/or after a automatic rename (that was not possible previously). With this last option, users having trouble to &quot;Rename All&quot; will be given the choice to do it on any kind of server. You will find those options in the Advanced tab.<\\/li>\\n<li>Add: &quot;Delay&quot; option, to give a break and a reset to the server between asynchronous requests! Default to 100ms. That will avoid the server to time out, or to slow down on purpose.<\\/li>\\n<\\/ul>\\n<h4> 5.3.3 (2021\\/11\\/09) <\\/h4>\\n<ul>\\n<li>Fix: Avoid renaming when the URLs (before\\/after) are empty.<\\/li>\\n<li>Add: New option to update URLs in the excerpts (no need to use it for most users).<\\/li>\\n<li>Update: Avoid double call to the mfrh_url_renamed (seemed to be completely useless).<\\/li>\\n<li>Update: Added a new \'size\' argument to the mfrh_url_renamed action.<\\/li>\\n<li>Update: Optimized queries.<\\/li>\\n<li>Add: We can change the page (in the dashboard) by typing it.<\\/li>\\n<\\/ul>\\n<h4> 5.3.2 (2021\\/10\\/16) <\\/h4>\\n<ul>\\n<li>Add: AVIF support.<\\/li>\\n<li>Fix: Avoid the double renaming when different registered sizes actually use the same file.<\\/li>\\n<\\/ul>\\n<h4> 5.3.0 (2021\\/10\\/09) <\\/h4>\\n<ul>\\n<li>Add: Better Force Rename.<\\/li>\\n<li>Add: Featured Images Only option.<\\/li>\\n<li>Fix: Auto-attach feature wasn\'t working properly with Featured Image when attached to Product.<\\/li>\\n<\\/ul>\\n<h4> 5.2.9 (2021\\/09\\/23) <\\/h4>\\n<ul>\\n<li>Add: Manual Sanitize Option. If the option is checked, the rename feature uses the new_filename function. If not, use the filename user input as it is.<\\/li>\\n<\\/ul>\\n<h4> 5.2.8 (2021\\/09\\/07) <\\/h4>\\n<ul>\\n<li>Add: Option to clean the plugin data on uninstall.<\\/li>\\n<li>Add: Manual Rename now goes through the cleaning flow to make sure everything is clean and nice.<\\/li>\\n<\\/ul>\\n<h4> 5.2.7 (2021\\/09\\/03) <\\/h4>\\n<ul>\\n<li>Fix: Security update: access controls to the REST API and the options enforced.<\\/li>\\n<li>Updated: Dependencies update.<\\/li>\\n<\\/ul>\\n<h4> 5.2.5 (2021\\/08\\/25) <\\/h4>\\n<ul>\\n<li>Fix: Search feature was not always working well.<\\/li>\\n<li>Update: Better technical architecture.<\\/li>\\n<\\/ul>\\n<h4> 5.2.4 (2021\\/06\\/13) <\\/h4>\\n<ul>\\n<li>Add: Remember the number of entries per page (dashboard).<\\/li>\\n<li>Fix: Limit the length of the manual filename.<\\/li>\\n<\\/ul>\\n<h4> 5.2.3 (2021\\/05\\/29) <\\/h4>\\n<ul>\\n<li>Fix: The \'Move\' feature now also works with the original image (in case it has been scaled by WP).<\\/li>\\n<\\/ul>\\n<h4> 5.2.2 (2021\\/05\\/18) <\\/h4>\\n<ul>\\n<li>Fix: Better Windows support.<\\/li>\\n<\\/ul>\\n<h4> 5.2.0 (2021\\/05\\/15) <\\/h4>\\n<ul>\\n<li>Add: Move button (this was mainly added for tests, so it\'s a beta feature, it will be perfected over time).<\\/li>\\n<li>Add: Images Only option.<\\/li>\\n<li>Fix: Vulnerability report, a standard user access could potentially modify a media title with custom requests.<\\/li>\\n<\\/ul>\\n<h4> 5.1.9 (2021\\/04\\/09) <\\/h4>\\n<ul>\\n<li>Fix: The Synchronize Alt option wasn\'t working logically.<\\/li>\\n<\\/ul>\\n<h4> 5.1.8 (2021\\/03\\/04) <\\/h4>\\n<ul>\\n<li>Add: Search.<\\/li>\\n<li>Add: Quick rename the title from the dashboard.<\\/li>\\n<\\/ul>\\n<h4> 5.1.7 (2021\\/02\\/21) <\\/h4>\\n<ul>\\n<li>Fix: The Synchronize Media Title option wasn\'t working logically.<\\/li>\\n<\\/ul>\\n<h4> 5.1.6 (2021\\/02\\/12) <\\/h4>\\n<ul>\\n<li>Fix: References for moved files were not updated.<\\/li>\\n<li>Add: Sanitize filename after they have been through the mfrh_new_filename filter.<\\/li>\\n<\\/ul>\\n<h4> 5.1.3 (2021\\/02\\/06)  <\\/h4>\\n<ul>\\n<li>Add: Greek support.<\\/li>\\n<li>Fix: Better sensitive file check.<\\/li>\\n<li>Fix: Manual rename with WP CLI.<\\/li>\\n<\\/ul>\\n<h4> 5.1.2 (2021\\/01\\/10) <\\/h4>\\n<ul>\\n<li>Add: Auto attach feature.<\\/li>\\n<li>Add: Added Locked in the filters.<\\/li>\\n<li>Update: Icons position.<\\/li>\\n<\\/ul>\\n<h4> 5.1.1 (2021\\/01\\/05) <\\/h4>\\n<ul>\\n<li>Fix: Issue with roles overriding and WP-CLI.<\\/li>\\n<li>Fix: Issue with REST in the Common Dashboard.<\\/li>\\n<\\/ul>\\n<h4> 5.1.0 (2021\\/01\\/01) <\\/h4>\\n<ul>\\n<li>Add: Support overriding roles.<\\/li>\\n<li>Fix: The layout of the dashboard was broken by WPBakery.<\\/li>\\n<\\/ul>\"},\"banners\":{\"high\":\"https:\\/\\/meowapps.com\\/wp-content\\/uploads\\/edd\\/media-file-renamer-banner-1544x500.png\",\"low\":\"https:\\/\\/meowapps.com\\/wp-content\\/uploads\\/edd\\/media-file-renamer-banner-772x250.png\"},\"icons\":{\"1x\":\"https:\\/\\/meowapps.com\\/wp-content\\/uploads\\/Brush.png\",\"2x\":\"https:\\/\\/meowapps.com\\/wp-content\\/uploads\\/Brush.png\"},\"msg\":\"No license key has been provided.\",\"contributors\":{\"TigrouMeow\":{\"display_name\":\"TigrouMeow\",\"profile\":\"\\/\\/profiles.wordpress.org\\/TigrouMeow\",\"avatar\":\"https:\\/\\/wordpress.org\\/grav-redirect.php?user=TigrouMeow\"}},\"stable_tag\":\"5.8.1\",\"donate_link\":\"https:\\/\\/meowapps.com\\/donation\\/\",\"tested\":\"6.4\",\"added\":\"2022-09-01\",\"description\":[\"<p>Rename and move files directly from the dashboard, either individually or in bulk. You can even set it to automatically rename your files for you! Nicer SEO, tidier WordPress, better life. For more information, please visit the official website: <a href=\\\"https:\\/\\/meowapps.com\\/media-file-renamer\\/\\\">Media File Renamer<\\/a>.<\\/p>\\n<h3>HOW IT WORKS<\\/h3>By default, it automatically renames your media filenames based on their titles every time you modify them. But you can also manually rename files and update references to them throughout your site, including posts, pages, custom post types, and metadata. The best way to use the plugin is through the sleek and dynamic Renamer Dashboard, which makes it easy to work efficiently and effectively. \\n\\n[youtube https:\\/\\/youtu.be\\/XPbKE8pq0i0]\\n\\nPlease have a look at the [tutorial](https:\\/\\/meowapps.com\\/media-file-renamer\\/tutorial\\/).<h3>COMPATIBILITY<\\/h3>Media File Renamer works seamlessly with many features of WordPress and other plugins, including Retina files, WebP, rescaled images (since WP 5.3), PDF Thumbnails, UTF8 files, optimized images, and more. It can handle a wide variety of encoding cases, making it a reliable tool for organizing your media library.\\n\\nThere are a few page builders, like Avia Layout Builder, that currently do not allow Media File Renamer to rename images used in their posts due to encryption. However, we are actively seeking out solutions to this issue and are committed to providing users with the ability to rename these images if they desire.<h3>PRO VERSION<\\/h3>In the [Pro Version](https:\\/\\/meowapps.com\\/media-file-renamer\\/), you\'ll find many exciting features.\\n\\n- Automatically rename files based on attached posts, products, or ALT texts\\n- AI Suggestions (via AI Engine and OpenAI)\\n- Anonymize your files with anonymous filenames\\n- Move files to different directories in bulk\\n- Sync metadata like ALT texts and titles\\n- Number your files to allow for similar filenames\\n- Attach media entries to the posts or pages they\'re used in\\n- Use the Force Rename feature to re-link broken media entries to your files\\n- Advanced transliteration handles accents, emoticons, umlauts, cyrillic, and more<h3>IMPORTANT<\\/h3>Renaming or moving files can be a risky process, which is why it\'s important to take precautions. Before renaming your files in bulk, try renaming them one by one to make sure the references in your pages are updated properly. It\'s worth noting that some plugins may use unconventional methods to encode file usage, which could cause issues with the renaming process. To ensure the safety of your files and database, **it is crucial to make a backup before using Media File Renamer** to its full extent. Protect your valuable media by taking these precautionary measures.\\n\\nIf you notice any issues with your website after renaming your media files, **try clearing your cache**. Cached HTML can often hold onto old references, so this simple step can often resolve any issues. If you\'re still experiencing problems, you can use the Undo feature to roll back to the previous filenames. If you\'re having trouble updating references or have any other questions, please check out the support threads on our website. We\'re always working to cover more use cases and improve the plugin. You will find more here: [Questions &amp; Issues](https:\\/\\/meowapps.com\\/media-file-renamer\\/issues\\/).<h3>FOR DEVELOPERS<\\/h3>The plugin can be tweaked in many ways, there are many actions and filters available. Through them, for example, you can customize the automatic renaming to your liking. There is even a little API that you can call. More about this [here](https:\\/\\/meowapps.com\\/media-file-renamer\\/issues\\/).<h3>A SIMPLER PLUGIN<\\/h3>If you only need an simple field in order to modify the filename, you can also try [Phoenix Media Rename](https:\\/\\/wordpress.org\\/plugins\\/phoenix-media-rename). It\'s simpler, and just does that. Yes, we are friends!\"],\"changelog\":[\"<h4> 5.8.1 (2024\\/01\\/20) <\\/h4>\\n<ul>\\n<li>Fix: Async upload with AI Vision.<\\/li>\\n<li>Add: Import\\/Export Settings.<\\/li>\\n<li>&#x2b50;&#xfe0f; Don\'t hesitate to join our <a href=\\\"https:\\/\\/discord.gg\\/bHDGh38\\\">Discord Channel<\\/a>.<\\/li>\\n<li>&#x1f334; Please share some love <a href=\\\"https:\\/\\/wordpress.org\\/support\\/plugin\\/media-file-renamer\\/reviews\\/?rate=5#new-post\\\">here<\\/a>. Thank you!<\\/li>\\n<\\/ul>\\n<h4> 5.8.0 (2024\\/01\\/01) <\\/h4>\\n<ul>\\n<li>Fix: Issue with mfrh_media_renamed.<\\/li>\\n<li>Update: Enhanced UI with selection options for upload and improved AI prompts.<\\/li>\\n<li>Fix: Resolved issues in \'Rename All\' AI functionality and fixed Sync selection.<\\/li>\\n<li>Optimization: Improved history features with new filters, styling changes, and history limit adjustments.<\\/li>\\n<li>Add: New renaming methods with NekoTabs, history tracking, and AI-enhanced renaming capabilities.<\\/li>\\n<li>Update: Streamlined settings with revised tabs for Manual, Auto, and AI, and better visual indicators for busy fields.<\\/li>\\n<li>Add: Additional media library field options and a new &quot;Cancel&quot; feature for manual renaming.<\\/li>\\n<li>&#x1f4ab; Happy New Year!<\\/li>\\n<\\/ul>\\n<h4> 5.7.8 (2023\\/12\\/25) <\\/h4>\\n<ul>\\n<li>Update: Tools related to AI got better.<\\/li>\\n<li>Fix: Little fixes and enhancements for some users.<\\/li>\\n<li>&#x1f384; Merry Christmas!<\\/li>\\n<\\/ul>\\n<h4> 5.7.7 (2023\\/12\\/05) <\\/h4>\\n<ul>\\n<li>Update: Enhanced UI, clarified options, unified things.<\\/li>\\n<li>Add: Bulk Rename using AI Vision.<\\/li>\\n<li>Add: AI Vision on Upload.<\\/li>\\n<li>Add: Not Renamed filter in Dashboard.<\\/li>\\n<\\/ul>\\n<h4> 5.7.4 (2023\\/11\\/25) <\\/h4>\\n<ul>\\n<li>Update: Removed &quot;mfrh_sync_media_meta&quot; filter and added &quot;mfrh_rewrite_title&quot;. Enhanced code quality with cleaning and added more logs for sync functions.<\\/li>\\n<li>Add: Introduced Table filters (for media with no alt text, no description, no title) and improved display for empty metadata.<\\/li>\\n<li>Add: Added &quot;mfrh_clean_upload&quot; filter to customize the clean upload value.<\\/li>\\n<li>Fix: Removed &quot;disabled&quot; status on NekoModal to prevent log spamming.<\\/li>\\n<li>Update: Removed busyOverlay and upgraded the description field to a textarea for better input handling.<\\/li>\\n<li>Fix: Resolved an undefined function call issue in the API.<\\/li>\\n<\\/ul>\\n<h4> 5.7.3 (2023\\/11\\/20) <\\/h4>\\n<ul>\\n<li>Add: Sync only for selected items and mfrh_sync_media_meta filter for post modification during syncing.<\\/li>\\n<li>Update: New modal for thumbnails with an &quot;open in new tab&quot; button, and enhanced auto-attach warning message.<\\/li>\\n<li>Fix: Adjusted the default behavior of sync functionality.<\\/li>\\n<\\/ul>\\n<h4> 5.7.2 (2023\\/11\\/17) <\\/h4>\\n<ul>\\n<li>Add: AI suggestion now utilizes Vision for enhanced accuracy.<\\/li>\\n<li>Add: New &quot;Clean Uploads&quot; feature for efficient media management.<\\/li>\\n<li>Add: Magic Wand for Metadata Fields.<\\/li>\\n<li>Update: &quot;Auto-Attach Media&quot; feature now allows selection of target media entries.<\\/li>\\n<li>Update: Created Meow_MFRH_Engine class, consolidating renaming-related code.<\\/li>\\n<li>Update: Conducted various non-code related updates for improved performance.<\\/li>\\n<li>Fix: Resolved extension-related errors in thumbnails for better reliability.<\\/li>\\n<\\/ul>\\n<h4> 5.7.1 (2023\\/10\\/19) <\\/h4>\\n<ul>\\n<li>Fix: The action_update_postmeta filter was not working properly.<\\/li>\\n<li>Fix: Missing buttons in the modals.<\\/li>\\n<\\/ul>\\n<h4> 5.7.0 (2023\\/10\\/10) <\\/h4>\\n<ul>\\n<li>Update: For better confidentiality, the logs file is now randomly generated.<\\/li>\\n<li>Fix: Support of Windows servers.<\\/li>\\n<\\/ul>\\n<h4> 5.6.9 (2023\\/09\\/21) <\\/h4>\\n<ul>\\n<li>Update: The Auto-Attach feature is a bit more robust when using Media Cleaner data.<\\/li>\\n<\\/ul>\\n<h4> 5.6.8 (2023\\/09\\/14) <\\/h4>\\n<ul>\\n<li>Add: Auto-Attach feature now use the data from <a href=\\\"https:\\/\\/wordpress.org\\/plugins\\/media-cleaner\\/\\\">Media Cleaner<\\/a> (if available), which is extremely accurate!<\\/li>\\n<li>Fix: Random issues related to metadata not existing.<\\/li>\\n<li>Fix: Optimize the way the move feature works.<\\/li>\\n<li>Fix: Move didn\'t handle the WebP and AVIF files properly.<\\/li>\\n<li>Fix: Was not possible to completely delete the filename to type it from scratch.<\\/li>\\n<li>Fix: When uninstalled, all the data used by the plugin is now removed properly.<\\/li>\\n<\\/ul>\\n<h4> 5.6.6 (2023\\/07\\/21) <\\/h4>\\n<ul>\\n<li>Fix: Avoid warnings when the metadata isn\'t found.<\\/li>\\n<li>Fix: Better handling of metadata synchronization.<\\/li>\\n<li>Update: Enhanced the UI of the Renamer Field.<\\/li>\\n<\\/ul>\\n<h4> 5.6.5 (2023\\/06\\/21) <\\/h4>\\n<ul>\\n<li>Fix: Issue when automatic renaming was used with the related auto-lock.<\\/li>\\n<li>Update: Latest version of the UI.<\\/li>\\n<\\/ul>\\n<h4> 5.6.4 (2023\\/06\\/02) <\\/h4>\\n<ul>\\n<li>Fix: Removed a few warnings.<\\/li>\\n<li>Fix: The paging issue.<\\/li>\\n<\\/ul>\\n<h4> 5.6.3 (2023\\/05\\/30) <\\/h4>\\n<ul>\\n<li>Update: Trying to improve the UI based on your feedback. It might not please everyone, but I am trying to make it better. Please let me know if you have any idea.<\\/li>\\n<li>Fix: There were a few warning issues.<\\/li>\\n<li>Fix: There were some inconsistencies in the UI.<\\/li>\\n<\\/ul>\\n<h4> 5.6.2 (2023\\/05\\/13) <\\/h4>\\n<ul>\\n<li>Add: Some issues with spacing in some buttons.<\\/li>\\n<li>&#x1f3b5; I am struggling a bit to make the Dashboard UI nicer, if you have any idea, don\'t hesitate to let me know via the <a href=\\\"https:\\/\\/wordpress.org\\/support\\/plugin\\/media-file-renamer\\/\\\">Support Forums<\\/a>.<\\/li>\\n<\\/ul>\\n<h4> 5.6.1 (2023\\/05\\/06) <\\/h4>\\n<ul>\\n<li>Add: We can now edit the ALT Text.<\\/li>\\n<\\/ul>\\n<h4> 5.6.0 (2023\\/05\\/02) <\\/h4>\\n<ul>\\n<li>Add: \'Attached To\' column is now hideable.<\\/li>\\n<li>Add: \'ALT Text\' data now available if enabled in the options.<\\/li>\\n<li>Update: Minimized the size of the bundle.<\\/li>\\n<\\/ul>\\n<h4> 5.5.9 (2023\\/03\\/18) <\\/h4>\\n<ul>\\n<li>Fix: Various fixes in the UI.<\\/li>\\n<li>Update: Latest UI framework.<\\/li>\\n<\\/ul>\\n<h4> 5.5.8 (2023\\/03\\/13) <\\/h4>\\n<ul>\\n<li>Add: AI filename suggestions.<\\/li>\\n<li>Update: Added Unlocked instead of Pending (which was slowing-down the process and was not really useful). Let me know if you preferred it the other way.<\\/li>\\n<\\/ul>\\n<h4> 5.5.7 (2023\\/02\\/09) <\\/h4>\\n<ul>\\n<li>Add: New option to disable the Dashboard.<\\/li>\\n<li>Note: A bit late on the support, it\'s unusual, but very busy these days. I am also trying to gather the feedback\\/issues to fix them all at once in a good way. Thank you for your patience!<\\/li>\\n<\\/ul>\\n<h4> 5.5.5 (2023\\/02\\/01) <\\/h4>\\n<ul>\\n<li>Update: Clean the dashboard a bit, depending on the options.<\\/li>\\n<li>Fix: Issue in the Media Library with the Renamer field.<\\/li>\\n<li>Fix: The Edit Title modal wasn\'t working on ENTER.<\\/li>\\n<\\/ul>\\n<h4> 5.5.4 (2023\\/01\\/29) <\\/h4>\\n<ul>\\n<li>Fix: Titting enter in the Edit Title modal wasn\'t update with the new title.<\\/li>\\n<\\/ul>\\n<h4> 5.5.3 (2023\\/01\\/27) <\\/h4>\\n<ul>\\n<li>Update: Better move features and cleaner UI.<\\/li>\\n<\\/ul>\\n<h4> 5.5.2 (2023\\/01\\/06) <\\/h4>\\n<ul>\\n<li>Update: Slowly (but surely) separating the Rename mode from the Move mode. I will make the UI better and more adapted to the chosen mode. You will find the switch in the Renamer Dashboard.<\\/li>\\n<\\/ul>\\n<h4> 5.5.1 (2022\\/12\\/24) <\\/h4>\\n<ul>\\n<li>Update: Enhanced the hooks (filters).<\\/li>\\n<\\/ul>\\n<h4> 5.5.0 (2022\\/11\\/12) <\\/h4>\\n<ul>\\n<li>Fix: Enhanced the behavior of the UI.\\n= 5.4.9 (2022\\/10\\/30) =<\\/li>\\n<li>Fix: The link to the Dashboard was broken.<\\/li>\\n<\\/ul>\\n<h4> 5.4.8 (2022\\/10\\/24) <\\/h4>\\n<ul>\\n<li>Fix: There was an issue with WP-CLI in the latest versions.<\\/li>\\n<\\/ul>\\n<h4> 5.4.7 (2022\\/10\\/12) <\\/h4>\\n<ul>\\n<li>Add: Consider WebP as an &quot;Image&quot; (which it is &#x1f60f;).<\\/li>\\n<li>Fix: The \'Featured Only\' and \'Images Only\' were not working perfectly.<\\/li>\\n<li>Update: Optimized the way options are updated and retrieved.<\\/li>\\n<li>Update: Some refactoring to simplify the code.<\\/li>\\n<\\/ul>\\n<h4> 5.4.5 (2022\\/09\\/27) <\\/h4>\\n<ul>\\n<li>Add: Auto-retry on failure, up to 10 times.<\\/li>\\n<li>Fix: Typos.<\\/li>\\n<\\/ul>\\n<h4> 5.4.3 (2022\\/08\\/11) <\\/h4>\\n<ul>\\n<li>Add: Handle errors gracefully (with retry, skip or cancel).<\\/li>\\n<\\/ul>\\n<h4> 5.4.1 (2022\\/08\\/03) <\\/h4>\\n<ul>\\n<li>Fix: Tiny UI bug in Safari.<\\/li>\\n<\\/ul>\\n<h4> 5.4.0 (2022\\/07\\/05) <\\/h4>\\n<ul>\\n<li>Add: Support for Elementor (update the metadata and CSS).<\\/li>\\n<li>Update: Use the default WordPress font (to avoid loading data from Google Fonts) and a few UI enhancements.<\\/li>\\n<\\/ul>\\n<h4> 5.3.9 (2022\\/06\\/16) <\\/h4>\\n<ul>\\n<li>Fix: The WebP files weren\'t not renamed perfectly.<\\/li>\\n<\\/ul>\\n<h4> 5.3.8 (2022\\/03\\/29) <\\/h4>\\n<ul>\\n<li>Fix: Support for WebP.<\\/li>\\n<li>Fix: Anonymize (MD5) on upload now works fine.<\\/li>\\n<li>Fix: Decode HTML entities (in the meta, title) when renaming is based on it.<\\/li>\\n<li>Update: I am trying to enhance the UI (the rename field and the actions) depending on the size of the browser. I\'ll try to make this better and better, but don\'t hesitate to give me some feedback.<\\/li>\\n<\\/ul>\\n<h4> 5.3.6 (2022\\/02\\/01) <\\/h4>\\n<ul>\\n<li>Update: Fresh build and support for WordPress 5.9.<\\/li>\\n<\\/ul>\\n<h4> 5.3.5 (2021\\/11\\/10) <\\/h4>\\n<ul>\\n<li>Fix: Renaming of WebP uploaded directly to WordPress.<\\/li>\\n<li>Add: The possibility of locking files automatically after a manual rename (which was always the case previously), and\\/or after a automatic rename (that was not possible previously). With this last option, users having trouble to &quot;Rename All&quot; will be given the choice to do it on any kind of server. You will find those options in the Advanced tab.<\\/li>\\n<li>Add: &quot;Delay&quot; option, to give a break and a reset to the server between asynchronous requests! Default to 100ms. That will avoid the server to time out, or to slow down on purpose.<\\/li>\\n<\\/ul>\\n<h4> 5.3.3 (2021\\/11\\/09) <\\/h4>\\n<ul>\\n<li>Fix: Avoid renaming when the URLs (before\\/after) are empty.<\\/li>\\n<li>Add: New option to update URLs in the excerpts (no need to use it for most users).<\\/li>\\n<li>Update: Avoid double call to the mfrh_url_renamed (seemed to be completely useless).<\\/li>\\n<li>Update: Added a new \'size\' argument to the mfrh_url_renamed action.<\\/li>\\n<li>Update: Optimized queries.<\\/li>\\n<li>Add: We can change the page (in the dashboard) by typing it.<\\/li>\\n<\\/ul>\\n<h4> 5.3.2 (2021\\/10\\/16) <\\/h4>\\n<ul>\\n<li>Add: AVIF support.<\\/li>\\n<li>Fix: Avoid the double renaming when different registered sizes actually use the same file.<\\/li>\\n<\\/ul>\\n<h4> 5.3.0 (2021\\/10\\/09) <\\/h4>\\n<ul>\\n<li>Add: Better Force Rename.<\\/li>\\n<li>Add: Featured Images Only option.<\\/li>\\n<li>Fix: Auto-attach feature wasn\'t working properly with Featured Image when attached to Product.<\\/li>\\n<\\/ul>\\n<h4> 5.2.9 (2021\\/09\\/23) <\\/h4>\\n<ul>\\n<li>Add: Manual Sanitize Option. If the option is checked, the rename feature uses the new_filename function. If not, use the filename user input as it is.<\\/li>\\n<\\/ul>\\n<h4> 5.2.8 (2021\\/09\\/07) <\\/h4>\\n<ul>\\n<li>Add: Option to clean the plugin data on uninstall.<\\/li>\\n<li>Add: Manual Rename now goes through the cleaning flow to make sure everything is clean and nice.<\\/li>\\n<\\/ul>\\n<h4> 5.2.7 (2021\\/09\\/03) <\\/h4>\\n<ul>\\n<li>Fix: Security update: access controls to the REST API and the options enforced.<\\/li>\\n<li>Updated: Dependencies update.<\\/li>\\n<\\/ul>\\n<h4> 5.2.5 (2021\\/08\\/25) <\\/h4>\\n<ul>\\n<li>Fix: Search feature was not always working well.<\\/li>\\n<li>Update: Better technical architecture.<\\/li>\\n<\\/ul>\\n<h4> 5.2.4 (2021\\/06\\/13) <\\/h4>\\n<ul>\\n<li>Add: Remember the number of entries per page (dashboard).<\\/li>\\n<li>Fix: Limit the length of the manual filename.<\\/li>\\n<\\/ul>\\n<h4> 5.2.3 (2021\\/05\\/29) <\\/h4>\\n<ul>\\n<li>Fix: The \'Move\' feature now also works with the original image (in case it has been scaled by WP).<\\/li>\\n<\\/ul>\\n<h4> 5.2.2 (2021\\/05\\/18) <\\/h4>\\n<ul>\\n<li>Fix: Better Windows support.<\\/li>\\n<\\/ul>\\n<h4> 5.2.0 (2021\\/05\\/15) <\\/h4>\\n<ul>\\n<li>Add: Move button (this was mainly added for tests, so it\'s a beta feature, it will be perfected over time).<\\/li>\\n<li>Add: Images Only option.<\\/li>\\n<li>Fix: Vulnerability report, a standard user access could potentially modify a media title with custom requests.<\\/li>\\n<\\/ul>\\n<h4> 5.1.9 (2021\\/04\\/09) <\\/h4>\\n<ul>\\n<li>Fix: The Synchronize Alt option wasn\'t working logically.<\\/li>\\n<\\/ul>\\n<h4> 5.1.8 (2021\\/03\\/04) <\\/h4>\\n<ul>\\n<li>Add: Search.<\\/li>\\n<li>Add: Quick rename the title from the dashboard.<\\/li>\\n<\\/ul>\\n<h4> 5.1.7 (2021\\/02\\/21) <\\/h4>\\n<ul>\\n<li>Fix: The Synchronize Media Title option wasn\'t working logically.<\\/li>\\n<\\/ul>\\n<h4> 5.1.6 (2021\\/02\\/12) <\\/h4>\\n<ul>\\n<li>Fix: References for moved files were not updated.<\\/li>\\n<li>Add: Sanitize filename after they have been through the mfrh_new_filename filter.<\\/li>\\n<\\/ul>\\n<h4> 5.1.3 (2021\\/02\\/06)  <\\/h4>\\n<ul>\\n<li>Add: Greek support.<\\/li>\\n<li>Fix: Better sensitive file check.<\\/li>\\n<li>Fix: Manual rename with WP CLI.<\\/li>\\n<\\/ul>\\n<h4> 5.1.2 (2021\\/01\\/10) <\\/h4>\\n<ul>\\n<li>Add: Auto attach feature.<\\/li>\\n<li>Add: Added Locked in the filters.<\\/li>\\n<li>Update: Icons position.<\\/li>\\n<\\/ul>\\n<h4> 5.1.1 (2021\\/01\\/05) <\\/h4>\\n<ul>\\n<li>Fix: Issue with roles overriding and WP-CLI.<\\/li>\\n<li>Fix: Issue with REST in the Common Dashboard.<\\/li>\\n<\\/ul>\\n<h4> 5.1.0 (2021\\/01\\/01) <\\/h4>\\n<ul>\\n<li>Add: Support overriding roles.<\\/li>\\n<li>Fix: The layout of the dashboard was broken by WPBakery.<\\/li>\\n<\\/ul>\"],\"plugin\":\"media-file-renamer-pro\\/media-file-renamer-pro.php\",\"id\":\"media-file-renamer-pro\\/media-file-renamer-pro.php\"}\";}','no'),(213507,'vgse_post_type_setup_done','1','yes'),(213512,'vgse_detected_fields_post_updated','1689625089','yes'),(215878,'wc_blocks_use_blockified_product_grid_block_as_template','no','yes'),(215879,'wc_blocks_version','11.8.0-dev','yes'),(215880,'jetpack_connection_active_plugins','a:1:{s:11:\"woocommerce\";a:1:{s:4:\"name\";s:11:\"WooCommerce\";}}','yes'),(215912,'jetpack_options','a:1:{s:14:\"last_heartbeat\";i:1705861802;}','yes'),(229898,'woocommerce_demo_store_notice','Dit is een demowinkel voor testdoeleinden - bestellingen worden niet gehonoreerd.','yes'),(230237,'loco_recent','a:4:{s:1:\"c\";s:21:\"Loco_data_RecentItems\";s:1:\"v\";i:0;s:1:\"d\";a:1:{s:6:\"bundle\";a:7:{s:43:\"plugin.contact-form-7/wp-contact-form-7.php\";i:1689976213;s:34:\"plugin.parcelpanel/parcelpanel.php\";i:1689986600;s:41:\"plugin.yith-woocommerce-wishlist/init.php\";i:1689987991;s:20:\"theme.flatsome-child\";i:1699670691;s:64:\"plugin.woocommerce-gateway-stripe/woocommerce-gateway-stripe.php\";i:1700336145;s:34:\"plugin.woocommerce/woocommerce.php\";i:1700336502;s:14:\"theme.flatsome\";i:1700345104;}}s:1:\"t\";i:1700345104;}','no'),(230553,'_transient_wc_count_comments','O:8:\"stdClass\":7:{s:14:\"total_comments\";i:0;s:3:\"all\";i:0;s:9:\"moderated\";i:0;s:8:\"approved\";i:0;s:4:\"spam\";i:0;s:5:\"trash\";i:0;s:12:\"post-trashed\";i:0;}','yes'),(230656,'_transient_dirsize_cache','a:3271:{s:66:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/upgrade\";i:0;s:76:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/languages/plugins\";i:11348489;s:80:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/languages/loco/themes\";i:47988;s:73:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/languages/loco\";i:47988;s:68:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/languages\";i:17147709;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/wpvivid_staging\";i:79;s:79:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/fonts/dancing-script\";i:50836;s:69:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/fonts/lato\";i:42528;s:64:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/fonts\";i:93364;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/wpvividbackups/wpvivid_log\";i:99824;s:73:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/wpvividbackups\";i:818901865;s:69:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/mu-plugins\";i:895;s:65:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/wflogs\";i:8074688;s:82:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/wpvivid_uploads/Isolate\";i:0;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/wpvivid_uploads\";i:0;s:58:\"/home/customer/www/se.teng-shop.com/public_html/wp-content\";i:844218628;s:72:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/image\";i:25224;s:78:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/query-title\";i:1393;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/post-featured-image\";i:25915;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/comments-pagination\";i:8453;s:76:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/separator\";i:5308;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/navigation-submenu\";i:5812;s:77:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/media-text\";i:13669;s:79:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/site-tagline\";i:1430;s:77:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/site-title\";i:2167;s:75:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/loginout\";i:510;s:71:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/more\";i:3698;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/post-navigation-link\";i:3059;s:79:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/comment-date\";i:1058;s:82:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/comment-content\";i:1369;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/comment-reply-link\";i:1001;s:72:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/audio\";i:3456;s:84:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/comment-edit-link\";i:1159;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/buttons\";i:11089;s:77:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/categories\";i:2105;s:76:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/tag-cloud\";i:3446;s:79:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/social-links\";i:51064;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/query-pagination-numbers\";i:1779;s:76:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/pullquote\";i:7653;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/comment-author-name\";i:1138;s:76:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/shortcode\";i:4781;s:76:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/post-date\";i:1293;s:75:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/nextpage\";i:2985;s:83:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/post-author-name\";i:1069;s:77:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/navigation\";i:138260;s:72:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/table\";i:28378;s:73:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/avatar\";i:1874;s:82:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/navigation-link\";i:11573;s:77:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/post-title\";i:1829;s:72:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/block\";i:5014;s:72:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/cover\";i:77248;s:79:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/preformatted\";i:1468;s:76:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/read-more\";i:2280;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/post-comments-form\";i:9484;s:83:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/term-description\";i:1017;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/heading\";i:2049;s:79:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/text-columns\";i:2980;s:78:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/social-link\";i:2250;s:72:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/group\";i:12943;s:72:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/verse\";i:1653;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/columns\";i:8535;s:80:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/legacy-widget\";i:501;s:72:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/video\";i:11417;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/pattern\";i:324;s:78:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/post-author\";i:2893;s:83:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/query-pagination\";i:9144;s:75:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/calendar\";i:3750;s:76:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/site-logo\";i:9535;s:71:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/html\";i:3584;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/comments-pagination-previous\";i:969;s:75:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/archives\";i:1585;s:71:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/code\";i:2426;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/gallery\";i:75476;s:72:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/query\";i:6813;s:79:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/post-content\";i:845;s:80:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/template-part\";i:8383;s:76:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/paragraph\";i:5127;s:76:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/page-list\";i:7792;s:76:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/list-item\";i:876;s:79:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/widget-group\";i:319;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/post-author-biography\";i:922;s:75:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/freeform\";i:38063;s:82:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/latest-comments\";i:4765;s:71:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/file\";i:9351;s:76:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/home-link\";i:1076;s:75:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/comments\";i:28862;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/comments-pagination-numbers\";i:1779;s:81:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/page-list-item\";i:1055;s:80:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/post-template\";i:5221;s:73:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/spacer\";i:4179;s:70:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/rss\";i:5023;s:79:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/post-excerpt\";i:2809;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/missing\";i:564;s:73:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/column\";i:1443;s:71:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/list\";i:1944;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/query-pagination-next\";i:939;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/comments-pagination-next\";i:957;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/query-pagination-previous\";i:951;s:83:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/query-no-results\";i:845;s:79:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/latest-posts\";i:11200;s:72:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/embed\";i:10994;s:73:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/search\";i:8701;s:81:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/comments-title\";i:1646;s:72:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/quote\";i:6200;s:73:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/button\";i:16094;s:83:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/comment-template\";i:2856;s:77:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks/post-terms\";i:1661;s:66:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/blocks\";i:1254376;s:63:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/ID3\";i:1155209;s:73:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/random_compat\";i:43330;s:76:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/Requests/library\";i:261;s:79:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/Requests/src/Cookie\";i:4174;s:81:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/Requests/src/Response\";i:3003;s:80:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/Requests/src/Utility\";i:6651;s:77:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/Requests/src/Auth\";i:2541;s:78:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/Requests/src/Proxy\";i:4217;s:82:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/Requests/src/Transport\";i:34845;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/Requests/src/Exception/Http\";i:16715;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/Requests/src/Exception/Transport\";i:1397;s:82:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/Requests/src/Exception\";i:22464;s:72:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/Requests/src\";i:211548;s:68:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/Requests\";i:211809;s:72:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/certificates\";i:233231;s:72:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/style-engine\";i:38240;s:66:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/assets\";i:22976;s:75:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/rest-api/fields\";i:22340;s:78:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/rest-api/endpoints\";i:737446;s:75:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/rest-api/search\";i:15909;s:68:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/rest-api\";i:862847;s:81:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/SimplePie/Decode/HTML\";i:17241;s:76:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/SimplePie/Decode\";i:17241;s:73:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/SimplePie/Net\";i:7493;s:75:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/SimplePie/Parse\";i:20551;s:82:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/SimplePie/Content/Type\";i:8015;s:77:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/SimplePie/Content\";i:8015;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/SimplePie/HTTP\";i:11487;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/SimplePie/XML/Declaration\";i:7098;s:73:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/SimplePie/XML\";i:7098;s:75:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/SimplePie/Cache\";i:39607;s:69:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/SimplePie\";i:458625;s:77:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sodium_compat/lib\";i:87301;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305\";i:112;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge\";i:602;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519\";i:820;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20\";i:224;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sodium_compat/namespaced/Core\";i:2444;s:84:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sodium_compat/namespaced\";i:2698;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sodium_compat/src/Core32/Poly1305\";i:15965;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sodium_compat/src/Core32/SecretStream\";i:3656;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sodium_compat/src/Core32/Curve25519/Ge\";i:8177;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sodium_compat/src/Core32/Curve25519\";i:122690;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sodium_compat/src/Core32/ChaCha20\";i:6407;s:84:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sodium_compat/src/Core32\";i:437041;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sodium_compat/src/Core/Poly1305\";i:12912;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sodium_compat/src/Core/SecretStream\";i:3624;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sodium_compat/src/Core/Curve25519/Ge\";i:7881;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sodium_compat/src/Core/Curve25519\";i:121645;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sodium_compat/src/Core/ChaCha20\";i:5264;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sodium_compat/src/Core/Base64\";i:22135;s:82:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sodium_compat/src/Core\";i:452743;s:83:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sodium_compat/src/PHP52\";i:4116;s:77:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sodium_compat/src\";i:1207254;s:73:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sodium_compat\";i:1303466;s:65:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/fonts\";i:289826;s:72:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/theme-compat\";i:15443;s:69:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/customize\";i:174759;s:63:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/IXR\";i:33915;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/block-supports\";i:96918;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/mediaelement/renderers\";i:18880;s:75:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/mediaelement\";i:721307;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/dist/vendor\";i:2546686;s:79:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/dist/development\";i:178306;s:67:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/dist\";i:17656960;s:71:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/thickbox\";i:31233;s:72:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/jquery/ui\";i:808535;s:69:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/jquery\";i:1334335;s:71:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/plupload\";i:489844;s:84:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/plugins/image\";i:55874;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/plugins/wplink\";i:26476;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/plugins/wpgallery\";i:4806;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/plugins/wpdialogs\";i:3761;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/plugins/compat3x/css\";i:8179;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/plugins/compat3x\";i:21758;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/plugins/tabfocus\";i:5336;s:84:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/plugins/media\";i:57914;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/plugins/textcolor\";i:16237;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/plugins/wordpress\";i:50628;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/plugins/charmap\";i:31811;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/plugins/fullscreen\";i:7779;s:81:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/plugins/hr\";i:1347;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/plugins/colorpicker\";i:4910;s:84:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/plugins/paste\";i:113193;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/plugins/wpemoji\";i:5099;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/plugins/wptextpattern\";i:11923;s:84:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/plugins/lists\";i:97383;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/plugins/wpautoresize\";i:8332;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/plugins/wpview\";i:8985;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/plugins/directionality\";i:2749;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/plugins/wpeditimage\";i:37711;s:83:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/plugins/link\";i:32949;s:78:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/plugins\";i:606961;s:76:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/utils\";i:18822;s:76:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/langs\";i:15529;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/skins/lightgray/fonts\";i:155760;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/skins/lightgray/img\";i:2856;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/skins/lightgray\";i:210254;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/skins/wordpress/images\";i:14207;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/skins/wordpress\";i:22831;s:76:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/skins\";i:233085;s:84:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/themes/modern\";i:446221;s:84:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/themes/inlite\";i:452642;s:77:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce/themes\";i:898863;s:70:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/tinymce\";i:2853651;s:67:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/crop\";i:20004;s:76:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/imgareaselect\";i:49549;s:73:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/codemirror\";i:1287141;s:72:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/swfupload\";i:8715;s:68:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js/jcrop\";i:24976;s:62:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/js\";i:26886648;s:64:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/pomo\";i:54177;s:70:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/php-compat\";i:1251;s:78:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sitemaps/providers\";i:16711;s:68:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/sitemaps\";i:46858;s:76:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/Text/Diff/Engine\";i:31662;s:78:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/Text/Diff/Renderer\";i:5535;s:69:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/Text/Diff\";i:44010;s:64:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/Text\";i:56929;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/images/smilies\";i:10082;s:72:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/images/media\";i:2419;s:70:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/images/wlw\";i:4413;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/images/crystal\";i:15541;s:66:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/images\";i:103747;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/css/dist/customize-widgets\";i:24658;s:82:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/css/dist/block-library\";i:734082;s:75:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/css/dist/editor\";i:75828;s:81:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/css/dist/edit-widgets\";i:106298;s:83:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/css/dist/format-library\";i:8166;s:84:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/css/dist/block-directory\";i:14924;s:79:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/css/dist/components\";i:348353;s:81:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/css/dist/block-editor\";i:569571;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/css/dist/list-reusable-blocks\";i:18974;s:84:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/css/dist/reusable-blocks\";i:2216;s:78:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/css/dist/edit-post\";i:204758;s:72:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/css/dist/nux\";i:11618;s:76:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/css/dist/widgets\";i:23682;s:78:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/css/dist/edit-site\";i:257772;s:68:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/css/dist\";i:2400900;s:63:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/css\";i:3048347;s:67:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/widgets\";i:157493;s:68:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/html-api\";i:77819;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/block-patterns\";i:8843;s:69:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes/PHPMailer\";i:228372;s:59:\"/home/customer/www/se.teng-shop.com/public_html/wp-includes\";i:43685913;s:64:\"/home/customer/www/se.teng-shop.com/public_html/wp-admin/network\";i:125036;s:65:\"/home/customer/www/se.teng-shop.com/public_html/wp-admin/includes\";i:2966244;s:67:\"/home/customer/www/se.teng-shop.com/public_html/wp-admin/js/widgets\";i:139376;s:59:\"/home/customer/www/se.teng-shop.com/public_html/wp-admin/js\";i:1908892;s:62:\"/home/customer/www/se.teng-shop.com/public_html/wp-admin/maint\";i:7597;s:61:\"/home/customer/www/se.teng-shop.com/public_html/wp-admin/user\";i:3418;s:63:\"/home/customer/www/se.teng-shop.com/public_html/wp-admin/images\";i:396786;s:77:\"/home/customer/www/se.teng-shop.com/public_html/wp-admin/css/colors/ectoplasm\";i:78534;s:73:\"/home/customer/www/se.teng-shop.com/public_html/wp-admin/css/colors/light\";i:79254;s:75:\"/home/customer/www/se.teng-shop.com/public_html/wp-admin/css/colors/sunrise\";i:79307;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-admin/css/colors/modern\";i:78247;s:73:\"/home/customer/www/se.teng-shop.com/public_html/wp-admin/css/colors/ocean\";i:76021;s:72:\"/home/customer/www/se.teng-shop.com/public_html/wp-admin/css/colors/blue\";i:78570;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-admin/css/colors/coffee\";i:76792;s:76:\"/home/customer/www/se.teng-shop.com/public_html/wp-admin/css/colors/midnight\";i:79386;s:67:\"/home/customer/www/se.teng-shop.com/public_html/wp-admin/css/colors\";i:649988;s:60:\"/home/customer/www/se.teng-shop.com/public_html/wp-admin/css\";i:2506753;s:56:\"/home/customer/www/se.teng-shop.com/public_html/wp-admin\";i:8829026;s:59:\"/home/customer/www/se.teng-shop.com/public_html/.well-known\";i:9114;s:47:\"/home/customer/www/se.teng-shop.com/public_html\";i:899768844;s:84:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/languages\";i:1889008;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/assets/js/extensions\";i:16052;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/assets/js/builder/custom\";i:458523;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/assets/js/builder/vendors\";i:331289;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/assets/js/builder/core\";i:302580;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/assets/js/builder\";i:1092392;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/assets/js/admin\";i:35926;s:84:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/assets/js\";i:1717418;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/assets/css/extensions\";i:10476;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/assets/css/builder/custom\";i:2398;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/assets/css/builder/core\";i:109147;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/assets/css/builder\";i:111545;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/assets/css/admin\";i:12978;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/assets/css/icons\";i:81079;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/assets/css\";i:558705;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/assets/img/dividers\";i:6750;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/assets/img/payment-icons\";i:395601;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/assets/img/effects\";i:33512;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/assets/img\";i:450787;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/assets/libs\";i:97990;s:81:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/assets\";i:2828672;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/extensions/flatsome-lazy-load\";i:7387;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/extensions/flatsome-variation-images/includes\";i:14388;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/extensions/flatsome-variation-images\";i:14627;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/extensions/flatsome-ajax-add-to-cart\";i:1392;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/extensions/flatsome-infinite-scroll/templates\";i:682;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/extensions/flatsome-infinite-scroll\";i:7797;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/extensions/flatsome-live-search\";i:24314;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/extensions/flatsome-shortcode-insert/min\";i:147696;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/extensions/flatsome-shortcode-insert\";i:324110;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/extensions/flatsome-cookie-notice\";i:2787;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/extensions/flatsome-swatches/includes\";i:47987;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/extensions/flatsome-swatches\";i:48203;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/extensions/flatsome-instant-page\";i:4092;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/extensions/flatsome-wc-quick-view\";i:1749;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/extensions/flatsome-cart-refresh\";i:1263;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/extensions\";i:439444;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/blocks/uxbuilder\";i:872;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/blocks\";i:872;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/core/assets/img/thumbnails\";i:656269;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/core/assets/img/shortcodes\";i:601479;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/core/assets/img/options\";i:3581;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/core/assets/img/icons\";i:54790;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/core/assets/img\";i:1318354;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/core/assets\";i:1318354;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/core/components\";i:198;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/core/shortcodes\";i:3380;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/core/server/filters\";i:10554;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/core/server/actions\";i:16658;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/core/server/templates\";i:10151;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/core/server/helpers\";i:26347;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/core/server/src/Transformers\";i:9461;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/core/server/src/Collections\";i:6846;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/core/server/src/Post\";i:5939;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/core/server/src/Services\";i:2940;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/core/server/src/Elements\";i:3062;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/core/server/src/Ajax\";i:18111;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/core/server/src/Options/Custom\";i:2647;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/core/server/src/Options\";i:12027;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/core/server/src\";i:61854;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/core/server\";i:127693;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/core\";i:1452604;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/shortcodes/values\";i:8654;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/sections\";i:64212;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/grids\";i:44370;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/banners\";i:57837;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails\";i:724611;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/shortcodes/templates\";i:27734;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/shortcodes/helpers\";i:1309;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/shortcodes/commons\";i:25471;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/shortcodes\";i:1004639;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/templates/thumbs\";i:610240;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/templates/content\";i:67566;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder/templates\";i:684785;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/builder\";i:3148333;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/integrations/wc-yith-ajax-navigation\";i:1022;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/integrations/wp-rocket\";i:1885;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/integrations/wc-extra-product-options\";i:1753;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/integrations/ninjaforms\";i:294;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/integrations/rank-math\";i:4101;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/integrations/sensei\";i:924;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/integrations/wc-bookings\";i:372;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/integrations/wc-bulk-variations\";i:415;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/integrations/wcml\";i:1276;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/integrations/wc-easy-booking\";i:372;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/integrations/contact-form-7\";i:1828;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/integrations/wc-product-designer\";i:186;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/integrations/wp-seopress\";i:2243;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/integrations/wc-advanced-product-labels\";i:192;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/integrations/all-in-one-seo\";i:1772;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/integrations/wc-composite-products\";i:1268;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/integrations/ubermenu\";i:1019;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/integrations/wc-yith-wishlist\";i:9104;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/integrations/wp-seo\";i:5107;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/integrations/wpml\";i:1009;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/integrations\";i:42079;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/advanced/front-end\";i:2323;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/advanced/assets/js/min\";i:30715;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/advanced/assets/js\";i:95603;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/advanced/assets/images\";i:18046;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/advanced/assets/css\";i:18267;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/advanced/assets\";i:131916;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/advanced/classes\";i:29325;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/advanced/functions\";i:45268;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/advanced\";i:210687;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/gutenberg/assets/js\";i:5799;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/gutenberg/assets/css\";i:279;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/gutenberg/assets\";i:6078;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/gutenberg\";i:10004;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/panel/sections\";i:18689;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/panel/img\";i:70821;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/panel\";i:101939;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/backend/menu\";i:12395;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/backend\";i:12395;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/classes\";i:43557;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/options/social\";i:10135;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/options/portfolio\";i:10494;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/options/global\";i:670;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/options/blog\";i:16520;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/options/footer\";i:14597;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/options/header/img\";i:365003;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/options/header\";i:471729;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/options/helpers\";i:5370;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/options/shop\";i:67697;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/options/styles\";i:19251;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/options/pages/meta\";i:7207;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/options/pages\";i:10767;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/options/layout\";i:4224;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/options/notifications\";i:3521;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/options\";i:635445;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/field\";i:50990;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/lib\";i:39660;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n\";i:44151;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js\";i:961039;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/css\";i:65600;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo\";i:1027618;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/wp-color-picker-alpha\";i:14545;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/fontawesome\";i:128232;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/assets/vendor\";i:1170395;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/assets/images\";i:15191;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/assets\";i:1185586;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/deprecated\";i:7364;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/modules/preset\";i:2301;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/modules/gutenberg\";i:5527;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/modules/custom-sections/panels\";i:1163;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/modules/custom-sections/sections\";i:3941;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/modules/custom-sections\";i:17018;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/modules/webfonts\";i:889681;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/modules/css-vars\";i:5910;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/modules/post-meta\";i:3239;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/modules/field-dependencies\";i:7681;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/modules/tooltips\";i:5248;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/modules/loading\";i:3740;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/modules/css/field\";i:9354;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/modules/css/property\";i:4830;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/modules/css\";i:40052;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/modules/selective-refresh\";i:2357;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src/modules/google\";i:8266;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src/modules\";i:17142;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src/core\";i:46510;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src\";i:64381;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit\";i:76886;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader\";i:78844;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/modules/postmessage\";i:11609;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/modules/icons\";i:3447;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/modules\";i:1076654;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/core\";i:99539;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/controls/php\";i:96670;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/controls/views\";i:10759;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/controls/js\";i:145937;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/controls/css\";i:24143;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki/controls\";i:278948;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/kirki\";i:2822037;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/envato_setup/content\";i:661255;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/envato_setup/importer\";i:73508;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/envato_setup/js\";i:31788;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/envato_setup/css\";i:12163;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/envato_setup/presets/logos\";i:10244;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/envato_setup/presets\";i:27416;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/envato_setup/child-theme\";i:118327;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/envato_setup\";i:1006382;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/customizer/js\";i:618;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/customizer/img\";i:778768;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin/customizer\";i:787955;s:84:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/admin\";i:5656849;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/post-types\";i:18490;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/classes\";i:230658;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/woocommerce\";i:85077;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/shortcodes/commons\";i:3269;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/shortcodes/ux_countdown\";i:9847;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/shortcodes\";i:233478;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/helpers\";i:31400;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/structure\";i:83618;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/widgets\";i:12730;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc/functions\";i:113345;s:78:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/inc\";i:10106593;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/woocommerce/notices\";i:3414;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/woocommerce/global\";i:8970;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/woocommerce/single-product/tabs\";i:6184;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/woocommerce/single-product/headers\";i:2216;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/woocommerce/single-product/layouts\";i:19597;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/woocommerce/single-product\";i:71659;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/woocommerce/checkout/layouts\";i:3497;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/woocommerce/checkout\";i:21082;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/woocommerce/cart\";i:17445;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/woocommerce/myaccount\";i:25604;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/woocommerce/loop\";i:7586;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/woocommerce/layouts/headers\";i:2250;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/woocommerce/layouts\";i:12786;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/woocommerce\";i:202622;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/template-parts/portfolio\";i:14271;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/template-parts/admin/envato\";i:8223;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/template-parts/admin\";i:8223;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/template-parts/footer\";i:3948;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/template-parts/header/partials\";i:39149;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/template-parts/header\";i:46959;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/template-parts/overlays\";i:2862;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/template-parts/shortcodes\";i:262;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/template-parts/pages\";i:5268;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/template-parts/posts/partials\";i:10121;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/template-parts/posts/loop\";i:1292;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/template-parts/posts\";i:26655;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome/template-parts\";i:108448;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome\";i:15439133;s:80:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes/flatsome-child\";i:1489213;s:65:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/themes\";i:16928374;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/admin/tmpl\";i:2273;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/admin/views\";i:28341;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/admin/config\";i:5118;s:80:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/admin\";i:237906;s:78:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/inc\";i:123555;s:77:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/js\";i:28769;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-edd-integration/src\";i:16069;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-edd-integration\";i:16421;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-block-permissions/resources/scss\";i:396;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-block-permissions/resources/js/editor/notices\";i:706;s:136:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-block-permissions/resources/js/editor/controls\";i:11003;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-block-permissions/resources/js/editor/styles\";i:432;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-block-permissions/resources/js/editor\";i:21671;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-block-permissions/resources/js\";i:22369;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-block-permissions/resources/lang\";i:2381;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-block-permissions/resources\";i:25146;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-block-permissions/src\";i:16081;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-block-permissions/public/js\";i:40677;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-block-permissions/public/css\";i:693;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-block-permissions/public\";i:41563;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-block-permissions\";i:86314;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-meta-box-integration/src\";i:8109;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-meta-box-integration\";i:8943;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-role-hierarchy/admin\";i:8437;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-role-hierarchy/inc\";i:9355;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-role-hierarchy\";i:82394;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-givewp-integration/src\";i:11965;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-givewp-integration\";i:12328;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-acf-integration/src\";i:14645;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-acf-integration\";i:15483;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-woocommerce-integration/src\";i:13660;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-woocommerce-integration\";i:14028;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-admin-access/bootstrap\";i:988;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-admin-access/resources/build\";i:424;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-admin-access/resources\";i:424;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-admin-access/app\";i:11995;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-admin-access/config\";i:1063;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-admin-access\";i:34999;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-role-levels/admin\";i:11516;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-role-levels\";i:161561;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-core-create-caps\";i:22994;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-privacy-caps/resources/build\";i:424;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-privacy-caps/resources\";i:424;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-privacy-caps\";i:23340;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-category-and-tag-caps/src\";i:4058;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons/members-category-and-tag-caps\";i:5991;s:81:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/addons\";i:484796;s:78:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/css\";i:38425;s:79:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/lang\";i:68319;s:84:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/templates\";i:452;s:78:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members/img\";i:469371;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/members\";i:1516445;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/languages\";i:369105;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/mailoptin/mailchimp-api-php/src/http\";i:5505;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/mailoptin/mailchimp-api-php/src\";i:106704;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/mailoptin/mailchimp-api-php\";i:106704;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/mailoptin/authifly/src/Data\";i:4511;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/mailoptin/authifly/src/Adapter\";i:49964;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/mailoptin/authifly/src/HttpClient\";i:22168;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/mailoptin/authifly/src/Thirdparty/OAuth\";i:18911;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/mailoptin/authifly/src/Thirdparty\";i:18911;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/mailoptin/authifly/src/Logger\";i:5626;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/mailoptin/authifly/src/Storage\";i:3531;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/mailoptin/authifly/src/Exception\";i:9075;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/mailoptin/authifly/src\";i:119682;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/mailoptin/authifly\";i:261213;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/mailoptin\";i:367917;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/soundasleep/html2text/src\";i:11087;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/soundasleep/html2text\";i:25109;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/soundasleep\";i:25109;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/drewm/drip/scripts\";i:94;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/drewm/drip/src\";i:10126;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/drewm/drip\";i:11301;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/drewm\";i:11301;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/composer/installers/.github/workflows\";i:4035;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/composer/installers/.github\";i:4035;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/composer/installers/src/Composer/Installers\";i:77612;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/composer/installers/src/Composer\";i:77612;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/composer/installers/src\";i:78080;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/composer/installers\";i:83390;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/composer\";i:471801;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/deliciousbrains/wp-background-processing/bin\";i:6004;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/deliciousbrains/wp-background-processing/.circleci\";i:1950;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/deliciousbrains/wp-background-processing/classes\";i:19381;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/deliciousbrains/wp-background-processing\";i:46402;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/deliciousbrains\";i:46402;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/collizo4sky/persist-admin-notices-dismissal\";i:5829;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/collizo4sky\";i:5829;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/bin\";i:3333;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/barryvdh/composer-cleanup-plugin/src\";i:12803;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/barryvdh/composer-cleanup-plugin\";i:12803;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/barryvdh\";i:12803;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/translation-contracts/Test\";i:15927;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/translation-contracts\";i:30650;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/css-selector/Parser/Shortcut\";i:5802;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/css-selector/Parser/Handler\";i:10164;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/css-selector/Parser/Tokenizer\";i:6588;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/css-selector/Parser\";i:42755;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/css-selector/Node\";i:17182;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/css-selector/Exception\";i:4181;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/css-selector/XPath/Extension\";i:29007;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/css-selector/XPath\";i:39841;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/css-selector\";i:107180;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/deprecation-contracts\";i:4309;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/polyfill-php80/Resources/stubs\";i:2168;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/polyfill-php80/Resources\";i:2168;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/polyfill-php80\";i:10522;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/polyfill-mbstring/Resources/unidata\";i:55556;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/polyfill-mbstring/Resources\";i:56387;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/polyfill-mbstring\";i:92924;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/translation/Dumper\";i:29419;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/translation/DataCollector\";i:4475;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/translation/Formatter\";i:5405;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/translation/Catalogue\";i:13502;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/translation/Writer\";i:3072;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/translation/Provider\";i:12235;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/translation/Loader\";i:36743;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/translation/Extractor\";i:17889;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/translation/Reader\";i:2427;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/translation/Resources/data\";i:3187;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/translation/Resources/bin\";i:8879;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/translation/Resources/schemas\";i:129021;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/translation/Resources\";i:141649;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/translation/Util\";i:9434;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/translation/Command\";i:28313;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/translation/DependencyInjection\";i:12562;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/translation/Exception\";i:7711;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony/translation\";i:379773;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/symfony\";i:625358;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/nesbot/carbon/bin\";i:484;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/nesbot/carbon/lazy/Carbon/PHPStan\";i:4454;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/nesbot/carbon/lazy/Carbon/MessageFormatter\";i:1906;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/nesbot/carbon/lazy/Carbon\";i:8875;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/nesbot/carbon/lazy\";i:8875;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/nesbot/carbon/src/Carbon/Lang\";i:954282;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/nesbot/carbon/src/Carbon/Cli\";i:934;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/nesbot/carbon/src/Carbon/Laravel\";i:3215;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/nesbot/carbon/src/Carbon/Traits\";i:439686;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/nesbot/carbon/src/Carbon/Doctrine\";i:6608;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/nesbot/carbon/src/Carbon/PHPStan\";i:12577;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/nesbot/carbon/src/Carbon/Exceptions\";i:22223;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/nesbot/carbon/src/Carbon/List\";i:36772;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/nesbot/carbon/src/Carbon/MessageFormatter\";i:1247;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/nesbot/carbon/src/Carbon\";i:2249489;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/nesbot/carbon/src\";i:2249489;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/nesbot/carbon\";i:2265119;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/nesbot\";i:2265119;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/sabberworm/php-css-parser/src/CSSList\";i:29203;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/sabberworm/php-css-parser/src/Property\";i:12540;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/sabberworm/php-css-parser/src/Parsing\";i:16119;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/sabberworm/php-css-parser/src/Value\";i:33050;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/sabberworm/php-css-parser/src/Rule\";i:10160;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/sabberworm/php-css-parser/src/RuleSet\";i:41962;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/sabberworm/php-css-parser/src/Comment\";i:1617;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/sabberworm/php-css-parser/src\";i:161410;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/sabberworm/php-css-parser\";i:194371;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/sabberworm\";i:194371;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/pelago/emogrifier/src/Caching\";i:2073;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/pelago/emogrifier/src/Utilities\";i:8638;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/pelago/emogrifier/src/Css\";i:8803;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/pelago/emogrifier/src/HtmlProcessor\";i:30875;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/pelago/emogrifier/src\";i:93292;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/pelago/emogrifier\";i:94360;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/pelago\";i:94360;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/league/csv/src/Polyfill\";i:7018;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/league/csv/src\";i:102152;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/league/csv\";i:103607;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor/league\";i:103607;s:83:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/vendor\";i:4227737;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/bin\";i:3889;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/tests/Triggers\";i:1025;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/tests/Connections\";i:747;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/tests/Repositories\";i:5034;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/tests\";i:8022;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/RegisterActivation\";i:5717;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/Admin/SettingsPage\";i:202859;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/Admin/Customizer/OptinForm\";i:184146;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/Admin/Customizer/CustomControls/EmailContentBuilder/Elements\";i:28364;s:141:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/Admin/Customizer/CustomControls/EmailContentBuilder\";i:46597;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/Admin/Customizer/CustomControls\";i:590226;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/Admin/Customizer/EmailCampaign\";i:185078;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/Admin/Customizer\";i:978552;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/Admin/Installer\";i:25416;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/Admin\";i:1253016;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/EmailCampaigns/NewPublishPost/Templates\";i:13896;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/EmailCampaigns/NewPublishPost\";i:29478;s:131:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/EmailCampaigns/PostsEmailDigest/Templates\";i:14526;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/EmailCampaigns/PostsEmailDigest\";i:29963;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/EmailCampaigns/Newsletter/Templates\";i:26858;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/EmailCampaigns/Newsletter\";i:36905;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/EmailCampaigns\";i:148879;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/js/admin\";i:52536;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/js/customizer-controls/select2\";i:85817;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/js/customizer-controls/toggle-control\";i:5731;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/js/customizer-controls/tab-toggle\";i:2048;s:136:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/js/customizer-controls/datetime-control\";i:223817;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/js/customizer-controls/tagit\";i:15251;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/js/customizer-controls/buttonset-control\";i:1089;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/js/customizer-controls/tinymce-expanded-editor\";i:2503;s:139:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/js/customizer-controls/integration-control\";i:25964;s:141:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/js/customizer-controls/email-content-control\";i:38602;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/js/customizer-controls/fields-control\";i:22546;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/js/customizer-controls/font-size-control\";i:2587;s:139:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/js/customizer-controls/range-value-control\";i:3337;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/js/customizer-controls/ace-editor\";i:1663267;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/js/customizer-controls\";i:2177956;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/js/src\";i:176314;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/js\";i:2491511;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/sound\";i:555896;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/images/email-templates\";i:168869;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/images/optin-themes/liatris\";i:127463;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/images/optin-themes/scilla\";i:23755;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/images/optin-themes/hosta\";i:495125;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/images/optin-themes/quince\";i:138460;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/images/optin-themes/bannino\";i:721566;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/images/optin-themes/alyssum\";i:53043;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/images/optin-themes\";i:2475555;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/images/email-builder-elements\";i:5510;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/images\";i:3273472;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/css/admin\";i:54308;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/css\";i:106447;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/fancybox\";i:81053;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/chosen\";i:40617;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/tooltipster\";i:50559;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets/toastr\";i:12582;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/assets\";i:6612137;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/Connections\";i:29259;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/Repositories\";i:88797;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/Functions\";i:104039;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/OptinForms/Sidebar\";i:43920;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/OptinForms/Lightbox\";i:34611;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/OptinForms/Inpost\";i:59077;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/OptinForms\";i:294600;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/PluginSettings\";i:3596;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src/Logging\";i:6656;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core/src\";i:8635851;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/core\";i:8742808;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/ConvertKitConnect\";i:28195;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/EasyDigitalDownloadsConnect/assets\";i:3549;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/EasyDigitalDownloadsConnect\";i:76283;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/NewsmanConnect\";i:18288;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/LeadBankConnect\";i:6034;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/HubspotConnect\";i:25494;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/FacebookCustomAudienceConnect\";i:21841;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/RCPConnect/assets\";i:1417;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/RCPConnect\";i:52128;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/VerticalResponseConnect\";i:20569;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/NinjaFormsConnect/Integrations\";i:341280;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/NinjaFormsConnect\";i:354806;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/GiveWPConnect/assets\";i:3430;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/GiveWPConnect\";i:62683;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/SalesforceConnect\";i:22736;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/ZohoCampaignsConnect\";i:27663;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/ForminatorFormConnect\";i:78210;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/LearnDashConnect/assets\";i:4786;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/LearnDashConnect\";i:77681;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/FormidableFormConnect\";i:16548;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/WPFormsConnect\";i:23914;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/SendinblueConnect\";i:32446;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/ContactForm7Connect\";i:19547;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/LifterLMSConnect/assets\";i:3177;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/LifterLMSConnect\";i:64755;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/WeMailConnect\";i:14409;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/OmnisendConnect\";i:14816;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/MailsterConnect\";i:9452;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/AweberConnect\";i:21510;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/CleverReachConnect\";i:28871;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/MicrosoftDynamic365Connect\";i:25828;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/OntraportConnect\";i:20450;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/PmProConnect/assets\";i:1457;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/PmProConnect\";i:53904;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/MailPoetConnect\";i:10605;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/KlaviyoConnect\";i:23259;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/GetResponseConnect\";i:33998;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/EmmaConnect\";i:20382;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/MailerliteConnect/APIClass/Api\";i:7755;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/MailerliteConnect/APIClass/Exceptions\";i:132;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/MailerliteConnect/APIClass/Common\";i:10485;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/MailerliteConnect/APIClass\";i:20731;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/MailerliteConnect\";i:37698;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/ConvertFoxConnect\";i:16210;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/UserRegistrationOptinConnect/assets\";i:1825;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/UserRegistrationOptinConnect\";i:23528;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/CampaignMonitorConnect\";i:24841;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/SendlaneConnect\";i:17849;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/ActiveCampaignConnect/APIClass/includes/exceptions\";i:706;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/ActiveCampaignConnect/APIClass/includes\";i:53977;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/ActiveCampaignConnect/APIClass\";i:55058;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/ActiveCampaignConnect\";i:80157;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/WooSubscriptionsConnect\";i:20334;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/SendFoxConnect\";i:12128;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/SendyConnect\";i:26103;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/InfusionsoftConnect\";i:39060;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/ElementorConnect/assets\";i:5348;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/ElementorConnect\";i:23808;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/MemberPressConnect/assets\";i:7092;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/MemberPressConnect\";i:83672;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/RegisteredUsersConnect\";i:16263;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/Mailerlitev2Connect\";i:17777;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/BenchmarkEmailConnect\";i:13641;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/MoosendConnect/assets\";i:2216;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/MoosendConnect\";i:29459;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/WebHookConnect/assets\";i:7934;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/WebHookConnect\";i:25114;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/EmailOctopusConnect\";i:16849;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/FluentCRMConnect\";i:10171;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/Ctctv3Connect\";i:33970;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/MailChimpConnect/assets\";i:9459;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/MailChimpConnect\";i:71697;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/MailjetConnect\";i:40746;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/GEMConnect\";i:15437;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/WooMembershipConnect\";i:21830;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/WooCommerceConnect/assets\";i:6928;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/WooCommerceConnect\";i:104222;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/WordPressUserRegistrationConnect\";i:8615;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/GravityFormsConnect\";i:21704;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/ZohoCRMConnect\";i:27905;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/SendGridConnect\";i:23092;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/CtctConnect\";i:17461;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/DripConnect\";i:20475;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/CommentOptinConnect/assets\";i:1626;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections/CommentOptinConnect\";i:22726;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src/connections\";i:2285018;s:80:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin/src\";i:11027826;s:76:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/mailoptin\";i:15690866;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/assets/fonts\";i:0;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/assets/js/amcharts\";i:0;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/assets/js\";i:54091;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/assets/images\";i:556299;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/assets/css/fonts\";i:0;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/assets/css/icons\";i:0;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/assets/css\";i:59033;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/assets/shipment-provider-img\";i:0;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/assets\";i:669583;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/includes/api/v3\";i:0;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/includes/api/v1\";i:0;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/includes/api\";i:16566;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/includes/vendor/persist-admin-notices-dismissal\";i:0;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/includes/vendor\";i:0;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/includes/views/front\";i:0;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/includes/views\";i:46696;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/includes/emails\";i:11674;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/includes/customizer/preview\";i:0;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/includes/customizer/assets\";i:31649;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/includes/customizer\";i:76837;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/includes\";i:362820;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/lang\";i:901847;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/templates/email/plain\";i:0;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/templates/email\";i:0;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/templates/tracking\";i:0;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/templates/myaccount\";i:7113;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/templates/pip\";i:0;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/templates/emails/plain\";i:1599;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/templates/emails\";i:19420;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking/templates\";i:26533;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-advanced-shipment-tracking\";i:2000669;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/languages\";i:1265102;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/assets/fonts\";i:4959076;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/assets/js/pdf_js\";i:1353430;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/assets/js\";i:1426845;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/assets/images\";i:44926;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/assets/css\";i:69785;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/assets\";i:6500632;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/includes/legacy\";i:16469;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/includes/views/setup-wizard\";i:10926;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/includes/views\";i:48010;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/includes/compatibility\";i:12127;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/includes/documents\";i:130737;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/includes\";i:495221;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/composer\";i:58038;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/bin\";i:0;s:153:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/symfony/polyfill-iconv/Resources/charset\";i:1520367;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/symfony/polyfill-iconv/Resources\";i:1520367;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/symfony/polyfill-iconv\";i:1548538;s:156:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/symfony/polyfill-mbstring/Resources/unidata\";i:55556;s:148:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/symfony/polyfill-mbstring/Resources\";i:55556;s:138:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/symfony/polyfill-mbstring\";i:92412;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/symfony\";i:1640950;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/dompdf/dompdf/lib/res\";i:8633;s:136:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/dompdf/dompdf/lib/fonts\";i:7796880;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/dompdf/dompdf/lib\";i:8026629;s:136:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/dompdf/dompdf/src/Image\";i:10467;s:138:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/dompdf/dompdf/src/Adapter\";i:95711;s:141:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/dompdf/dompdf/src/Positioner\";i:15054;s:136:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/dompdf/dompdf/src/Frame\";i:20750;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/dompdf/dompdf/src/FrameDecorator\";i:87910;s:144:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/dompdf/dompdf/src/FrameReflower\";i:126125;s:139:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/dompdf/dompdf/src/Renderer\";i:70798;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/dompdf/dompdf/src/Css\";i:205073;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/dompdf/dompdf/src/Exception\";i:571;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/dompdf/dompdf/src\";i:858170;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/dompdf/dompdf\";i:8917294;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/dompdf\";i:8917294;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/phenx/php-svg-lib/src/Svg/Gradient\";i:312;s:142:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/phenx/php-svg-lib/src/Svg/Tag\";i:45370;s:146:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/phenx/php-svg-lib/src/Svg/Surface\";i:245448;s:138:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/phenx/php-svg-lib/src/Svg\";i:323069;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/phenx/php-svg-lib/src\";i:323069;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/phenx/php-svg-lib\";i:331670;s:136:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/phenx/php-font-lib/maps\";i:103891;s:148:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/phenx/php-font-lib/src/FontLib/WOFF\";i:3649;s:152:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/phenx/php-font-lib/src/FontLib/TrueType\";i:14960;s:152:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/phenx/php-font-lib/src/FontLib/OpenType\";i:831;s:149:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/phenx/php-font-lib/src/FontLib/Glyph\";i:18151;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/phenx/php-font-lib/src/FontLib/EOT\";i:6671;s:153:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/phenx/php-font-lib/src/FontLib/Exception\";i:202;s:154:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/phenx/php-font-lib/src/FontLib/Table/Type\";i:32196;s:149:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/phenx/php-font-lib/src/FontLib/Table\";i:36541;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/phenx/php-font-lib/src/FontLib\";i:101241;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/phenx/php-font-lib/src\";i:101241;s:131:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/phenx/php-font-lib\";i:231152;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/phenx\";i:562822;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/sabberworm/php-css-parser/src/CSSList\";i:29203;s:151:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/sabberworm/php-css-parser/src/Property\";i:12540;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/sabberworm/php-css-parser/src/Parsing\";i:16119;s:148:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/sabberworm/php-css-parser/src/Value\";i:33050;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/sabberworm/php-css-parser/src/Rule\";i:10160;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/sabberworm/php-css-parser/src/RuleSet\";i:41962;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/sabberworm/php-css-parser/src/Comment\";i:1617;s:142:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/sabberworm/php-css-parser/src\";i:161410;s:138:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/sabberworm/php-css-parser\";i:191843;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/sabberworm\";i:191843;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/masterminds/html5/bin\";i:638;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/masterminds/html5/src/HTML5/Parser\";i:101565;s:151:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/masterminds/html5/src/HTML5/Serializer\";i:68755;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/masterminds/html5/src/HTML5\";i:252957;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/masterminds/html5/src\";i:261503;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/masterminds/html5\";i:281192;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor/masterminds\";i:281192;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/vendor\";i:11652910;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/templates/Simple\";i:18996;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/templates\";i:18996;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips\";i:20066057;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/lib/migrations\";i:41990;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/lib/dependency-injection\";i:2133;s:84:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/lib\";i:140664;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/exceptions\";i:1090;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/formatter\";i:30875;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/metabox\";i:65929;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/filters\";i:9133;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/capabilities\";i:15766;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/roles\";i:8133;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/watchers\";i:6993;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/views/form\";i:1101;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/views/tabs/network\";i:11886;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/views/tabs/dashboard\";i:2105;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/views/tabs/tool\";i:7897;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/views/tabs\";i:21888;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/views\";i:104019;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/ajax\";i:6927;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/statistics\";i:7966;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/notifiers\";i:3612;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/import/plugins\";i:59928;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/import\";i:67852;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/services\";i:2475;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/taxonomy\";i:39298;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/tracking\";i:24743;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/google_search_console/views\";i:3369;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/google_search_console\";i:3804;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/menu\";i:26149;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/endpoints\";i:3824;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/pages\";i:5812;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin/listeners\";i:304;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/admin\";i:807747;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor/composer\";i:315156;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor\";i:315334;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/inc/exceptions\";i:402;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/inc/sitemaps\";i:100911;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/inc/options\";i:141394;s:84:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/inc\";i:538139;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/js/dist/languages\";i:2020377;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/js/dist/externals\";i:1687896;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/js/dist\";i:6462926;s:83:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/js\";i:6462926;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/images/support\";i:44545;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/images/academy\";i:107992;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/images\";i:636050;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/css/dist\";i:1538313;s:84:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/css\";i:1542484;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/initializers\";i:13710;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/exceptions/addon-installation\";i:948;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/exceptions/importing\";i:427;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/exceptions/indexable\";i:6623;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/exceptions/oauth/tokens\";i:1336;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/exceptions/oauth\";i:2072;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/exceptions\";i:11945;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/wrappers\";i:3034;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/integrations/blocks\";i:15756;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/integrations/front-end\";i:68525;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/integrations/alerts\";i:1848;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/integrations/admin/addon-installation\";i:9540;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/integrations/admin\";i:151975;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/integrations/watchers\";i:102785;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/integrations/third-party\";i:76576;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/integrations\";i:492088;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/actions/addon-installation\";i:6340;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/actions/configuration\";i:7205;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/actions/indexing\";i:37527;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/actions/importing/aioseo\";i:66597;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/actions/importing\";i:79459;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/actions/semrush\";i:4581;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/actions/indexables\";i:3855;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/actions/wincher\";i:13341;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/actions\";i:159071;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/wordpress\";i:1474;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/builders\";i:90322;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/values/robots\";i:4147;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/values/indexables\";i:1407;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/values/open-graph\";i:1157;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/values/oauth\";i:3219;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/values\";i:12762;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/memoizers\";i:7531;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/loggers\";i:1094;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/routes\";i:62364;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/content-type-visibility/user-interface\";i:4297;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/content-type-visibility/application\";i:10197;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/content-type-visibility\";i:14494;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/commands\";i:15846;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated/admin/ryte\";i:10188;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated/admin/views\";i:5886;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated/admin\";i:17526;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated/frontend\";i:10945;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated/i18n\";i:2125;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated/src/integrations/admin\";i:28846;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated/src/integrations/third-party\";i:6082;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated/src/integrations\";i:37863;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated/src/actions/configuration\";i:294;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated/src/actions\";i:18296;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated/src/routes\";i:26758;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated/src/schema-templates/assets\";i:13332;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated/src/schema-templates\";i:13332;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated/src/conditionals/third-party\";i:1176;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated/src/conditionals\";i:3723;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated/src/services/health-check\";i:11969;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated/src/services\";i:11969;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated/src/generators/schema/third-party\";i:3107;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated/src/generators/schema\";i:3107;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated/src/generators\";i:3107;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated/src/presenters/admin\";i:793;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated/src/presenters\";i:793;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated/src/helpers\";i:6751;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated/src\";i:122592;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/deprecated\";i:153226;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/conditionals/admin\";i:5299;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/conditionals/third-party\";i:7272;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/conditionals/traits\";i:475;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/conditionals\";i:38670;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/surfaces/values\";i:12180;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/surfaces\";i:37243;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/services/health-check\";i:31349;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/services/importing/aioseo\";i:11468;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/services/importing\";i:17251;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/services/indexables\";i:2336;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/services\";i:50936;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/generators/schema\";i:44607;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/generators\";i:85240;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/presenters/webmaster\";i:2983;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/presenters/twitter\";i:5950;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/presenters/admin\";i:41770;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/presenters/debug\";i:2443;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/presenters/slack\";i:2142;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/presenters/open-graph\";i:12949;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/presenters\";i:96299;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/helpers/twitter\";i:1152;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/helpers/open-graph\";i:5565;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/helpers/schema\";i:14124;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/helpers\";i:193405;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/models\";i:9007;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/presentations\";i:53051;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/generated/assets\";i:19138;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/generated\";i:527800;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/context\";i:18238;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/config/migrations\";i:35564;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/config\";i:81006;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/repositories\";i:51348;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/analytics/user-interface\";i:1602;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/analytics/application\";i:6461;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/analytics/domain\";i:4482;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src/analytics\";i:12545;s:84:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/src\";i:2303573;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/packages/js/images\";i:206388;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/packages/js\";i:206388;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/packages\";i:206388;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Cookie\";i:27884;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Handler\";i:59034;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Exception\";i:9195;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src\";i:198714;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle\";i:198714;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src\";i:60156;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises\";i:60156;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src\";i:172782;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7\";i:172782;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp\";i:431652;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Argument\";i:907;s:138:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/ParameterBag\";i:18515;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Exception\";i:7089;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection\";i:50999;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony\";i:50999;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/wordproof/wordpress-sdk/build\";i:26236;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/wordproof/wordpress-sdk/app/Support\";i:15719;s:144:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/wordproof/wordpress-sdk/app/DataTransferObjects\";i:748;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/wordproof/wordpress-sdk/app/Helpers\";i:36467;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/wordproof/wordpress-sdk/app/Translations\";i:2497;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/wordproof/wordpress-sdk/app/Exceptions\";i:124;s:136:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/wordproof/wordpress-sdk/app/Controllers\";i:30850;s:131:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/wordproof/wordpress-sdk/app/Config\";i:6011;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/wordproof/wordpress-sdk/app\";i:100510;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/wordproof/wordpress-sdk\";i:126746;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/wordproof\";i:126746;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log\";i:11844;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr\";i:11844;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log\";i:11844;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-message/src\";i:46661;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-message\";i:46661;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/container/src\";i:1680;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/container\";i:1680;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/psr\";i:60185;s:136:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/OptionProvider\";i:3990;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Tool\";i:15110;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Token\";i:8698;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Provider/Exception\";i:1225;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Provider\";i:33740;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Grant/Exception\";i:804;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Grant\";i:10346;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src\";i:71884;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client\";i:71884;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed/league\";i:71884;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo/vendor_prefixed\";i:741466;s:80:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordpress-seo\";i:13767619;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/languages\";i:23135;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/resources/data-templates\";i:513240;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/resources/views\";i:71788;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/resources\";i:585028;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/app/includes\";i:168276;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/app/backwards/themes/default/bootstrap/js\";i:37045;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/app/backwards/themes/default/bootstrap/css\";i:121865;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/app/backwards/themes/default/bootstrap\";i:158910;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/app/backwards/themes/default/images\";i:835;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/app/backwards/themes/default\";i:163775;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/app/backwards/themes\";i:163775;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/app/backwards\";i:212005;s:82:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/app\";i:865373;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/public/svg/logos\";i:157510;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/public/svg\";i:197481;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/public/fontawesome/webfonts\";i:2929598;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/public/fontawesome/css\";i:59305;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/public/fontawesome\";i:2988903;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/public/js\";i:857831;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/public/lite/vue-backend/js\";i:3390687;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/public/lite/vue-backend/css\";i:39483;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/public/lite/vue-backend/img\";i:8476;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/public/lite/vue-backend\";i:3441296;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/public/lite\";i:3441296;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/public/css/photoswipe/default-skin\";i:14574;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/public/css/photoswipe\";i:19641;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/public/css\";i:2196472;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/public/img/bg\";i:258262;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/public/img/drag-icons\";i:21613;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/public/img/font-previews\";i:55693;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/public/img\";i:1050853;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon/public\";i:10732836;s:78:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/coming-soon\";i:12246462;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/klaviyo/includes/blocks/build\";i:5240;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/klaviyo/includes/blocks\";i:18809;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/klaviyo/includes/admin/partials\";i:2388;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/klaviyo/includes/admin/assets\";i:73760;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/klaviyo/includes/admin/css\";i:1843;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/klaviyo/includes/admin\";i:79728;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/klaviyo/includes/js\";i:6389;s:83:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/klaviyo/includes\";i:167005;s:81:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/klaviyo/inc/js\";i:754;s:78:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/klaviyo/inc\";i:30501;s:78:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/klaviyo/img\";i:206;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/klaviyo\";i:341092;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/dist\";i:703;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib\";i:43920;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat\";i:45721;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib\";i:87773;s:139:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Poly1305\";i:171;s:144:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge\";i:897;s:141:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519\";i:1233;s:139:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20\";i:342;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core\";i:3801;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced\";i:4232;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Poly1305\";i:16024;s:138:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/SecretStream\";i:3715;s:139:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge\";i:8472;s:136:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519\";i:122885;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20\";i:6525;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32\";i:438357;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Poly1305\";i:12971;s:136:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/SecretStream\";i:3683;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge\";i:8176;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519\";i:121840;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20\";i:5382;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Base64\";i:15574;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core\";i:447439;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/PHP52\";i:4175;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src\";i:1203620;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat\";i:1302527;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/paragonie\";i:1348248;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor/composer\";i:41647;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto/vendor\";i:1390155;s:83:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/crypto\";i:1390155;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/lib/Diff/Renderer/Html\";i:13763;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/lib/Diff/Renderer\";i:16813;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/lib/Diff\";i:34596;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/lib/rest-api\";i:26659;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/lib/dashboard\";i:37582;s:80:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/lib\";i:8299858;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/languages\";i:426143;s:82:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/fonts\";i:289944;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/vendor/composer\";i:36677;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Io\";i:2249;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception\";i:1541;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src\";i:27521;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader\";i:27521;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage\";i:75106;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser\";i:126381;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib\";i:458805;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views\";i:47958;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src\";i:735008;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/vendor/wordfence/wf-waf\";i:735008;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/vendor/wordfence\";i:762529;s:83:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/vendor\";i:799820;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/views/unsupported-php\";i:1038;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/views/onboarding\";i:17388;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/views/tools\";i:10688;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/views/dashboard\";i:56958;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/views/gdpr\";i:4406;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/views/diagnostics\";i:16466;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/views/reports\";i:45078;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/views/offboarding\";i:8252;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/views/user\";i:1093;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/views/common\";i:30941;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/views/waf\";i:124719;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/views/options\";i:55229;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/views/scanner\";i:197299;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/views/tours\";i:4949;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/views/blocking\";i:426128;s:82:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/views\";i:1000986;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/modules/login-security/views/onboarding\";i:1749;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/modules/login-security/views/page\";i:17127;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/modules/login-security/views/user\";i:528;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/modules/login-security/views/common\";i:8004;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/modules/login-security/views/email\";i:1631;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/modules/login-security/views/settings\";i:17961;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/modules/login-security/views/options\";i:72978;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/modules/login-security/views/manage\";i:21390;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/modules/login-security/views\";i:141723;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/modules/login-security/js\";i:317510;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/modules/login-security/classes/utility\";i:4831;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/modules/login-security/classes/controller\";i:178152;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/modules/login-security/classes/model/crypto\";i:14246;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/modules/login-security/classes/model/text\";i:1675;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/modules/login-security/classes/model/view\";i:1813;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/modules/login-security/classes/model/settings\";i:4916;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/modules/login-security/classes/model\";i:57093;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/modules/login-security/classes\";i:240431;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/modules/login-security/css\";i:365204;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/modules/login-security/img\";i:48448;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/modules/login-security\";i:1116484;s:84:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/modules\";i:1116484;s:79:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/js\";i:778113;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/waf/pomo\";i:58067;s:80:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/waf\";i:123353;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/images/icons\";i:82660;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/images/logos\";i:9280;s:83:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/images\";i:345688;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/css/license\";i:131063;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/css/images\";i:36376;s:80:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/css\";i:694874;s:80:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/tmp\";i:15;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/models/page\";i:7216;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/models/block\";i:64812;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/models/common\";i:845;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/models/firewall\";i:16494;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/models/scanner\";i:39221;s:83:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence/models\";i:128942;s:76:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wordfence\";i:15535353;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/assets/imgs\";i:137541;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/assets\";i:137541;s:131:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/vg-plugin-sdk/assets/css\";i:1035;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/vg-plugin-sdk/assets\";i:1035;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/vg-plugin-sdk/views\";i:16665;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/vg-plugin-sdk/samples\";i:1558;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/vg-plugin-sdk\";i:34450;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius/languages\";i:852967;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius/assets/js\";i:10689;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius/assets/css/admin\";i:60893;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius/assets/css\";i:64070;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius/assets/img\";i:20704;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius/assets\";i:95550;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius/includes/debug\";i:2948;s:139:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius/includes/sdk/Exceptions\";i:3169;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius/includes/sdk\";i:51825;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius/includes/managers\";i:187585;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius/includes/entities\";i:48096;s:136:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius/includes/supplements\";i:3740;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius/includes/customizer\";i:7941;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius/includes\";i:1646110;s:142:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius/templates/account/partials\";i:51640;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius/templates/account\";i:66934;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius/templates/partials\";i:5007;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius/templates/plugin-info\";i:6653;s:131:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius/templates/debug\";i:14061;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius/templates/js\";i:26057;s:144:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius/templates/forms/deactivation\";i:28734;s:131:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius/templates/forms\";i:173748;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius/templates/connect\";i:4550;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius/templates\";i:527903;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor/freemius\";i:3194777;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/vendor\";i:3229227;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/inc\";i:2965;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/views\";i:1251;s:131:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/spreadsheet-setup/views\";i:3871;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/spreadsheet-setup\";i:14467;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/filters/assets/js\";i:6733;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/filters/assets\";i:6733;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/filters\";i:31071;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/columns-renaming/assets/js\";i:1433;s:131:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/columns-renaming/assets\";i:1433;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/columns-renaming\";i:5234;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/yoast-seo\";i:18776;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/columns-manager/assets/js\";i:4751;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/columns-manager/assets\";i:4751;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/columns-manager/inc\";i:13531;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/columns-manager\";i:91095;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/universal-sheet/assets/js\";i:24175;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/universal-sheet/assets\";i:24175;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/universal-sheet/vendor\";i:0;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/universal-sheet/inc\";i:52072;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/universal-sheet/views\";i:21412;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/universal-sheet\";i:106939;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/acf\";i:54539;s:149:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/columns-visibility/assets/vendor/Sortable\";i:185938;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/columns-visibility/assets/vendor\";i:185938;s:136:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/columns-visibility/assets/js\";i:11432;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/columns-visibility/assets\";i:197370;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/columns-visibility/views\";i:11796;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/columns-visibility\";i:228948;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/advanced-filters/assets/js\";i:5469;s:131:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/advanced-filters/assets\";i:5469;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/advanced-filters\";i:45660;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/autofill-cells\";i:1291;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/posts-templates/assets/js\";i:2345;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/posts-templates/assets\";i:2345;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/posts-templates\";i:11107;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/columns-resizing/assets/js\";i:585;s:131:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/columns-resizing/assets\";i:585;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/columns-resizing\";i:3911;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/wp-sheet-editor/assets/vendor/fonts\";i:1089774;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/wp-sheet-editor/assets/vendor/js\";i:3649952;s:144:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/wp-sheet-editor/assets/vendor/images\";i:1748;s:141:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/wp-sheet-editor/assets/vendor/css\";i:208354;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/wp-sheet-editor/assets/vendor\";i:4949828;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/wp-sheet-editor/assets/imgs\";i:293794;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/wp-sheet-editor/assets/js\";i:297167;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/wp-sheet-editor/assets/css\";i:141975;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/wp-sheet-editor/assets\";i:5682764;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/wp-sheet-editor/vendor\";i:0;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/wp-sheet-editor/inc/integrations\";i:59794;s:131:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/wp-sheet-editor/inc/api\";i:268040;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/wp-sheet-editor/inc/teasers\";i:76570;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/wp-sheet-editor/inc/providers\";i:66263;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/wp-sheet-editor/inc\";i:537894;s:139:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/wp-sheet-editor/views/whats-new\";i:0;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/wp-sheet-editor/views\";i:50211;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/wp-sheet-editor/lang\";i:6007142;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/wp-sheet-editor\";i:12348516;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/woocommerce/assets/js\";i:16455;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/woocommerce/assets\";i:16455;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/woocommerce/vendor\";i:0;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/woocommerce/inc\";i:222136;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/woocommerce/views\";i:9780;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/woocommerce\";i:288867;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/assets/js\";i:21486;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/assets/css\";i:627;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/assets\";i:22113;s:173:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor/mossadal/math-parser/doxygen/doxygen-bootstrapped\";i:0;s:152:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor/mossadal/math-parser/doxygen\";i:56255;s:172:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor/mossadal/math-parser/tests/MathParser/Extensions\";i:10614;s:169:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor/mossadal/math-parser/tests/MathParser/Parsing\";i:61194;s:174:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor/mossadal/math-parser/tests/MathParser/Interpreting\";i:49152;s:172:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor/mossadal/math-parser/tests/MathParser/Exceptions\";i:1821;s:168:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor/mossadal/math-parser/tests/MathParser/Lexing\";i:10586;s:161:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor/mossadal/math-parser/tests/MathParser\";i:133367;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor/mossadal/math-parser/tests\";i:133367;s:170:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor/mossadal/math-parser/src/MathParser/Extensions\";i:29586;s:180:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor/mossadal/math-parser/src/MathParser/Parsing/Nodes/Traits\";i:2245;s:183:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor/mossadal/math-parser/src/MathParser/Parsing/Nodes/Factories\";i:24491;s:184:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor/mossadal/math-parser/src/MathParser/Parsing/Nodes/Interfaces\";i:855;s:173:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor/mossadal/math-parser/src/MathParser/Parsing/Nodes\";i:54280;s:167:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor/mossadal/math-parser/src/MathParser/Parsing\";i:69809;s:181:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor/mossadal/math-parser/src/MathParser/Interpreting/Visitors\";i:3721;s:172:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor/mossadal/math-parser/src/MathParser/Interpreting\";i:72942;s:170:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor/mossadal/math-parser/src/MathParser/Exceptions\";i:6682;s:166:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor/mossadal/math-parser/src/MathParser/Lexing\";i:27197;s:159:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor/mossadal/math-parser/src/MathParser\";i:211962;s:148:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor/mossadal/math-parser/src\";i:214063;s:144:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor/mossadal/math-parser\";i:517699;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor/mossadal\";i:517699;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor/composer\";i:27677;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/vendor\";i:545554;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas/inc\";i:54041;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/formulas\";i:687104;s:152:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/custom-columns/assets/vendor/jquery.repeater\";i:34767;s:136:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/custom-columns/assets/vendor\";i:34767;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/custom-columns/assets/js\";i:6501;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/custom-columns/assets/css\";i:711;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/custom-columns/assets\";i:41979;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/custom-columns/views\";i:11566;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/custom-columns\";i:84467;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/wpml/inc\";i:57101;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules/wpml\";i:60272;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/modules\";i:14101972;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium/lang\";i:59588;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woo-products-bulk-editor-premium\";i:17569990;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/languages\";i:1238596;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/assets/fonts\";i:1085661;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/assets/js/unminified/admin\";i:16169;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/assets/js/unminified\";i:116883;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/assets/js/admin\";i:30956;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/assets/js\";i:188060;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/assets/images/premium\";i:137612;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/assets/images\";i:230535;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/assets/css/unminified/themes\";i:2345;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/assets/css/unminified\";i:92202;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/assets/css/themes\";i:1635;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/assets/css\";i:167341;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/assets\";i:1671597;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/dist/gutenberg\";i:28206;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/dist\";i:28206;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/lib/privacy\";i:486;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/lib\";i:4804;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/languages\";i:383123;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/fonts/font-awesome\";i:981810;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/fonts\";i:1026610;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/select2\";i:66504;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/jquery-tiptip\";i:9575;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/codemirror\";i:250458;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js\";i:547644;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images/colorbox\";i:6985;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images/help-tab\";i:58349;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images/bh-onboarding\";i:1058;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images/premium-tab\";i:8840;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images\";i:124814;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/jquery-ui/images\";i:19610;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/jquery-ui\";i:49660;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/codemirror\";i:6056;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css\";i:364433;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets\";i:2063501;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/builders/elementor\";i:17692;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/builders/gutenberg\";i:10352;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/builders\";i:28044;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/privacy\";i:4900;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes\";i:344519;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/upgrade\";i:4712;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/bh-onboarding\";i:2797;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/resources\";i:2541;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields\";i:114328;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/components/resources\";i:2223;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/components\";i:11742;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/privacy\";i:1220;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/sysinfo/tabs\";i:10097;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/sysinfo\";i:11804;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/panel/welcome-modals\";i:3817;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/panel/woocommerce\";i:7597;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/panel/v2/woocommerce\";i:5421;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/panel/v2\";i:35183;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/panel\";i:76716;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/metaboxes\";i:7788;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates\";i:231107;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw\";i:3206765;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/includes/legacy\";i:1010;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/includes/data-stores\";i:68266;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/includes/widgets/elementor\";i:9443;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/includes/widgets\";i:9443;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/includes\";i:360618;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-options/settings\";i:44324;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/plugin-options\";i:47088;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist/templates\";i:79734;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/yith-woocommerce-wishlist\";i:6696423;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/dist/editor-themes\";i:135024;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/dist\";i:552673;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/php/admin-menus\";i:31423;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/php/export\";i:11564;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/php/front-end\";i:13266;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/php/rest-api\";i:15358;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/php/views\";i:6228;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/php/settings\";i:23717;s:84:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/php\";i:235999;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/assets\";i:4904;s:131:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers\";i:77612;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer\";i:77612;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/vendor/composer/installers/src\";i:78080;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/vendor/composer/installers\";i:82160;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/vendor/composer\";i:128370;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/vendor\";i:129141;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/js/types/wp\";i:2590;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/js/types/modules\";i:1089;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/js/types\";i:8113;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/js/utils/api\";i:4640;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/js/utils\";i:7383;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/js/common/TagEditor\";i:5606;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/js/common\";i:8449;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/js/settings\";i:3262;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/js/manage\";i:4921;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/js/Edit/fields\";i:10418;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/js/Edit/components\";i:12014;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/js/Edit/SnippetEditor\";i:12951;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/js/Edit\";i:43503;s:83:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/js\";i:83032;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/css/edit\";i:4403;s:84:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets/css\";i:16997;s:80:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/code-snippets\";i:1062472;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius/languages\";i:950514;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius/assets/js\";i:10689;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius/assets/css/admin\";i:60893;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius/assets/css\";i:64070;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius/assets/img\";i:20704;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius/assets\";i:95550;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius/includes/debug\";i:2948;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius/includes/sdk/Exceptions\";i:3169;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius/includes/sdk\";i:51825;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius/includes/managers\";i:187585;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius/includes/entities\";i:48096;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius/includes/supplements\";i:3740;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius/includes/customizer\";i:7941;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius/includes\";i:1640020;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius/templates/account/partials\";i:51640;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius/templates/account\";i:66778;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius/templates/partials\";i:4959;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius/templates/plugin-info\";i:7035;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius/templates/debug\";i:14061;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius/templates/js\";i:26057;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius/templates/forms/deactivation\";i:28734;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius/templates/forms\";i:173394;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius/templates/connect\";i:4550;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius/templates\";i:527014;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor/freemius\";i:3285273;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/vendor\";i:3285273;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/inc\";i:1627;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/spreadsheet-setup/views\";i:3871;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/spreadsheet-setup\";i:14467;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/filters/assets/js\";i:6733;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/filters/assets\";i:6733;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/filters\";i:30884;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/columns-renaming/assets/js\";i:1415;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/columns-renaming/assets\";i:1415;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/columns-renaming\";i:5216;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/yoast-seo\";i:16856;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/columns-manager/assets/js\";i:4629;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/columns-manager/assets\";i:4629;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/columns-manager/inc\";i:13531;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/columns-manager\";i:83945;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/universal-sheet/assets/js\";i:24104;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/universal-sheet/assets\";i:24104;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/universal-sheet/vendor\";i:0;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/universal-sheet/inc\";i:50484;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/universal-sheet/views\";i:21434;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/universal-sheet\";i:105245;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/acf\";i:50716;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/columns-visibility/assets/vendor/Sortable\";i:185938;s:131:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/columns-visibility/assets/vendor\";i:185938;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/columns-visibility/assets/js\";i:11321;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/columns-visibility/assets\";i:197259;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/columns-visibility/views\";i:11796;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/columns-visibility\";i:228837;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/advanced-filters/assets/js\";i:5451;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/advanced-filters/assets\";i:5451;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/advanced-filters\";i:45618;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/autofill-cells\";i:1291;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/posts-templates/assets/js\";i:2345;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/posts-templates/assets\";i:2345;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/posts-templates\";i:11107;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/columns-resizing/assets/js\";i:567;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/columns-resizing/assets\";i:567;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/columns-resizing\";i:3893;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/wp-sheet-editor/assets/vendor/fonts\";i:1089774;s:131:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/wp-sheet-editor/assets/vendor/js\";i:3649952;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/wp-sheet-editor/assets/vendor/images\";i:1748;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/wp-sheet-editor/assets/vendor/css\";i:208354;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/wp-sheet-editor/assets/vendor\";i:4949828;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/wp-sheet-editor/assets/imgs\";i:298435;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/wp-sheet-editor/assets/js\";i:282961;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/wp-sheet-editor/assets/css\";i:114833;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/wp-sheet-editor/assets\";i:5646057;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/wp-sheet-editor/vendor\";i:0;s:131:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/wp-sheet-editor/inc/integrations\";i:58074;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/wp-sheet-editor/inc/api\";i:256870;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/wp-sheet-editor/inc/teasers\";i:76534;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/wp-sheet-editor/inc/providers\";i:63843;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/wp-sheet-editor/inc\";i:520749;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/wp-sheet-editor/views/whats-new\";i:0;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/wp-sheet-editor/views\";i:49886;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/wp-sheet-editor/lang\";i:6004117;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/wp-sheet-editor\";i:12290938;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/woocommerce/assets/js\";i:16463;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/woocommerce/assets\";i:16463;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/woocommerce/vendor\";i:0;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/woocommerce/inc\";i:219838;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/woocommerce/views\";i:9780;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/woocommerce\";i:286545;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/assets/js\";i:21439;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/assets/css\";i:627;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/assets\";i:22066;s:164:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor/mossadal/math-parser/doxygen/doxygen-bootstrapped\";i:0;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor/mossadal/math-parser/doxygen\";i:56255;s:163:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor/mossadal/math-parser/tests/MathParser/Extensions\";i:10614;s:160:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor/mossadal/math-parser/tests/MathParser/Parsing\";i:61194;s:165:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor/mossadal/math-parser/tests/MathParser/Interpreting\";i:49152;s:163:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor/mossadal/math-parser/tests/MathParser/Exceptions\";i:1821;s:159:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor/mossadal/math-parser/tests/MathParser/Lexing\";i:10586;s:152:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor/mossadal/math-parser/tests/MathParser\";i:133367;s:141:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor/mossadal/math-parser/tests\";i:133367;s:161:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor/mossadal/math-parser/src/MathParser/Extensions\";i:29586;s:171:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor/mossadal/math-parser/src/MathParser/Parsing/Nodes/Traits\";i:2245;s:174:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor/mossadal/math-parser/src/MathParser/Parsing/Nodes/Factories\";i:24491;s:175:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor/mossadal/math-parser/src/MathParser/Parsing/Nodes/Interfaces\";i:855;s:164:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor/mossadal/math-parser/src/MathParser/Parsing/Nodes\";i:54280;s:158:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor/mossadal/math-parser/src/MathParser/Parsing\";i:69809;s:172:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor/mossadal/math-parser/src/MathParser/Interpreting/Visitors\";i:3721;s:163:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor/mossadal/math-parser/src/MathParser/Interpreting\";i:72942;s:161:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor/mossadal/math-parser/src/MathParser/Exceptions\";i:6682;s:157:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor/mossadal/math-parser/src/MathParser/Lexing\";i:27197;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor/mossadal/math-parser/src/MathParser\";i:211962;s:139:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor/mossadal/math-parser/src\";i:214063;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor/mossadal/math-parser\";i:517699;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor/mossadal\";i:517699;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor/composer\";i:27677;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/vendor\";i:545554;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas/inc\";i:53988;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/formulas\";i:685553;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/custom-post-types\";i:2322;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/custom-columns/assets/vendor/jquery.repeater\";i:34767;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/custom-columns/assets/vendor\";i:34767;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/custom-columns/assets/js\";i:4964;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/custom-columns/assets/css\";i:711;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/custom-columns/assets\";i:40442;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/custom-columns/views\";i:11566;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/custom-columns\";i:83068;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/wpml/inc\";i:52012;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules/wpml\";i:55176;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/modules\";i:14020011;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/whats-new\";i:0;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium/lang\";i:325176;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/wp-sheet-editor-premium\";i:17704883;s:84:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/publickeys\";i:10497;s:81:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MMB\";i:93206;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/Symfony/EventDispatcher\";i:12239;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/Symfony/Filesystem/Exception\";i:1507;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/Symfony/Filesystem\";i:23537;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/Symfony/Process/Pipes\";i:16169;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/Symfony/Process/Exception\";i:4908;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/Symfony/Process\";i:84049;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/Symfony\";i:119853;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/PHPSecLib/Net/SFTP\";i:23234;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/PHPSecLib/Net\";i:317170;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/PHPSecLib/System/SSH\";i:9667;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/PHPSecLib/System\";i:11543;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/PHPSecLib/Math\";i:131370;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/PHPSecLib/File\";i:245376;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/PHPSecLib/Crypt\";i:488602;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/PHPSecLib\";i:1194193;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/WordPress/Provider\";i:7146;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/WordPress/Query\";i:6253;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/WordPress\";i:37080;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/Http\";i:17780;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/Debug\";i:3497;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/Security/Exception\";i:959;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/Security\";i:5306;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/EventListener/ActionRequest\";i:5433;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/EventListener/PublicRequest\";i:71939;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/EventListener/MasterRequest\";i:26660;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/EventListener/ActionResponse\";i:9598;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/EventListener/ActionException\";i:5271;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/EventListener/MasterResponse\";i:1277;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/EventListener\";i:126713;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/Worker\";i:34691;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/Configuration\";i:28068;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/IncrementalBackup/Model\";i:5168;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/IncrementalBackup/Database/Exception\";i:390;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/IncrementalBackup/Database\";i:38948;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/IncrementalBackup\";i:49488;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/Migration\";i:5972;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/Parser\";i:4505;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/Signer\";i:3649;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/System\";i:5611;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/FileManager/Model\";i:2096;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/FileManager\";i:2124;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/Crypter\";i:6120;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/Progress\";i:5835;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/Action/IncrementalBackup\";i:40333;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/Action\";i:66411;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/ServiceContainer\";i:37850;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/Monolog/Handler\";i:1308;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/Monolog/Processor\";i:4030;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/Monolog\";i:5366;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/Process\";i:649;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/Extension\";i:2043;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/Stream\";i:25443;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/Event\";i:9028;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP/Updater\";i:12438;s:81:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/MWP\";i:495695;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/Monolog/Formatter\";i:15063;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/Monolog/Handler\";i:16030;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/Monolog/Psr\";i:3472;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/Monolog/Processor\";i:9727;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/Monolog\";i:72421;s:82:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src/Gelf\";i:12763;s:77:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker/src\";i:1992956;s:73:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/worker\";i:2082607;s:83:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/dist\";i:5786454;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/l10n/languages\";i:69539;s:83:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/l10n\";i:69539;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/assets/plugins/dayjs\";i:7770;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/assets/plugins/vue-select@3.12.2\";i:25224;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/assets/plugins/toastr@1.0/iconfont\";i:10362;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/assets/plugins/toastr@1.0\";i:23253;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/assets/plugins/gutenberg@12.8.0\";i:122904;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/assets/plugins/swiper@8.3.2\";i:78454;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/assets/plugins/google-translate\";i:11370;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/assets/plugins/toastr@2.0\";i:12404;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/assets/plugins/codemirror@5.62.3/theme\";i:2741;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/assets/plugins/codemirror@5.62.3\";i:2741;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/assets/plugins/vue-content-placeholders@0.2.1\";i:12985;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/assets/plugins/vue-slider-component@3.2.15\";i:59420;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/assets/plugins\";i:451985;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/assets/imgs/popup\";i:131777;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/assets/imgs/product\";i:1014181;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/assets/imgs/settings\";i:69734;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/assets/imgs\";i:1316653;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/assets/js\";i:350374;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/assets/css\";i:68550;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/assets/templates\";i:221;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/assets/icons/progress\";i:2863;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/assets/icons/status\";i:157;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/assets/icons\";i:3826;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/assets\";i:2191609;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/includes/Models\";i:28962;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/includes/views/notices\";i:28089;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/includes/views/common\";i:7936;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/includes/views\";i:124542;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/includes/Emails\";i:17711;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/includes/Api/Admin\";i:30719;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/includes/Api\";i:105959;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/includes/Exceptions\";i:97;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/includes/Libs/Import\";i:61487;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/includes/Libs\";i:80189;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/includes/Action\";i:307751;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/includes\";i:870048;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/vendor/composer\";i:36441;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/vendor\";i:36619;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/templates/tracking\";i:5042;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/templates/emails/plain\";i:3071;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/templates/emails\";i:16760;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel/templates\";i:21827;s:78:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/parcelpanel\";i:9007073;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-gateway-stripe/languages\";i:129823;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-gateway-stripe/assets/js\";i:114055;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-gateway-stripe/assets/images\";i:42121;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-gateway-stripe/assets/css\";i:14665;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-gateway-stripe/assets\";i:170841;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-gateway-stripe/includes/payment-methods\";i:228777;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-gateway-stripe/includes/migrations\";i:2232;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-gateway-stripe/includes/admin\";i:151908;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-gateway-stripe/includes/constants\";i:57001;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-gateway-stripe/includes/deprecated\";i:721;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-gateway-stripe/includes/notes\";i:5822;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-gateway-stripe/includes/connect\";i:15830;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-gateway-stripe/includes/abstracts\";i:84862;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-gateway-stripe/includes/compat\";i:61949;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-gateway-stripe/includes\";i:847346;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-gateway-stripe/build\";i:1463959;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-gateway-stripe/templates/emails/plain\";i:3700;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-gateway-stripe/templates/emails\";i:8263;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-gateway-stripe/templates\";i:8263;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-gateway-stripe\";i:2724282;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/contact-form-7/languages\";i:128;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/contact-form-7/assets\";i:31340;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/contact-form-7/admin/includes\";i:36908;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/contact-form-7/admin/js\";i:14345;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/contact-form-7/admin/css\";i:9805;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/contact-form-7/admin\";i:88494;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/contact-form-7/includes/block-editor\";i:7920;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images\";i:32598;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness\";i:118302;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes\";i:118302;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/contact-form-7/includes/js/jquery-ui\";i:118302;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/contact-form-7/includes/js\";i:131969;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/contact-form-7/includes/css\";i:3011;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/contact-form-7/includes/swv/rules\";i:17439;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/contact-form-7/includes/swv/js\";i:10322;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/contact-form-7/includes/swv\";i:35403;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/contact-form-7/includes\";i:420727;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/contact-form-7/modules/stripe\";i:20563;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/contact-form-7/modules/akismet\";i:8031;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/contact-form-7/modules/sendinblue\";i:23703;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/contact-form-7/modules/constant-contact\";i:31124;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/contact-form-7/modules/recaptcha\";i:14864;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/contact-form-7/modules\";i:208594;s:81:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/contact-form-7\";i:781719;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/media-file-renamer-pro/languages\";i:18994;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/media-file-renamer-pro/premium\";i:37483;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/media-file-renamer-pro/.vscode\";i:779;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/media-file-renamer-pro/common/premium\";i:25628;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/media-file-renamer-pro/common\";i:57694;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/media-file-renamer-pro/classes/plugins\";i:7944;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/media-file-renamer-pro/classes\";i:108969;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/media-file-renamer-pro/changelog\";i:13624;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/media-file-renamer-pro/app\";i:472137;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/media-file-renamer-pro\";i:723182;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/client/admin/config\";i:1934;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/client/admin\";i:1934;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/client\";i:1934;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/lib/packages/League/Container/Argument\";i:6726;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/lib/packages/League/Container/Inflector\";i:6143;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/lib/packages/League/Container/Definition\";i:12789;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/lib/packages/League/Container/ServiceProvider\";i:6476;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/lib/packages/League/Container/Exception\";i:551;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/lib/packages/League/Container\";i:45593;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/lib/packages/League\";i:45593;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/lib/packages/Psr/Container\";i:1438;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/lib/packages/Psr\";i:1438;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/lib/packages\";i:47031;s:82:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/lib\";i:47031;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/data\";i:138524;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/analytics-report-stock\";i:4925;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/admin-layout\";i:17218;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/analytics-settings\";i:8095;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/onboarding\";i:437295;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/analytics-report-revenue\";i:5055;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/store-performance\";i:4575;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/edit-product-page\";i:23428;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/wcpay-payment-welcome-page\";i:14494;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/date\";i:41359;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/analytics-report-customers\";i:4925;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/notices\";i:2292;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/analytics-report-orders\";i:5055;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/explat\";i:45061;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/print-shipping-label-banner\";i:13682;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-category-metabox\";i:11118;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/activity-panels-help\";i:4833;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/dashboard\";i:8867;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/csv-export\";i:5107;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/wp-admin-scripts\";i:147730;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/core-profiler\";i:34744;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/profile-wizard\";i:19884;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/components\";i:1037271;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/analytics-report\";i:4109;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/experimental\";i:100927;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/payment-method-promotions\";i:9810;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/navigation\";i:41551;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/multichannel-marketing\";i:12890;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/homescreen\";i:47966;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/analytics-report-taxes\";i:4925;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/currency\";i:4855;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/store-alerts\";i:8028;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/activity-panels-inbox\";i:14883;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/shipping-recommendations\";i:5253;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/radio\";i:2270;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/toggle\";i:2099;s:162:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/blocks/product-shipping-dimensions-fields\";i:16585;s:139:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/blocks/conditional\";i:581;s:149:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/blocks/product-pricing-field\";i:15730;s:156:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/blocks/product-schedule-sale-fields\";i:15539;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/blocks/product-radio-field\";i:737;s:139:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/blocks/product-tab\";i:15877;s:156:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/blocks/product-shipping-class-field\";i:625;s:149:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/blocks/product-summary-field\";i:17398;s:146:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/blocks/product-name-field\";i:16618;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/blocks/product-section\";i:18393;s:155:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/blocks/product-regular-price-field\";i:15941;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/blocks/product-checkbox-field\";i:16680;s:152:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/blocks/product-sale-price-field\";i:15905;s:153:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/blocks/product-description-field\";i:573;s:160:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/blocks/product-inventory-quantity-field\";i:639;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/blocks/product-sku-field\";i:15957;s:152:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/blocks/product-attributes-field\";i:16171;s:148:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/blocks/product-images-field\";i:16441;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/blocks/product-category-field\";i:16824;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/blocks/product-collapsible\";i:617;s:157:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/blocks/product-inventory-email-field\";i:15540;s:148:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/blocks/product-toggle-field\";i:660;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/blocks\";i:250031;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/shipping-dimensions\";i:6430;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/conditional\";i:2215;s:131:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/attributes\";i:1928;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/regular-price\";i:3568;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/checkbox\";i:2735;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/summary/paragraph-rtl-control\";i:1391;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/summary\";i:6136;s:139:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/inventory-quantity\";i:2975;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/tab\";i:3586;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/category\";i:2317;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/name\";i:4670;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/schedule-sale\";i:4725;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/collapsible\";i:1983;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/images\";i:4588;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/inventory-sku\";i:2324;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/shipping-class\";i:4972;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/section\";i:2806;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/pricing\";i:2899;s:136:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/inventory-email\";i:3439;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/description\";i:2615;s:131:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks/sale-price\";i:3203;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor/blocks\";i:328262;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-editor\";i:585121;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/leaderboards\";i:4642;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/navigation-opt-out\";i:8032;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/analytics-report-categories\";i:5269;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/chunks\";i:1272628;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/analytics-report-coupons\";i:4925;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/number\";i:2242;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/marketing-coupons\";i:27840;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/tracks\";i:8051;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/customer-effort-score\";i:45684;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/analytics-report-products\";i:5269;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/app\";i:752546;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/analytics-report-downloads\";i:4925;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/null\";i:8106;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/dashboard-charts\";i:6315;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/analytics-report-variations\";i:4925;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/undefined\";i:16780;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/product-page\";i:6456;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin/beta-features-tracking-modal\";i:8182;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client/admin\";i:5451733;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/client\";i:5451733;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/fonts\";i:94747;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/js/selectWoo\";i:462808;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/js/zoom\";i:8725;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/js/jquery-flot\";i:213433;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/js/jquery-ui-touch-punch\";i:6353;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/js/select2\";i:443516;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/js/jquery-payment\";i:25981;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/js/accounting\";i:16753;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/js/admin\";i:457889;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/js/jquery-cookie\";i:4528;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/js/js-cookie\";i:5706;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/js/jquery-qrcode\";i:45226;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/js/jquery-tiptip\";i:10286;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/js/round\";i:2269;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/js/jquery-blockui\";i:29560;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/js/stupidtable\";i:5713;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/js/flexslider\";i:74810;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/js/frontend\";i:189538;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/js/jquery-serializejson\";i:22444;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/js/prettyPhoto\";i:56653;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/js/photoswipe\";i:156182;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/js\";i:2238373;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/images/onboarding\";i:164992;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/images/core-profiler\";i:307207;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/images/product_data\";i:1441;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/images/task_list\";i:160999;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/images/admin_notes\";i:30986;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/images/shipping_partners\";i:180336;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/images/marketing\";i:75846;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/images/payment_methods/72x72\";i:27960;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/images/payment_methods\";i:27960;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/images/icons/credit-cards\";i:36070;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/images/icons\";i:40913;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/images\";i:1560454;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/css/jquery-ui/images\";i:19610;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/css/jquery-ui\";i:109637;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/css/photoswipe/default-skin\";i:22461;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/css/photoswipe\";i:31039;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets/css\";i:2027311;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/assets\";i:11372618;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/walkers\";i:8177;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/libraries\";i:26600;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/export\";i:41129;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/blocks\";i:2122;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/integrations/maxmind-geolocation/views\";i:839;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/integrations/maxmind-geolocation\";i:15063;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/integrations\";i:15063;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/react-admin/emails\";i:3687;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/react-admin\";i:34037;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/wccom-site/rest-api/endpoints\";i:14894;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/wccom-site/rest-api\";i:21156;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/wccom-site/installation/installation-steps\";i:10811;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/wccom-site/installation\";i:27453;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/wccom-site\";i:75708;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/rest-api/Utilities\";i:2852;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version1\";i:396543;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3\";i:340097;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/rest-api/Controllers/Telemetry\";i:3406;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2\";i:439709;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/rest-api/Controllers\";i:1179755;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/rest-api\";i:1193021;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/shipping/legacy-local-delivery\";i:6046;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/shipping/legacy-flat-rate/includes\";i:5093;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/shipping/legacy-flat-rate\";i:17337;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/shipping/local-pickup\";i:2880;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/shipping/free-shipping\";i:7277;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/shipping/legacy-free-shipping\";i:7209;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/shipping/legacy-international-delivery\";i:2643;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/shipping/flat-rate/includes\";i:3407;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/shipping/flat-rate\";i:11481;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/shipping/legacy-local-pickup\";i:6991;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/shipping\";i:61864;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/legacy/api/v3\";i:315747;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/legacy/api/v1\";i:119753;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/legacy/api/v2\";i:257294;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/legacy/api\";i:730589;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/legacy\";i:817081;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/admin/importers/views\";i:13039;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/admin/importers/mappings\";i:9193;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/admin/importers\";i:58108;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/admin/views\";i:123048;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/admin/reports\";i:167442;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/admin/settings/views\";i:48410;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/admin/settings\";i:160727;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/admin/helper/views\";i:15406;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/admin/helper\";i:102250;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/admin/notes\";i:13619;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/admin/list-tables\";i:58192;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/admin/marketplace-suggestions/views\";i:287;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/admin/marketplace-suggestions/templates\";i:1574;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/admin/marketplace-suggestions\";i:10184;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/admin/plugin-updates/views\";i:2685;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/admin/plugin-updates\";i:18386;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/admin/meta-boxes/views\";i:128213;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/admin/meta-boxes\";i:217429;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/admin\";i:1453057;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/theme-support\";i:25675;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/import\";i:55075;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/log-handlers\";i:22773;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/shortcodes\";i:55721;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/gateways/cod\";i:13267;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/gateways/bacs\";i:14786;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/gateways/cheque\";i:4736;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/gateways/paypal/assets/js\";i:2162;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/gateways/paypal/assets/images\";i:2454;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/gateways/paypal/assets\";i:4616;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/gateways/paypal/includes\";i:54515;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/gateways/paypal\";i:77412;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/gateways\";i:116472;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/data-stores\";i:334705;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/widgets\";i:60623;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/abstracts\";i:260765;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/tracks/events\";i:49996;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/tracks\";i:74000;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/interfaces\";i:35472;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/cli\";i:38371;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/emails\";i:99954;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/traits\";i:2124;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/payment-tokens\";i:6598;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/queue\";i:8898;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes/customizer\";i:31206;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/includes\";i:7066317;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/maxmind-db/reader/ext/tests\";i:709;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/maxmind-db/reader/ext\";i:31960;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/maxmind-db/reader/src/MaxMind/Db/Reader\";i:14712;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/maxmind-db/reader/src/MaxMind/Db\";i:26352;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/maxmind-db/reader/src/MaxMind\";i:26352;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/maxmind-db/reader/src\";i:26352;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/maxmind-db/reader\";i:73510;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/maxmind-db\";i:73510;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers\";i:77612;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer\";i:77612;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/composer/installers/src\";i:78080;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/composer/installers\";i:79355;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/composer\";i:713203;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/automattic/jetpack-status/src\";i:42364;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/automattic/jetpack-status\";i:60780;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/automattic/jetpack-constants/src\";i:3414;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/automattic/jetpack-constants\";i:21830;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/automattic/jetpack-admin-ui/src\";i:6534;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/automattic/jetpack-admin-ui\";i:24950;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/automattic/jetpack-connection/dist\";i:2191;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/automattic/jetpack-connection/legacy\";i:85458;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/automattic/jetpack-connection/src/webhooks\";i:6218;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/automattic/jetpack-connection/src\";i:256828;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/automattic/jetpack-connection\";i:362893;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/automattic/jetpack-roles/src\";i:1863;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/automattic/jetpack-roles\";i:20279;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/automattic/jetpack-config/src\";i:11782;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/automattic/jetpack-config\";i:30198;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/automattic/jetpack-a8c-mc-stats/src\";i:4365;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/automattic/jetpack-a8c-mc-stats\";i:22781;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src\";i:81481;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader\";i:99897;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/automattic/jetpack-redirect/src\";i:2602;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/automattic/jetpack-redirect\";i:21018;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/automattic\";i:664626;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/bin\";i:19348;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/symfony/css-selector/Parser/Shortcut\";i:5802;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/symfony/css-selector/Parser/Handler\";i:10164;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/symfony/css-selector/Parser/Tokenizer\";i:6588;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/symfony/css-selector/Parser\";i:42755;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/symfony/css-selector/Node\";i:17182;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/symfony/css-selector/Exception\";i:4181;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/symfony/css-selector/XPath/Extension\";i:29007;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/symfony/css-selector/XPath\";i:39841;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/symfony/css-selector\";i:107180;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/symfony/polyfill-php80/Resources/stubs\";i:2168;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/symfony/polyfill-php80/Resources\";i:2168;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/symfony/polyfill-php80\";i:10522;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/symfony\";i:117702;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/jetpack-autoloader\";i:51562;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/CSSList\";i:29203;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Property\";i:12540;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Parsing\";i:16119;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Value\";i:33050;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Rule\";i:10160;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/RuleSet\";i:41962;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Comment\";i:1617;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src\";i:161410;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser\";i:162514;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/sabberworm\";i:162514;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/pelago/emogrifier/src/Caching\";i:2073;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/pelago/emogrifier/src/Utilities\";i:8638;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/pelago/emogrifier/src/Css\";i:8803;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/pelago/emogrifier/src/HtmlProcessor\";i:30875;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/pelago/emogrifier/src\";i:93292;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/pelago/emogrifier\";i:94360;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor/pelago\";i:94360;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/vendor\";i:1897913;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/i18n/languages\";i:1644155;s:83:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/i18n\";i:1906208;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/templates/auth\";i:6753;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/templates/notices\";i:2782;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/templates/global\";i:10151;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/templates/order\";i:17689;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/templates/single-product/add-to-cart\";i:15573;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/templates/single-product/tabs\";i:3986;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/templates/single-product\";i:42615;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/templates/checkout\";i:35489;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/templates/cart\";i:32420;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/templates/myaccount\";i:48177;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/templates/loop\";i:10492;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/templates/emails/plain\";i:35717;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/templates/emails\";i:86235;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/templates\";i:318753;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/sample-data\";i:220033;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/Overrides\";i:11224;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/Transformers\";i:9069;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications\";i:71362;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/PluginsInstallLoggers\";i:4411;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/Composer\";i:2432;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/Features/OnboardingTasks/Tasks\";i:44631;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/Features/OnboardingTasks\";i:86266;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/Features/AsyncProductEditorCategoryField\";i:2465;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/Features/ShippingPartnerSuggestions\";i:11519;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/Features/Navigation\";i:47526;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/Features/ProductBlockEditor\";i:30512;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/Features/PaymentGatewaySuggestions\";i:45613;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/Features\";i:244609;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Reports/Downloads/Stats\";i:18406;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Reports/Downloads/Files\";i:594;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Reports/Downloads\";i:47160;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Reports/Export\";i:6937;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Reports/Categories\";i:23875;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Reports/Customers/Stats\";i:22015;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Reports/Customers\";i:75850;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Reports/Coupons/Stats\";i:31487;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Reports/Coupons\";i:56866;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Reports/Products/Stats\";i:29602;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Reports/Products\";i:60317;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Reports/Revenue/Stats\";i:9508;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Reports/Revenue\";i:11107;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Reports/Stock/Stats\";i:8866;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Reports/Stock\";i:25489;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Reports/Variations/Stats\";i:31168;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Reports/Variations\";i:65258;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Reports/Taxes/Stats\";i:24054;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Reports/Taxes\";i:44005;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Reports/Import\";i:8776;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Reports/Orders/Stats\";i:69673;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Reports/Orders\";i:110508;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Reports/PerformanceIndicators\";i:18932;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Reports\";i:679428;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API/Templates\";i:181;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/API\";i:967216;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/Marketing\";i:27033;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/Notes\";i:74233;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/PluginsProvider\";i:2800;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/DateTimeProvider\";i:885;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin/Schedulers\";i:9968;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Admin\";i:1492441;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/Admin/RemoteFreeExtensions\";i:36091;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/Admin/ProductForm\";i:15030;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/Admin/WCPayPromotion\";i:7500;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/Admin/ProductReviews\";i:73843;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/Admin/Marketing\";i:5773;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/Admin/Notes\";i:107834;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/Admin/Orders/MetaBoxes\";i:18111;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/Admin/Orders\";i:108720;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/Admin/Schedulers\";i:21501;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/Admin/Onboarding\";i:38322;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/Admin\";i:585289;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/DataStores/Orders\";i:202101;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/DataStores\";i:207181;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/Traits\";i:8165;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/Utilities\";i:38775;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/Features\";i:44247;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/WCCom\";i:685;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/DependencyManagement/ServiceProviders\";i:19431;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/DependencyManagement\";i:34416;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/ProductAttributesLookup\";i:56649;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/ProductDownloads/ApprovedDirectories/Admin\";i:29372;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/ProductDownloads/ApprovedDirectories\";i:53710;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/ProductDownloads\";i:53710;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/Orders\";i:13289;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/BatchProcessing\";i:18634;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal/Settings\";i:1834;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Internal\";i:1079454;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Caching\";i:20638;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Database/Migrations/CustomOrderTable\";i:44634;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Database/Migrations\";i:106908;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Database\";i:106908;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Utilities\";i:34344;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Caches\";i:3406;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Proxies\";i:5142;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Checkout/Helpers\";i:9778;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src/Checkout\";i:9778;s:82:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/src\";i:2763652;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/patches\";i:1673;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/extensions/payment-methods/cod\";i:2572;s:148:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/extensions/payment-methods/bacs\";i:1224;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/extensions/payment-methods/cheque\";i:1207;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/extensions/payment-methods/paypal\";i:1120;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/extensions/payment-methods\";i:6123;s:179:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/extensions/shipping-methods/shared-components/settings-section\";i:1269;s:177:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/extensions/shipping-methods/shared-components/settings-modal\";i:1478;s:177:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/extensions/shipping-methods/shared-components/sortable-table\";i:5731;s:176:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/extensions/shipping-methods/shared-components/settings-card\";i:1140;s:162:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/extensions/shipping-methods/shared-components\";i:9837;s:174:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/extensions/shipping-methods/pickup-location/edit-location\";i:6741;s:160:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/extensions/shipping-methods/pickup-location\";i:27206;s:144:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/extensions/shipping-methods\";i:37043;s:144:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/extensions/google-analytics\";i:10122;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/extensions\";i:53288;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-results-count\";i:1842;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/customer-account\";i:9780;s:141:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/price-filter/test\";i:2803;s:136:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/price-filter\";i:25443;s:138:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-search\";i:12003;s:139:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/catalog-sorting\";i:1889;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/breadcrumbs\";i:2504;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/store-notices\";i:1689;s:144:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/utils/test\";i:5533;s:139:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/utils\";i:11168;s:138:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/test\";i:6820;s:148:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/quantity-badge\";i:1430;s:188:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-footer-block\";i:7547;s:187:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-items-block\";i:2496;s:193:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-title-label-block\";i:2909;s:197:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-checkout-button-block\";i:4042;s:193:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-cart-button-block\";i:3874;s:196:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-products-table-block\";i:2417;s:197:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-shopping-button-block\";i:3945;s:196:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/empty-mini-cart-contents-block\";i:2993;s:197:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/filled-mini-cart-contents-block\";i:3439;s:187:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-title-block\";i:3210;s:201:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-title-items-counter-block\";i:2725;s:165:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks\";i:45611;s:152:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents\";i:57207;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart\";i:101797;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/attribute-filter/test\";i:4493;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/attribute-filter\";i:50039;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/single-product/edit\";i:7661;s:138:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/single-product\";i:10939;s:151:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/reviews-by-category\";i:7291;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/all-reviews\";i:4789;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/reviews-by-product\";i:8044;s:131:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews\";i:39862;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-tag\";i:10858;s:138:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/active-filters\";i:32024;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-template\";i:10043;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/classic-template/assets\";i:192925;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/classic-template/test\";i:1360;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/classic-template\";i:225668;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/products/all-products\";i:14922;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/products\";i:19894;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/shared/styles\";i:577;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/shared\";i:577;s:141:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-top-rated\";i:6933;s:176:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/payment-methods/express-payment\";i:9061;s:165:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/payment-methods/test\";i:5251;s:179:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/payment-methods/no-payment-methods\";i:770;s:160:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/payment-methods\";i:39734;s:160:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/sidebar-notices\";i:3904;s:162:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/use-forced-layout\";i:6054;s:158:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/view-switcher\";i:6053;s:159:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/block-settings\";i:991;s:144:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared\";i:63092;s:155:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/featured-items/featured-product\";i:5281;s:156:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/featured-items/featured-category\";i:5616;s:138:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/featured-items\";i:59913;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/handpicked-products\";i:9113;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-new\";i:6813;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/phone-number/test\";i:911;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/phone-number\";i:1695;s:153:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/checkout-order-error\";i:4242;s:167:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-fields-block\";i:4895;s:176:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-express-payment-block\";i:3437;s:176:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-billing-address-block\";i:11333;s:175:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-pickup-options-block\";i:11879;s:180:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-contact-information-block\";i:7953;s:171:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-terms-block/test\";i:4738;s:166:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-terms-block\";i:14121;s:177:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-discount\";i:3175;s:168:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-actions-block\";i:7435;s:177:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-subtotal\";i:2362;s:179:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-cart-items\";i:2247;s:177:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-shipping\";i:2600;s:179:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-block/test\";i:13825;s:174:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-block\";i:18602;s:174:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-taxes\";i:4586;s:177:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-shipping-address-block\";i:9630;s:168:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-payment-block\";i:6457;s:201:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-shipping-methods-block/no-shipping-placeholder\";i:1494;s:177:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-shipping-methods-block\";i:13976;s:171:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-note-block\";i:3375;s:183:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-shipping-method-block/shared\";i:4776;s:176:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-shipping-method-block\";i:24817;s:180:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-coupon-form\";i:2594;s:172:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-fee\";i:2357;s:167:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-totals-block\";i:3446;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks\";i:169977;s:142:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/form-step\";i:5055;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/empty-cart\";i:1460;s:139:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/styles\";i:4137;s:149:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/order-notes/test\";i:2791;s:144:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/order-notes\";i:5147;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout\";i:211459;s:177:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-accepted-payment-methods-block\";i:2018;s:164:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-cross-sells-block\";i:2227;s:172:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/proceed-to-checkout-block/test\";i:1614;s:167:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/proceed-to-checkout-block\";i:9668;s:159:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-totals-block\";i:3097;s:167:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-cross-sells-products\";i:5266;s:169:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-shipping\";i:4389;s:168:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-heading\";i:3103;s:158:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/empty-cart-block\";i:5556;s:169:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-discount\";i:3147;s:166:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-block\";i:4606;s:158:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-items-block\";i:2650;s:169:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-subtotal\";i:2350;s:163:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-line-items-block\";i:2169;s:168:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-express-payment-block\";i:3485;s:164:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-fee\";i:2339;s:166:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-taxes\";i:4575;s:159:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/filled-cart-block\";i:4015;s:172:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-coupon-form\";i:2566;s:141:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks\";i:74434;s:158:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/cart-cross-sells-product-list\";i:2922;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/test\";i:10417;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart\";i:104045;s:155:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/stock-filter/test/__snapshots__\";i:10410;s:141:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/stock-filter/test\";i:26059;s:136:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/stock-filter\";i:55257;s:144:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-best-sellers\";i:6583;s:138:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/filter-wrapper\";i:12961;s:142:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-categories\";i:11190;s:142:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/rating-filter/test\";i:13756;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/rating-filter\";i:40164;s:139:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-on-sale\";i:5645;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-category\";i:12333;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/products-by-attribute\";i:10093;s:156:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-query/inspector-controls\";i:6212;s:157:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-query/variations/elements\";i:2679;s:148:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-query/variations\";i:8934;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-query\";i:33292;s:179:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-collection/inspector-controls/taxonomy-controls\";i:9929;s:161:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-collection/inspector-controls\";i:26220;s:162:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-collection/variations/elements\";i:1963;s:153:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-collection/variations\";i:3037;s:142:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-collection\";i:39944;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks\";i:1245681;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/payment/utils\";i:10599;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/payment/test\";i:30906;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/payment\";i:70419;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/validation/test\";i:8838;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/validation\";i:15434;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/store-notices\";i:2409;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/utils\";i:5643;s:138:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/query-state/test\";i:4485;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/query-state\";i:8937;s:138:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/collections/test\";i:9577;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/collections\";i:21279;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/checkout/test\";i:6445;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/checkout\";i:33522;s:131:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/cart/test\";i:21726;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/cart\";i:72910;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/schema/test\";i:10041;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/schema\";i:20367;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data\";i:261755;s:153:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks-registry/payment-methods/test\";i:11479;s:148:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks-registry/payment-methods\";i:29452;s:154:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks-registry/block-components/test\";i:2647;s:149:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks-registry/block-components\";i:8788;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks-registry\";i:38311;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/filters\";i:5112;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/hooks/test\";i:7829;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/hooks\";i:19534;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/utils/test\";i:8082;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/utils\";i:42352;s:138:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/title\";i:1688;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/chip/stories\";i:1534;s:156:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/chip/test/__snapshots__\";i:7249;s:142:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/chip/test\";i:10067;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/chip\";i:18280;s:148:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/pagination/test\";i:931;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/pagination\";i:9274;s:146:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/radio-control\";i:7725;s:165:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-list/product-sort-select\";i:1428;s:163:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-list/product-list-item\";i:2892;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-list\";i:19354;s:141:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/textarea\";i:1330;s:153:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/filter-element-label\";i:1230;s:154:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/notice-banner/stories\";i:2558;s:151:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/notice-banner/test\";i:3005;s:158:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/notice-banner/screenshots\";i:47575;s:146:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/notice-banner\";i:59277;s:141:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/combobox\";i:7370;s:149:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/load-more-button\";i:938;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/loading-mask\";i:1456;s:153:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/filter-submit-button\";i:1379;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/form\";i:615;s:151:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/filter-placeholder\";i:771;s:154:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/snackbar-list/stories\";i:1645;s:146:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/snackbar-list\";i:5879;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/summary/test\";i:4135;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/summary\";i:9028;s:158:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/formatted-monetary-amount\";i:3001;s:154:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-price/stories\";i:964;s:165:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-price/test/__snapshots__\";i:1068;s:151:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-price/test\";i:2377;s:146:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-price\";i:11680;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/noninteractive\";i:2154;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/tabs/stories\";i:1065;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/tabs\";i:5116;s:157:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/label/test/__snapshots__\";i:1101;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/label/test\";i:2981;s:138:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/label\";i:4511;s:157:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/reviews/review-list-item\";i:11808;s:152:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/reviews/review-list\";i:1359;s:159:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/reviews/review-sort-select\";i:1312;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/reviews\";i:15266;s:153:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/price-slider/stories\";i:1421;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/price-slider/test\";i:2063;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/price-slider\";i:28248;s:156:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/radio-control-accordion\";i:1958;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/read-more/stories\";i:1742;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/read-more/test\";i:2458;s:142:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/read-more\";i:12335;s:167:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/shipping/test\";i:11089;s:162:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/shipping\";i:24912;s:168:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/coupon/stories\";i:1581;s:165:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/coupon/test\";i:1159;s:160:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/coupon\";i:7561;s:173:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/footer-item/stories\";i:1891;s:184:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/footer-item/test/__snapshots__\";i:3422;s:170:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/footer-item/test\";i:6389;s:165:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/footer-item\";i:11744;s:170:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/discount/stories\";i:2609;s:162:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/discount\";i:6085;s:153:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals\";i:50527;s:170:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/product-backorder-badge\";i:457;s:167:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/payment-method-icons\";i:6495;s:167:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/payment-method-label\";i:2091;s:160:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/product-image\";i:828;s:165:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/place-order-button\";i:830;s:168:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/return-to-cart-button\";i:1124;s:165:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/order-summary/test\";i:988;s:160:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/order-summary\";i:10071;s:164:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/shipping-location\";i:607;s:162:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/product-summary\";i:1060;s:177:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/shipping-rates-control-package\";i:10863;s:166:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/shipping-calculator\";i:4253;s:170:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/product-low-stock-badge\";i:928;s:165:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/product-sale-badge\";i:1591;s:171:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/local-pickup-select/test\";i:3474;s:166:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/local-pickup-select\";i:5261;s:168:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/cart-line-items-table\";i:15829;s:163:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/product-metadata\";i:1263;s:169:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/shipping-rates-control\";i:6273;s:164:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/address-form/test\";i:4806;s:159:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/address-form\";i:16567;s:175:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/form-step/test/__snapshots__\";i:5989;s:161:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/form-step/test\";i:8532;s:156:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/form-step\";i:13447;s:155:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/policies\";i:1661;s:167:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/pickup-location/test\";i:3103;s:162:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/pickup-location\";i:5348;s:181:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/product-details/test/__snapshots__\";i:1504;s:167:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/product-details/test\";i:2963;s:162:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/product-details\";i:4978;s:160:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/product-badge\";i:728;s:146:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout\";i:164434;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/spinner\";i:772;s:158:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/quantity-selector/stories\";i:857;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/quantity-selector\";i:11068;s:144:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/state-input\";i:4239;s:141:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/skeleton\";i:783;s:153:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/block-error-boundary\";i:5710;s:144:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/sort-select\";i:2316;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/sidebar-layout\";i:3430;s:153:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-name/stories\";i:646;s:164:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-name/test/__snapshots__\";i:933;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-name/test\";i:2077;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-name\";i:4413;s:152:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/filter-reset-button\";i:1059;s:157:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/form-token-field/stories\";i:822;s:149:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/form-token-field\";i:4888;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/drawer/utils\";i:2013;s:139:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/drawer\";i:10392;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/button/stories\";i:910;s:139:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/button\";i:3629;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-rating\";i:1443;s:154:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/country-input/stories\";i:6493;s:146:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/country-input\";i:9782;s:146:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/checkbox-list\";i:4926;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components\";i:464434;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/hocs/with-scroll-to-top/test\";i:2424;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/hocs/with-scroll-to-top\";i:4491;s:131:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/hocs/test\";i:4235;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/hocs\";i:14140;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/event-emit/test\";i:3953;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/event-emit\";i:12469;s:156:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/payment-methods/test\";i:1190;s:151:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/payment-methods\";i:13535;s:144:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/shipping\";i:4684;s:152:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/collections/test\";i:8189;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/collections\";i:20492;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/cart/test\";i:12043;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/cart\";i:30909;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/test\";i:12739;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks\";i:108804;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/test\";i:1025;s:168:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/add-to-cart-form/form/submit\";i:4047;s:161:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/add-to-cart-form/form\";i:4931;s:167:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/add-to-cart-form/form-state\";i:15926;s:156:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/add-to-cart-form\";i:20911;s:168:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/payment-events\";i:6021;s:162:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/shipping\";i:9996;s:169:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/checkout-events\";i:11965;s:158:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/cart\";i:709;s:153:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout\";i:41676;s:139:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers\";i:67115;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context\";i:191207;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base\";i:732165;s:163:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/sidebar-compatibility-notice\";i:2616;s:146:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/block-title\";i:1658;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/heading-toolbar\";i:3885;s:171:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/incompatible-payment-gateways-notice\";i:5921;s:162:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/expandable-search-list-item\";i:1094;s:154:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/product-tag-control\";i:5020;s:161:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/external-link-card/stories\";i:794;s:153:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/external-link-card\";i:3605;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/editable-button\";i:2186;s:158:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/product-orderby-control\";i:1702;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/utils\";i:6424;s:157:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/tag/test/__snapshots__\";i:17478;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/tag/test\";i:18566;s:138:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/tag\";i:22087;s:154:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/text-toolbar-button\";i:675;s:151:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/products-control\";i:2774;s:160:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/no-payment-methods-notice\";i:1109;s:156:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/product-stock-control\";i:3004;s:149:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/default-notice\";i:4453;s:155:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/grid-content-control\";i:2064;s:160:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/error-placeholder/stories\";i:2179;s:152:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/error-placeholder\";i:5161;s:159:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/product-category-control\";i:5497;s:152:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/edit-product-link\";i:1526;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/feedback-prompt\";i:3140;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/product-control\";i:6268;s:173:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/search-list-control/test/__snapshots__\";i:138325;s:159:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/search-list-control/test\";i:147799;s:154:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/search-list-control\";i:174845;s:154:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/grid-layout-control\";i:2953;s:165:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/product-attribute-term-control\";i:6447;s:148:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/page-selector\";i:1076;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components\";i:277190;s:139:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-guards/test\";i:5379;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-guards\";i:13092;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs\";i:79773;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types\";i:92925;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/utils/test\";i:6165;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/utils\";i:19347;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/interactivity\";i:15495;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/settings/blocks\";i:5046;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/settings/shared/test\";i:2558;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/settings/shared\";i:13715;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/settings\";i:18761;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/shared/hocs\";i:2590;s:131:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/shared/context\";i:3599;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/shared\";i:6189;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/templates/revert-button\";i:4487;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/templates\";i:4487;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/hocs/test\";i:18855;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/hocs\";i:35710;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/previews\";i:29559;s:158:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/image/test\";i:7448;s:153:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/image\";i:21359;s:158:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/title/test\";i:1847;s:153:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/title\";i:12198;s:154:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/rating\";i:12080;s:164:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/related-products\";i:2518;s:151:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/sku\";i:7364;s:160:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/product-meta\";i:2804;s:164:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart-form\";i:4203;s:158:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/sale-badge\";i:6149;s:166:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/shared\";i:6893;s:208:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/product-types/variable/variation-attributes/test\";i:9648;s:203:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/product-types/variable/variation-attributes\";i:24910;s:182:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/product-types/variable\";i:26444;s:173:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/product-types\";i:28169;s:159:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart\";i:42056;s:155:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/summary\";i:5234;s:163:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/product-reviews\";i:4384;s:154:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/shared\";i:6138;s:153:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/price\";i:9079;s:163:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/stock-indicator\";i:7809;s:169:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/product-image-gallery\";i:3545;s:163:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/product-details\";i:4176;s:154:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/button\";i:13986;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements\";i:165470;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks\";i:168527;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/utils\";i:15131;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic\";i:183658;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/middleware\";i:3354;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/icons/stories\";i:2099;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/icons/library\";i:18895;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/icons\";i:22292;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js\";i:3046264;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/css/abstracts\";i:10093;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/css\";i:19129;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets\";i:3065393;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/patterns\";i:165396;s:157:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers\";i:77612;s:146:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer\";i:77612;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src\";i:78080;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers\";i:79355;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer\";i:127419;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/src\";i:81481;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader\";i:99897;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic\";i:99897;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/jetpack-autoloader\";i:51562;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor\";i:279622;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-results-count\";i:499;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/customer-account\";i:777;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/all-products\";i:727;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/price-filter\";i:852;s:198:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/vendors--attribute-filter-wrapper--cart-blocks/order-summary-coupon-form--cart-blocks\";i:19848;s:199:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/vendors--attribute-filter-wrapper--cart-blocks/order-summary-shipping--checkout-blocks\";i:11375;s:159:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/vendors--attribute-filter-wrapper--cart-blocks\";i:31223;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/related-products\";i:432;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/catalog-sorting\";i:540;s:201:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/vendors--cart-blocks/cart-cross-sells-products--cart-blocks/cart-line-items--cart-blocks\";i:15217;s:172:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/vendors--cart-blocks/cart-cross-sells-products--cart-blocks\";i:15217;s:206:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/vendors--cart-blocks/order-summary-shipping--checkout-blocks/billing-address--checkout-blocks\";i:55426;s:173:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/vendors--cart-blocks/order-summary-shipping--checkout-blocks\";i:55426;s:166:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/vendors--cart-blocks/cart-line-items--checkout-blocks\";i:11405;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/vendors--cart-blocks\";i:82048;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/featured-product\";i:1878;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-meta\";i:453;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/add-to-cart-form\";i:570;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/breadcrumbs\";i:761;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/store-notices\";i:498;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/attribute-filter\";i:1116;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/single-product\";i:616;s:169:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/vendors--checkout-blocks/pickup-options--checkout-blocks\";i:21314;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/vendors--checkout-blocks\";i:66341;s:161:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/cart-accepted-payment-methods-block\";i:469;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/checkout-fields-block\";i:640;s:156:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/checkout-express-payment-block\";i:674;s:148:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/cart-cross-sells-block\";i:442;s:162:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/cart-order-summary-coupon-form-block\";i:617;s:156:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/checkout-billing-address-block\";i:600;s:151:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/proceed-to-checkout-block\";i:570;s:163:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/checkout-order-summary-shipping-block\";i:575;s:166:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/checkout-order-summary-coupon-form-block\";i:625;s:155:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/checkout-pickup-options-block\";i:584;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/cart-totals-block\";i:677;s:159:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/cart-order-summary-discount-block\";i:627;s:160:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/checkout-contact-information-block\";i:612;s:163:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/checkout-order-summary-subtotal-block\";i:635;s:148:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/mini-cart-footer-block\";i:617;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/mini-cart-items-block\";i:633;s:146:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/checkout-terms-block\";i:677;s:153:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/mini-cart-title-label-block\";i:714;s:157:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/mini-cart-checkout-button-block\";i:837;s:158:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/checkout-order-summary-fee-block\";i:621;s:148:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/checkout-actions-block\";i:581;s:159:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/cart-order-summary-subtotal-block\";i:627;s:142:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/empty-cart-block\";i:587;s:154:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/checkout-order-summary-block\";i:578;s:153:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/mini-cart-cart-button-block\";i:816;s:157:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/checkout-shipping-address-block\";i:603;s:156:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/mini-cart-products-table-block\";i:632;s:148:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/checkout-payment-block\";i:583;s:160:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/checkout-order-summary-taxes-block\";i:626;s:157:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/checkout-shipping-methods-block\";i:694;s:157:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/mini-cart-shopping-button-block\";i:827;s:154:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/cart-order-summary-fee-block\";i:613;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/cart-order-summary-block\";i:588;s:159:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/cart-order-summary-shipping-block\";i:567;s:165:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/checkout-order-summary-cart-items-block\";i:628;s:142:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/cart-items-block\";i:566;s:151:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/checkout-order-note-block\";i:618;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/cart-line-items-block\";i:590;s:156:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/cart-order-summary-taxes-block\";i:618;s:156:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/checkout-shipping-method-block\";i:682;s:156:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/empty-mini-cart-contents-block\";i:616;s:152:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/cart-express-payment-block\";i:606;s:163:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/checkout-order-summary-discount-block\";i:635;s:157:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/cart-cross-sells-products-block\";i:660;s:157:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/filled-mini-cart-contents-block\";i:622;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/filled-cart-block\";i:598;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/mini-cart-title-block\";i:715;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/checkout-totals-block\";i:662;s:158:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/cart-order-summary-heading-block\";i:672;s:161:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks/mini-cart-title-items-counter-block\";i:674;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/inner-blocks\";i:31530;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-button\";i:1240;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-tag\";i:1378;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/active-filters\";i:621;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-reviews\";i:414;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-template\";i:1100;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-top-rated\";i:1596;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/handpicked-products\";i:1422;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-new\";i:1582;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout\";i:1005;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/stock-filter\";i:930;s:161:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout-blocks/billing-address--checkout-blocks\";i:13947;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout-blocks\";i:193813;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-best-sellers\";i:1603;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/featured-category\";i:1843;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/filter-wrapper\";i:355;s:131:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-categories\";i:1141;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/rating-filter\";i:864;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-image-gallery\";i:444;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/mini-cart-contents-block\";i:37216;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-category\";i:1595;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-details\";i:387;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/products-by-attribute\";i:1564;s:131:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-collection\";i:760;s:162:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart-blocks/cart-express-payment--checkout-blocks\";i:15918;s:166:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart-blocks/cart-line-items--mini-cart-contents-block\";i:18492;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart-blocks\";i:135141;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-rating\";i:810;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build\";i:4374636;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/blocks/mini-cart\";i:4364;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/blocks\";i:4364;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/payment-methods\";i:61832;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/template-placeholders\";i:2886;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/pattern-placeholders\";i:8902683;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/previews\";i:522602;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/block-placeholders\";i:6508;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/images\";i:9740184;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/templates/notices\";i:4187;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/templates/templates/blockified\";i:14394;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/templates/templates\";i:16211;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/templates/emails/plain\";i:1684;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/templates/emails\";i:3337;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/templates/parts\";i:2267;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/templates\";i:26002;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes\";i:274237;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Assets\";i:20684;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Payments/Integrations\";i:11254;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Payments\";i:21533;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Shipping\";i:19513;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Registry\";i:5604;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Utils\";i:50375;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Templates\";i:34891;s:146:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Interactivity/directives/attributes\";i:2270;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Interactivity/directives/tags\";i:339;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Interactivity/directives\";i:8703;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Interactivity\";i:12303;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Integrations\";i:6333;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Domain/Services/Email\";i:4642;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Domain/Services\";i:24916;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Domain\";i:44172;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Payments\";i:3859;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Utilities\";i:126658;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1\";i:139569;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes\";i:139905;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Exceptions\";i:7013;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Schemas/V1\";i:141815;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Schemas\";i:152762;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Formatters\";i:3796;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi\";i:471412;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/src\";i:1026134;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/blocks-registry/test\";i:2106;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/blocks-registry\";i:49088;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/filter-registry/test\";i:4606;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/filter-registry\";i:13375;s:146:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/utils/validation/test\";i:5954;s:141:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/utils/validation\";i:9022;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/utils\";i:9869;s:155:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/totals/item/stories\";i:777;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/totals/item\";i:2706;s:155:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/totals/fees/stories\";i:1201;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/totals/fees\";i:2654;s:159:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/totals/subtotal/stories\";i:978;s:151:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/totals/subtotal\";i:2035;s:156:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/totals/taxes/stories\";i:807;s:148:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/totals/taxes\";i:2743;s:142:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/totals\";i:10334;s:158:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/validation-input-error\";i:1530;s:148:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/store-notice\";i:511;s:146:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/order-meta\";i:815;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/totals-wrapper\";i:1500;s:160:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/checkbox-control/stories\";i:557;s:152:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/checkbox-control\";i:4934;s:141:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/panel\";i:2966;s:141:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/label\";i:112;s:164:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/store-notices-container/test\";i:5856;s:159:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/store-notices-container\";i:16191;s:159:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/order-shipping-packages\";i:890;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/discounts-meta\";i:843;s:163:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/order-local-pickup-packages\";i:1352;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/error-boundary\";i:877;s:151:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/text-input/test\";i:9117;s:146:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/text-input\";i:21023;s:142:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/button\";i:115;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components\";i:64962;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/slot\";i:3701;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout\";i:141225;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/prices/utils/test\";i:3199;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/prices/utils\";i:7911;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/prices\";i:7936;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages\";i:149161;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks\";i:19776553;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-admin\";i:203;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/action-scheduler/lib/cron-expression\";i:29942;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/action-scheduler/lib\";i:33750;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/action-scheduler/deprecated\";i:13295;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/action-scheduler/classes/migration\";i:25616;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/action-scheduler/classes/actions\";i:4310;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/action-scheduler/classes/schedules\";i:10785;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/action-scheduler/classes/WP_CLI\";i:24146;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/action-scheduler/classes/data-stores\";i:100457;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/action-scheduler/classes/abstracts\";i:83113;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/action-scheduler/classes/schema\";i:7562;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/action-scheduler/classes\";i:349015;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages/action-scheduler\";i:460660;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce/packages\";i:20237416;s:78:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce\";i:45911286;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/data/preset\";i:7667;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/data\";i:27372;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/lib/css-min\";i:51053;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/lib/jsmin_data\";i:987;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/lib\";i:118180;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/assets/js\";i:1055672;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/assets/css/fonts\";i:10867;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/assets/css\";i:171589;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/assets/img/icons\";i:118293;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/assets/img\";i:136175;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/assets\";i:1363436;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/tpl/page_optm\";i:56893;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/tpl/crawler\";i:24594;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/tpl/banner\";i:17811;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/tpl/inc\";i:8980;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/tpl/general\";i:17382;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/tpl/db_optm\";i:8301;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/tpl/toolbox\";i:37832;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/tpl/cache\";i:50113;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/tpl/presets\";i:9017;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/tpl/img_optm\";i:23129;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/tpl/dash\";i:32394;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/tpl/cdn\";i:26315;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/tpl\";i:314992;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/inc\";i:119;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/lang\";i:148292;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/cli\";i:24555;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/src/data_structure\";i:2681;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/src/cdn\";i:9207;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/src\";i:865985;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache/thirdparty\";i:64909;s:82:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/litespeed-cache\";i:3120516;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/languages\";i:1897496;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/admin/images/buttons\";i:26183;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/admin/images/facebook\";i:8927;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/admin/images/google\";i:10833;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/admin/images/layouts\";i:49013;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/admin/images/notice\";i:2853;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/admin/images\";i:117766;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/admin/templates/settings\";i:154674;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/admin/templates\";i:195426;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/admin/templates-provider\";i:34827;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/admin\";i:416971;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/includes\";i:175681;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/NSL/PCKE\";i:2606;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/NSL/Persistent/Storage\";i:4466;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/NSL/Persistent\";i:6780;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/NSL\";i:23181;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/js\";i:12658;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/template-parts/embedded-login\";i:965;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/template-parts/register-flow\";i:276;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/template-parts/login\";i:1399;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/template-parts\";i:9214;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/providers/linkedin\";i:1974;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/providers/twitter/admin\";i:19074;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/providers/twitter\";i:49221;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/providers/tiktok\";i:2361;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/providers/line\";i:1386;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/providers/wordpress\";i:3044;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/providers/github\";i:2682;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/providers/facebook/admin\";i:19536;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/providers/facebook\";i:36577;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/providers/slack\";i:1788;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/providers/amazon\";i:3389;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/providers/google/admin\";i:12356;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/providers/google\";i:28507;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/providers/steam\";i:1758;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/providers/microsoft\";i:607;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/providers/paypal\";i:3568;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/providers/twitch\";i:933;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/providers/discord\";i:1594;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/providers/vk\";i:2241;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/providers/disqus\";i:2386;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/providers/yahoo\";i:3921;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/providers/apple\";i:2128;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect/providers\";i:150065;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/nextend-facebook-connect\";i:2825891;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/redirection/actions\";i:5574;s:82:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/redirection/api\";i:59026;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/redirection/matches\";i:21115;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/redirection/fileio\";i:16292;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/redirection/modules\";i:17130;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/redirection/images\";i:5548;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/redirection/database/schema\";i:22541;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/redirection/database\";i:39310;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/redirection/locale/json\";i:1530797;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/redirection/locale\";i:5870920;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/redirection/models/log\";i:18233;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/redirection/models/url\";i:28804;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/redirection/models/redirect\";i:42118;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/redirection/models\";i:167057;s:78:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/redirection\";i:6998883;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/languages\";i:75879;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/composer\";i:63979;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/leewillis77/dismissible-wp-notices/js\";i:721;s:138:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/leewillis77/dismissible-wp-notices/src\";i:7623;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/leewillis77/dismissible-wp-notices\";i:9117;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/leewillis77\";i:9117;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/bin\";i:0;s:139:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/pimple/pimple/src/Pimple/Tests/Fixtures\";i:5725;s:136:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/pimple/pimple/src/Pimple/Tests/Psr11\";i:6945;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/pimple/pimple/src/Pimple/Tests\";i:35726;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/pimple/pimple/src/Pimple/Exception\";i:6494;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/pimple/pimple/src/Pimple/Psr11\";i:4140;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/pimple/pimple/src/Pimple\";i:59577;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/pimple/pimple/src\";i:59577;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/pimple/pimple\";i:74146;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/pimple\";i:74146;s:148:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/woocommerce/action-scheduler/lib/cron-expression\";i:33205;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/woocommerce/action-scheduler/lib\";i:37013;s:139:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/woocommerce/action-scheduler/deprecated\";i:13295;s:146:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/woocommerce/action-scheduler/classes/migration\";i:25683;s:144:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/woocommerce/action-scheduler/classes/actions\";i:3365;s:146:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/woocommerce/action-scheduler/classes/schedules\";i:10785;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/woocommerce/action-scheduler/classes/WP_CLI\";i:19518;s:148:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/woocommerce/action-scheduler/classes/data-stores\";i:98096;s:146:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/woocommerce/action-scheduler/classes/abstracts\";i:79125;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/woocommerce/action-scheduler/classes/schema\";i:7501;s:136:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/woocommerce/action-scheduler/classes\";i:330517;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/woocommerce/action-scheduler\";i:448923;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/woocommerce\";i:448923;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/psr/container/src\";i:1382;s:113:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/psr/container\";i:3664;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor/psr\";i:3664;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/vendor\";i:600600;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/js/dist\";i:7761;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/js/src\";i:6459;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/js\";i:31178;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/images\";i:1186;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/css\";i:5843;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/templates\";i:30634;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/less\";i:6057;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/src/integrations\";i:71555;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/src/prf\";i:24142;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/src/cache\";i:33646;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/src/jobs\";i:7024;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/src/common\";i:127755;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/src/gpf\";i:215794;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds/src\";i:488988;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-product-feeds\";i:1341577;s:136:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/duracelltomi-google-tag-manager/integration/whichbrowser/data/regexes\";i:4891;s:136:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/duracelltomi-google-tag-manager/integration/whichbrowser/data/indices\";i:239643;s:128:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/duracelltomi-google-tag-manager/integration/whichbrowser/data\";i:3764298;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/duracelltomi-google-tag-manager/integration/whichbrowser/src/Data\";i:21682;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/duracelltomi-google-tag-manager/integration/whichbrowser/src/Model/Primitive\";i:5050;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/duracelltomi-google-tag-manager/integration/whichbrowser/src/Model\";i:36430;s:160:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/duracelltomi-google-tag-manager/integration/whichbrowser/src/Analyser/Header/Useragent/Device\";i:135048;s:153:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/duracelltomi-google-tag-manager/integration/whichbrowser/src/Analyser/Header/Useragent\";i:374051;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/duracelltomi-google-tag-manager/integration/whichbrowser/src/Analyser/Header\";i:390977;s:136:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/duracelltomi-google-tag-manager/integration/whichbrowser/src/Analyser\";i:431397;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/duracelltomi-google-tag-manager/integration/whichbrowser/src/Constants\";i:2617;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/duracelltomi-google-tag-manager/integration/whichbrowser/src\";i:497345;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/duracelltomi-google-tag-manager/integration/whichbrowser\";i:4263545;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/duracelltomi-google-tag-manager/integration\";i:4338448;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/duracelltomi-google-tag-manager/admin/images\";i:2229;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/duracelltomi-google-tag-manager/admin\";i:97232;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/duracelltomi-google-tag-manager/js\";i:72768;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/duracelltomi-google-tag-manager/common\";i:23981;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/duracelltomi-google-tag-manager/css\";i:1080;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/duracelltomi-google-tag-manager/public\";i:48661;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/duracelltomi-google-tag-manager\";i:4674007;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/svg-support/languages\";i:38093;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/svg-support/admin/img\";i:3373;s:84:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/svg-support/admin\";i:51141;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/svg-support/includes\";i:774;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/svg-support/vendor/composer\";i:25164;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/svg-support/vendor/DOMPurify\";i:84580;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/svg-support/vendor/enshrined/svg-sanitize/tests/data\";i:2117685;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/svg-support/vendor/enshrined/svg-sanitize/tests/Fixtures\";i:700;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/svg-support/vendor/enshrined/svg-sanitize/tests\";i:2134017;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/svg-support/vendor/enshrined/svg-sanitize/.github/workflows\";i:765;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/svg-support/vendor/enshrined/svg-sanitize/.github\";i:765;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/svg-support/vendor/enshrined/svg-sanitize/src/data\";i:15383;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/svg-support/vendor/enshrined/svg-sanitize/src/Exceptions\";i:794;s:129:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/svg-support/vendor/enshrined/svg-sanitize/src/ElementReference\";i:9511;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/svg-support/vendor/enshrined/svg-sanitize/src\";i:48426;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/svg-support/vendor/enshrined/svg-sanitize\";i:2211368;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/svg-support/vendor/enshrined\";i:2211368;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/svg-support/vendor\";i:2321290;s:83:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/svg-support/scss\";i:8341;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/svg-support/js/min\";i:15067;s:81:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/svg-support/js\";i:48006;s:82:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/svg-support/css\";i:6093;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/svg-support/functions\";i:22517;s:78:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/svg-support\";i:2640732;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/lib/compiled\";i:67383;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/lib/data\";i:19140;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/lib\";i:86523;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/languages\";i:52753;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/tpl/admin/init\";i:16753;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/tpl/admin/common\";i:3790;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/tpl/admin/bundle/setup\";i:8365;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/tpl/admin/bundle\";i:33518;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/tpl/admin/file\";i:33561;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/tpl/admin/errors\";i:5047;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/tpl/admin/help\";i:7112;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/tpl/admin/list\";i:3676;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/tpl/admin/config\";i:30991;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/tpl/admin\";i:139837;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/tpl/debug\";i:538;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/tpl/ajax\";i:2821;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/tpl\";i:143196;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/pub/js/min\";i:145764;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/pub/js\";i:145764;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/pub/css/skins\";i:7183;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/pub/css\";i:87328;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/pub/img/api\";i:5336;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/pub/img/wg\";i:177;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/pub/img/skins/ectoplasm\";i:1849;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/pub/img/skins/light\";i:1849;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/pub/img/skins/sunrise\";i:1849;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/pub/img/skins/modern\";i:1849;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/pub/img/skins/fresh\";i:1849;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/pub/img/skins/ocean\";i:1849;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/pub/img/skins/blue\";i:1849;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/pub/img/skins/coffee\";i:1849;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/pub/img/skins/midnight\";i:1849;s:95:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/pub/img/skins\";i:16641;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/pub/img\";i:50603;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/pub/font\";i:153477;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/pub\";i:437172;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/src/data\";i:41715;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/src/api\";i:22916;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/src/mvc\";i:57251;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/src/hooks\";i:20666;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/src/gettext\";i:57770;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/src/admin/init\";i:21453;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/src/admin/bundle\";i:38601;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/src/admin/file\";i:53556;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/src/admin/list\";i:7459;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/src/admin/config\";i:17512;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/src/admin\";i:148672;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/src/output\";i:5884;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/src/ajax/common\";i:1181;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/src/ajax\";i:48350;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/src/js\";i:6676;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/src/test\";i:21615;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/src/package\";i:105690;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/src/cli\";i:31827;s:88:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/src/fs\";i:75381;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/src/error\";i:17032;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/src/config\";i:41071;s:92:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/src/compat\";i:8868;s:85:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate/src\";i:729822;s:81:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/loco-translate\";i:1473512;s:144:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-advanced-free-shipping/libraries/wp-conditions/assets/js/repeater\";i:2599;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-advanced-free-shipping/libraries/wp-conditions/assets/js\";i:16182;s:136:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-advanced-free-shipping/libraries/wp-conditions/assets/css\";i:10191;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-advanced-free-shipping/libraries/wp-conditions/assets\";i:26373;s:136:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-advanced-free-shipping/libraries/wp-conditions/conditions\";i:64595;s:125:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-advanced-free-shipping/libraries/wp-conditions\";i:110928;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-advanced-free-shipping/libraries\";i:110928;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-advanced-free-shipping/languages\";i:113421;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-advanced-free-shipping/assets/css\";i:21652;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-advanced-free-shipping/assets\";i:21652;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-advanced-free-shipping/includes/admin/views\";i:8844;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-advanced-free-shipping/includes/admin\";i:17602;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-advanced-free-shipping/includes\";i:37304;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/woocommerce-advanced-free-shipping\";i:335710;s:97:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/dist/assets/js\";i:5094038;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/dist/assets/css\";i:646897;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/dist/assets\";i:5740935;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/dist\";i:5745569;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Feature_Tours\";i:6440;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Permissions\";i:25508;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Admin\";i:42487;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Assets\";i:41863;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/User_Surveys\";i:14454;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Tracking\";i:7262;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Nonces\";i:2644;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/REST_API/Exception\";i:2400;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/REST_API\";i:13382;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Contracts\";i:592;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Validation/Exception\";i:1167;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Validation\";i:1167;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Modules/Tags\";i:8529;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Modules\";i:115553;s:119:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Authentication/Clients\";i:53747;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Authentication/Exception\";i:5052;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Authentication\";i:152983;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Dismissals\";i:8167;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Notifications\";i:10364;s:100:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/CLI\";i:4557;s:103:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Guards\";i:672;s:131:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Dashboard_Sharing/Activity_Metrics\";i:4189;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Dashboard_Sharing\";i:8143;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Tags/Guards\";i:3079;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Tags\";i:7243;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Util\";i:134145;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Admin_Bar\";i:11266;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Storage/Setting\";i:1486;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Storage\";i:53177;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/User_Input\";i:14488;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core/Key_Metrics\";i:7963;s:96:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Core\";i:684520;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Modules/Tag_Manager\";i:9403;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Modules/AdSense\";i:23822;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Modules/Analytics/Advanced_Tracking\";i:9079;s:109:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Modules/Analytics\";i:40100;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Modules/Optimize\";i:5342;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Modules/PageSpeed_Insights\";i:755;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Modules/Search_Console\";i:1617;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Modules/Analytics_4/Report\";i:25701;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Modules/Analytics_4/GoogleAnalyticsAdmin\";i:4585;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Modules/Analytics_4\";i:45388;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/Modules\";i:331380;s:107:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/vendor/composer\";i:26114;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes/vendor\";i:26114;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/includes\";i:1066673;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/guzzlehttp/guzzle/src/Cookie\";i:28376;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/guzzlehttp/guzzle/src/Handler\";i:60932;s:126:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/guzzlehttp/guzzle/src/Exception\";i:9767;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/guzzlehttp/guzzle/src\";i:203991;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/guzzlehttp/guzzle\";i:204378;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/guzzlehttp/promises/src\";i:61442;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/guzzlehttp/promises\";i:61442;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/guzzlehttp/psr7/src\";i:175895;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/guzzlehttp/psr7\";i:175895;s:105:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/guzzlehttp\";i:441715;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/ralouphie/getallheaders/src\";i:1640;s:118:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/ralouphie/getallheaders\";i:1640;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/ralouphie\";i:1640;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/vendor/composer\";i:173074;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/vendor\";i:174219;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/auth/src/Credentials\";i:50027;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/auth/src/Subscriber\";i:12793;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/auth/src/Middleware\";i:17701;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/auth/src/HttpHandler\";i:10624;s:116:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/auth/src/Cache\";i:14646;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/auth/src\";i:211856;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/auth\";i:224430;s:144:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient-services/src/TagManager/Resource\";i:96195;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient-services/src/TagManager\";i:288855;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient-services/src/Analytics/Resource\";i:124833;s:134:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient-services/src/Analytics\";i:452395;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient-services/src/PeopleService/Resource\";i:49768;s:138:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient-services/src/PeopleService\";i:225778;s:150:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient-services/src/SiteVerification/Resource\";i:6334;s:141:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient-services/src/SiteVerification\";i:17244;s:154:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient-services/src/GoogleAnalyticsAdmin/Resource\";i:157158;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient-services/src/GoogleAnalyticsAdmin\";i:543792;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient-services/src/SearchConsole/Resource\";i:17079;s:138:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient-services/src/SearchConsole\";i:80005;s:141:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient-services/src/Adsense/Resource\";i:51215;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient-services/src/Adsense\";i:113739;s:147:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient-services/src/AnalyticsData/Resource\";i:12985;s:138:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient-services/src/AnalyticsData\";i:142394;s:151:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient-services/src/PagespeedInsights/Resource\";i:2646;s:142:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient-services/src/PagespeedInsights\";i:70105;s:152:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient-services/src/AnalyticsReporting/Resource\";i:4125;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient-services/src/AnalyticsReporting\";i:123075;s:124:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient-services/src\";i:2189315;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient-services\";i:2190794;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient/src/Http\";i:25963;s:123:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient/src/Service\";i:12927;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient/src/AccessToken\";i:13031;s:121:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient/src/Utils\";i:10633;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient/src/AuthHandler\";i:10638;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient/src/Task\";i:13331;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient/src\";i:148733;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google/apiclient\";i:148733;s:101:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/google\";i:2563957;s:133:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/symfony/polyfill-php70/Resources/stubs\";i:1207;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/symfony/polyfill-php70/Resources\";i:1207;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/symfony/polyfill-php70\";i:4481;s:138:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/symfony/polyfill-intl-idn/Resources/unidata\";i:265382;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/symfony/polyfill-intl-idn/Resources\";i:265382;s:120:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/symfony/polyfill-intl-idn\";i:302098;s:117:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/symfony/polyfill-php72\";i:9292;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/symfony/polyfill-intl-normalizer/Resources/unidata\";i:122251;s:143:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/symfony/polyfill-intl-normalizer/Resources/stubs\";i:435;s:137:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/symfony/polyfill-intl-normalizer/Resources\";i:122686;s:127:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/symfony/polyfill-intl-normalizer\";i:132779;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/symfony\";i:448650;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/monolog/monolog/src/Monolog/Formatter\";i:51399;s:145:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/monolog/monolog/src/Monolog/Handler/FingersCrossed\";i:3675;s:140:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/monolog/monolog/src/Monolog/Handler/SyslogUdp\";i:1441;s:136:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/monolog/monolog/src/Monolog/Handler/Slack\";i:8496;s:135:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/monolog/monolog/src/Monolog/Handler/Curl\";i:1474;s:130:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/monolog/monolog/src/Monolog/Handler\";i:245383;s:132:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/monolog/monolog/src/Monolog/Processor\";i:19772;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/monolog/monolog/src/Monolog\";i:364407;s:114:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/monolog/monolog/src\";i:364407;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/monolog/monolog\";i:364407;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/monolog\";i:364407;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/psr/log/Psr/Log/Test\";i:10105;s:110:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/psr/log/Psr/Log\";i:22521;s:106:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/psr/log/Psr\";i:22521;s:102:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/psr/log\";i:22521;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/psr/cache/src\";i:8825;s:104:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/psr/cache\";i:8825;s:115:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/psr/http-message/src\";i:46817;s:111:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/psr/http-message\";i:46817;s:98:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/psr\";i:78163;s:122:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/true/punycode/src/Exception\";i:818;s:112:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/true/punycode/src\";i:11751;s:108:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/true/punycode\";i:11751;s:99:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party/true\";i:11751;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit/third-party\";i:4084502;s:82:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins/google-site-kit\";i:11156858;s:66:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/plugins\";i:219996194;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/mailoptin-optin-log\";i:448;s:94:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/siteground-optimizer-assets\";i:0;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/2022/11\";i:18410025;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/2022/12\";i:62286023;s:71:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/2022\";i:80696048;s:76:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/rank-math\";i:3069;s:91:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/woo-product-feed-pro/xml\";i:1005636;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/woo-product-feed-pro\";i:1005636;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/wc-logs\";i:71478461;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/ast-shipping-providers\";i:1299156;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/2023/06\";i:0;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/2023/07\";i:0;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/2023/01\";i:647120339;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/2023/05\";i:0;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/2023/03\";i:1301512;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/2023/04\";i:0;s:74:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/2023/02\";i:0;s:71:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/2023\";i:648421851;s:93:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/wp-sheet-editor/long-lived\";i:0;s:89:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/wp-sheet-editor/queues\";i:0;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/wp-sheet-editor/imports\";i:0;s:87:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/wp-sheet-editor/logs\";i:0;s:90:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/wp-sheet-editor/exports\";i:0;s:82:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/wp-sheet-editor\";i:0;s:86:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/woocommerce_uploads\";i:13;s:80:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/wpcf7_uploads\";i:152;s:66:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads\";i:803843123;}','yes'),(230952,'PMXE_Plugin_Options','a:17:{s:12:\"info_api_url\";s:27:\"https://www.wpallimport.com\";s:16:\"info_api_url_new\";s:30:\"https://update.wpallimport.com\";s:7:\"dismiss\";i:0;s:18:\"dismiss_manage_top\";i:0;s:21:\"dismiss_manage_bottom\";i:0;s:12:\"cron_job_key\";s:12:\"0VG4dIinGi17\";s:14:\"max_input_time\";i:-1;s:18:\"max_execution_time\";i:0;s:6:\"secure\";i:1;s:7:\"license\";s:0:\"\";s:14:\"license_status\";s:0:\"\";s:18:\"scheduling_license\";s:0:\"\";s:25:\"scheduling_license_status\";s:0:\"\";s:14:\"zapier_api_key\";s:32:\"XuDQRc349Yky5rWUlTlCDI9Adw4x5QCx\";s:21:\"zapier_invitation_url\";s:0:\"\";s:30:\"zapier_invitation_url_received\";s:0:\"\";s:17:\"client_mode_roles\";a:0:{}}','yes'),(230953,'wp_all_export_pro_addons_not_included','1','yes'),(230954,'wp_all_export_pro_db_version','1.8.6','yes'),(230978,'PMXI_Plugin_Options','a:34:{s:12:\"info_api_url\";s:27:\"https://www.wpallimport.com\";s:16:\"info_api_url_new\";s:30:\"https://update.wpallimport.com\";s:18:\"scheduling_license\";s:0:\"\";s:25:\"scheduling_license_status\";s:0:\"\";s:18:\"history_file_count\";i:10000;s:16:\"history_file_age\";i:365;s:15:\"highlight_limit\";i:10000;s:19:\"upload_max_filesize\";i:2048;s:13:\"post_max_size\";i:2048;s:14:\"max_input_time\";i:-1;s:18:\"max_execution_time\";i:-1;s:7:\"dismiss\";i:0;s:16:\"dismiss_speed_up\";i:0;s:13:\"html_entities\";i:0;s:11:\"utf8_decode\";i:0;s:12:\"cron_job_key\";s:8:\"55-f7eja\";s:10:\"chunk_size\";i:32;s:9:\"pingbacks\";i:1;s:14:\"backups_prompt\";i:1;s:33:\"legacy_special_character_handling\";i:1;s:14:\"case_sensitive\";i:1;s:12:\"session_mode\";s:7:\"default\";s:17:\"enable_ftp_import\";i:0;s:16:\"large_feed_limit\";i:1000;s:26:\"cron_processing_time_limit\";i:59;s:6:\"secure\";i:1;s:11:\"log_storage\";i:5;s:10:\"cron_sleep\";s:0:\"\";s:4:\"port\";s:0:\"\";s:16:\"google_client_id\";s:0:\"\";s:16:\"google_signature\";s:0:\"\";s:8:\"licenses\";a:0:{}s:8:\"statuses\";a:0:{}s:19:\"force_stream_reader\";i:0;}','no'),(230979,'PMGI_Plugin_Options','a:34:{s:12:\"info_api_url\";s:27:\"https://www.wpallimport.com\";s:16:\"info_api_url_new\";s:30:\"https://update.wpallimport.com\";s:18:\"scheduling_license\";s:0:\"\";s:25:\"scheduling_license_status\";s:0:\"\";s:18:\"history_file_count\";i:10000;s:16:\"history_file_age\";i:365;s:15:\"highlight_limit\";i:10000;s:19:\"upload_max_filesize\";i:2048;s:13:\"post_max_size\";i:2048;s:14:\"max_input_time\";i:-1;s:18:\"max_execution_time\";i:-1;s:7:\"dismiss\";i:0;s:16:\"dismiss_speed_up\";i:0;s:13:\"html_entities\";i:0;s:11:\"utf8_decode\";i:0;s:12:\"cron_job_key\";s:8:\"55-f7eja\";s:10:\"chunk_size\";i:32;s:9:\"pingbacks\";i:1;s:14:\"backups_prompt\";i:1;s:33:\"legacy_special_character_handling\";i:1;s:14:\"case_sensitive\";i:1;s:12:\"session_mode\";s:7:\"default\";s:17:\"enable_ftp_import\";i:0;s:16:\"large_feed_limit\";i:1000;s:26:\"cron_processing_time_limit\";i:59;s:6:\"secure\";i:1;s:11:\"log_storage\";i:5;s:10:\"cron_sleep\";s:0:\"\";s:4:\"port\";s:0:\"\";s:16:\"google_client_id\";s:0:\"\";s:16:\"google_signature\";s:0:\"\";s:8:\"licenses\";a:0:{}s:8:\"statuses\";a:0:{}s:19:\"force_stream_reader\";i:0;}','no'),(230985,'pmxi_is_migrated','4.8.5','no'),(230986,'wp_all_import_db_version','4.8.5','no'),(231199,'_wp_all_import_functions_hash_3','d41d8cd98f00b204e9800998ecf8427eee243d8d25bc8a3b9f99abbb458a66f6','no'),(231206,'post_count','28','no'),(231228,'_wpallimport_session_3_','a:8:{s:6:\"source\";s:227:\"a:4:{s:4:\"name\";s:37:\"Articles_Export_2023_July_22_2343.csv\";s:4:\"type\";s:6:\"upload\";s:4:\"path\";s:91:\"/wpallimport/uploads/41fdc45d5c11e7503fc687f7b00cafd9/Articles_Export_2023_July_22_2343.csv\";s:12:\"root_element\";s:4:\"node\";}\";s:7:\"options\";s:9644:\"a:231:{s:4:\"type\";s:4:\"post\";s:21:\"is_override_post_type\";i:0;s:15:\"post_type_xpath\";s:0:\"\";s:8:\"deligate\";s:0:\"\";s:11:\"wizard_type\";s:3:\"new\";s:8:\"ftp_host\";s:0:\"\";s:8:\"ftp_path\";s:0:\"\";s:8:\"ftp_root\";s:1:\"/\";s:8:\"ftp_port\";s:2:\"21\";s:12:\"ftp_username\";s:0:\"\";s:12:\"ftp_password\";s:0:\"\";s:15:\"ftp_private_key\";s:0:\"\";s:11:\"custom_type\";s:4:\"post\";s:14:\"featured_delim\";s:1:\",\";s:10:\"atch_delim\";s:1:\",\";s:25:\"is_search_existing_attach\";s:1:\"0\";s:15:\"post_taxonomies\";a:1:{s:8:\"category\";s:156:\"[{\"item_id\":\"1\",\"left\":2,\"right\":5,\"parent_id\":null,\"xpath\":\"\",\"assign\":false},{\"item_id\":\"2\",\"left\":3,\"right\":4,\"parent_id\":\"1\",\"xpath\":\"\",\"assign\":false}]\";}s:6:\"parent\";i:0;s:23:\"is_multiple_page_parent\";s:3:\"yes\";s:18:\"single_page_parent\";s:0:\"\";s:5:\"order\";s:1:\"0\";s:6:\"status\";s:7:\"publish\";s:13:\"page_template\";s:7:\"default\";s:25:\"is_multiple_page_template\";s:3:\"yes\";s:20:\"single_page_template\";s:0:\"\";s:15:\"page_taxonomies\";a:0:{}s:9:\"date_type\";s:8:\"specific\";s:4:\"date\";s:9:\"{date[1]}\";s:10:\"date_start\";s:3:\"now\";s:8:\"date_end\";s:3:\"now\";s:11:\"custom_name\";a:3:{i:0;s:18:\"_yoast_wpseo_title\";i:1;s:20:\"_yoast_wpseo_focuskw\";i:2;s:21:\"_yoast_wpseo_metadesc\";}s:12:\"custom_value\";a:3:{i:0;s:23:\"{_yoast_wpseo_title[1]}\";i:1;s:25:\"{_yoast_wpseo_focuskw[1]}\";i:2;s:26:\"{_yoast_wpseo_metadesc[1]}\";}s:13:\"custom_format\";a:4:{i:0;s:1:\"0\";i:1;s:1:\"0\";i:2;s:1:\"0\";i:3;s:1:\"0\";}s:14:\"custom_mapping\";a:0:{}s:17:\"serialized_values\";a:4:{i:0;s:7:\"[\"\",\"\"]\";i:1;s:7:\"[\"\",\"\"]\";i:2;s:7:\"[\"\",\"\"]\";i:3;s:7:\"[\"\",\"\"]\";}s:20:\"custom_mapping_rules\";a:4:{i:0;s:2:\"[]\";i:1;s:2:\"[]\";i:2;s:2:\"[]\";i:3;s:2:\"[]\";}s:14:\"comment_status\";s:4:\"open\";s:20:\"comment_status_xpath\";s:0:\"\";s:11:\"ping_status\";s:4:\"open\";s:17:\"ping_status_xpath\";s:0:\"\";s:12:\"create_draft\";s:2:\"no\";s:6:\"author\";s:19:\"{authorusername[1]}\";s:12:\"post_excerpt\";s:12:\"{excerpt[1]}\";s:9:\"post_slug\";s:9:\"{slug[1]}\";s:11:\"attachments\";s:0:\"\";s:19:\"is_import_specified\";s:1:\"0\";s:16:\"import_specified\";s:0:\"\";s:16:\"is_delete_source\";i:0;s:8:\"is_cloak\";i:0;s:10:\"unique_key\";s:14:\"{permalink[1]}\";s:14:\"tmp_unique_key\";s:14:\"{permalink[1]}\";s:9:\"feed_type\";s:4:\"auto\";s:22:\"search_existing_images\";s:1:\"1\";s:18:\"create_new_records\";s:1:\"0\";s:20:\"is_selective_hashing\";s:1:\"1\";s:17:\"is_delete_missing\";s:1:\"0\";s:20:\"delete_missing_logic\";s:6:\"import\";s:21:\"delete_missing_action\";s:4:\"keep\";s:24:\"is_send_removed_to_trash\";s:1:\"1\";s:32:\"is_change_post_status_of_removed\";s:1:\"0\";s:17:\"status_of_removed\";s:5:\"draft\";s:26:\"status_of_removed_products\";s:10:\"outofstock\";s:20:\"set_missing_to_draft\";i:0;s:20:\"is_update_missing_cf\";s:1:\"0\";s:22:\"update_missing_cf_name\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:23:\"update_missing_cf_value\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:20:\"is_keep_former_posts\";s:2:\"no\";s:16:\"is_update_status\";s:1:\"1\";s:17:\"is_update_content\";s:1:\"1\";s:15:\"is_update_title\";s:1:\"1\";s:14:\"is_update_slug\";s:1:\"1\";s:17:\"is_update_excerpt\";s:1:\"1\";s:20:\"is_update_categories\";s:1:\"1\";s:16:\"is_update_author\";s:1:\"1\";s:24:\"is_update_comment_status\";s:1:\"1\";s:21:\"is_update_ping_status\";s:1:\"1\";s:19:\"is_update_post_type\";s:1:\"1\";s:21:\"is_update_post_format\";s:1:\"1\";s:23:\"update_categories_logic\";s:11:\"full_update\";s:15:\"taxonomies_list\";s:1:\"0\";s:20:\"taxonomies_only_list\";s:0:\"\";s:22:\"taxonomies_except_list\";s:0:\"\";s:21:\"is_update_attachments\";s:1:\"1\";s:16:\"is_update_images\";s:1:\"1\";s:19:\"update_images_logic\";s:11:\"full_update\";s:15:\"is_update_dates\";s:1:\"1\";s:20:\"is_update_menu_order\";s:1:\"1\";s:16:\"is_update_parent\";s:1:\"1\";s:19:\"is_keep_attachments\";i:0;s:21:\"is_delete_attachments\";s:1:\"0\";s:12:\"is_keep_imgs\";i:0;s:14:\"is_delete_imgs\";s:1:\"0\";s:20:\"do_not_remove_images\";s:1:\"1\";s:23:\"is_update_custom_fields\";s:1:\"1\";s:26:\"update_custom_fields_logic\";s:11:\"full_update\";s:18:\"custom_fields_list\";s:1:\"0\";s:23:\"custom_fields_only_list\";s:0:\"\";s:25:\"custom_fields_except_list\";s:0:\"\";s:18:\"duplicate_matching\";s:4:\"auto\";s:19:\"duplicate_indicator\";s:5:\"title\";s:21:\"custom_duplicate_name\";s:0:\"\";s:22:\"custom_duplicate_value\";s:0:\"\";s:18:\"is_update_previous\";i:0;s:12:\"is_scheduled\";s:0:\"\";s:16:\"scheduled_period\";s:0:\"\";s:13:\"friendly_name\";s:0:\"\";s:19:\"records_per_request\";s:2:\"20\";s:18:\"auto_rename_images\";s:1:\"0\";s:25:\"auto_rename_images_suffix\";s:0:\"\";s:11:\"images_name\";s:8:\"filename\";s:11:\"post_format\";s:8:\"standard\";s:17:\"post_format_xpath\";s:0:\"\";s:8:\"encoding\";s:5:\"UTF-8\";s:9:\"delimiter\";s:1:\",\";s:16:\"image_meta_title\";s:15:\"{imagetitle[1]}\";s:22:\"image_meta_title_delim\";s:1:\",\";s:18:\"image_meta_caption\";s:0:\"\";s:24:\"image_meta_caption_delim\";s:1:\",\";s:14:\"image_meta_alt\";s:17:\"{imagealttext[1]}\";s:20:\"image_meta_alt_delim\";s:1:\",\";s:22:\"image_meta_description\";s:21:\"{imagedescription[1]}\";s:28:\"image_meta_description_delim\";s:1:\",\";s:34:\"image_meta_description_delim_logic\";s:8:\"separate\";s:12:\"status_xpath\";s:0:\"\";s:15:\"download_images\";s:3:\"yes\";s:17:\"converted_options\";s:1:\"1\";s:15:\"update_all_data\";s:3:\"yes\";s:12:\"is_fast_mode\";s:1:\"0\";s:9:\"chuncking\";s:1:\"1\";s:17:\"import_processing\";s:4:\"ajax\";s:26:\"processing_iteration_logic\";s:4:\"auto\";s:16:\"save_template_as\";s:1:\"1\";s:5:\"title\";s:10:\"{title[1]}\";s:7:\"content\";s:12:\"{content[1]}\";s:4:\"name\";s:6:\"config\";s:18:\"is_keep_linebreaks\";s:1:\"1\";s:13:\"is_leave_html\";s:1:\"0\";s:14:\"fix_characters\";i:0;s:9:\"pid_xpath\";s:0:\"\";s:10:\"slug_xpath\";s:0:\"\";s:11:\"title_xpath\";s:0:\"\";s:14:\"featured_image\";s:0:\"\";s:23:\"download_featured_image\";s:13:\"{imageurl[1]}\";s:23:\"download_featured_delim\";s:1:\",\";s:22:\"gallery_featured_image\";s:13:\"{imageurl[1]}\";s:22:\"gallery_featured_delim\";s:1:\",\";s:14:\"filters_output\";s:0:\"\";s:11:\"is_featured\";s:1:\"1\";s:17:\"is_featured_xpath\";s:0:\"\";s:20:\"set_image_meta_title\";s:1:\"1\";s:22:\"set_image_meta_caption\";s:1:\"0\";s:18:\"set_image_meta_alt\";s:1:\"1\";s:26:\"set_image_meta_description\";s:1:\"1\";s:18:\"auto_set_extension\";s:1:\"0\";s:13:\"new_extension\";s:0:\"\";s:9:\"tax_logic\";a:2:{s:8:\"category\";s:6:\"single\";s:8:\"post_tag\";s:6:\"single\";}s:10:\"tax_assing\";a:2:{s:8:\"category\";s:1:\"1\";s:8:\"post_tag\";s:1:\"1\";}s:11:\"term_assing\";a:2:{s:8:\"category\";s:1:\"1\";s:8:\"post_tag\";s:1:\"1\";}s:20:\"multiple_term_assing\";a:2:{s:8:\"category\";s:1:\"1\";s:8:\"post_tag\";s:1:\"1\";}s:23:\"tax_hierarchical_assing\";a:1:{s:8:\"category\";a:2:{i:0;s:1:\"1\";s:6:\"NUMBER\";s:1:\"1\";}}s:34:\"tax_hierarchical_last_level_assign\";a:1:{s:8:\"category\";s:1:\"0\";}s:16:\"tax_single_xpath\";a:2:{s:8:\"category\";s:14:\"{catgories[1]}\";s:8:\"post_tag\";s:14:\"{tiquettes[1]}\";}s:18:\"tax_multiple_xpath\";a:2:{s:8:\"category\";s:0:\"\";s:8:\"post_tag\";s:0:\"\";}s:22:\"tax_hierarchical_xpath\";a:1:{s:8:\"category\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}}s:18:\"tax_multiple_delim\";a:2:{s:8:\"category\";s:1:\",\";s:8:\"post_tag\";s:1:\",\";}s:22:\"tax_hierarchical_delim\";a:1:{s:8:\"category\";s:1:\">\";}s:25:\"tax_manualhierarchy_delim\";a:1:{s:8:\"category\";s:1:\",\";}s:29:\"tax_hierarchical_logic_entire\";a:1:{s:8:\"category\";s:1:\"0\";}s:29:\"tax_hierarchical_logic_manual\";a:1:{s:8:\"category\";s:1:\"0\";}s:18:\"tax_enable_mapping\";a:2:{s:8:\"category\";s:1:\"0\";s:8:\"post_tag\";s:1:\"0\";}s:25:\"tax_is_full_search_single\";a:2:{s:8:\"category\";s:1:\"0\";s:8:\"post_tag\";s:1:\"0\";}s:27:\"tax_is_full_search_multiple\";a:2:{s:8:\"category\";s:1:\"0\";s:8:\"post_tag\";s:1:\"0\";}s:29:\"tax_assign_to_one_term_single\";a:2:{s:8:\"category\";s:1:\"0\";s:8:\"post_tag\";s:1:\"0\";}s:31:\"tax_assign_to_one_term_multiple\";a:2:{s:8:\"category\";s:1:\"0\";s:8:\"post_tag\";s:1:\"0\";}s:11:\"tax_mapping\";a:2:{s:8:\"category\";s:2:\"[]\";s:8:\"post_tag\";s:2:\"[]\";}s:17:\"tax_logic_mapping\";a:2:{s:8:\"category\";s:1:\"0\";s:8:\"post_tag\";s:1:\"0\";}s:31:\"is_tax_hierarchical_group_delim\";a:1:{s:8:\"category\";s:1:\"0\";}s:28:\"tax_hierarchical_group_delim\";a:1:{s:8:\"category\";s:1:\"|\";}s:12:\"nested_files\";a:0:{}s:17:\"xml_reader_engine\";s:1:\"0\";s:13:\"taxonomy_type\";s:0:\"\";s:15:\"taxonomy_parent\";s:0:\"\";s:13:\"taxonomy_slug\";s:4:\"auto\";s:19:\"taxonomy_slug_xpath\";s:0:\"\";s:21:\"taxonomy_display_type\";s:0:\"\";s:27:\"taxonomy_display_type_xpath\";s:0:\"\";s:15:\"import_img_tags\";s:1:\"0\";s:28:\"search_existing_images_logic\";s:6:\"by_url\";s:24:\"enable_import_scheduling\";s:5:\"false\";s:17:\"scheduling_enable\";s:1:\"0\";s:22:\"scheduling_weekly_days\";s:0:\"\";s:17:\"scheduling_run_on\";s:6:\"weekly\";s:22:\"scheduling_monthly_day\";s:0:\"\";s:16:\"scheduling_times\";a:1:{i:0;s:0:\"\";}s:19:\"scheduling_timezone\";s:17:\"America/Matamoros\";s:25:\"is_update_comment_post_id\";i:1;s:24:\"is_update_comment_author\";i:1;s:30:\"is_update_comment_author_email\";i:1;s:28:\"is_update_comment_author_url\";i:1;s:27:\"is_update_comment_author_IP\";i:1;s:23:\"is_update_comment_karma\";i:1;s:26:\"is_update_comment_approved\";i:1;s:26:\"is_update_comment_verified\";i:1;s:24:\"is_update_comment_rating\";i:1;s:23:\"is_update_comment_agent\";i:1;s:25:\"is_update_comment_user_id\";i:1;s:22:\"is_update_comment_type\";i:1;s:18:\"is_update_comments\";i:1;s:21:\"update_comments_logic\";s:11:\"full_update\";s:14:\"comment_author\";s:0:\"\";s:20:\"comment_author_email\";s:0:\"\";s:18:\"comment_author_url\";s:0:\"\";s:17:\"comment_author_IP\";s:0:\"\";s:13:\"comment_karma\";s:0:\"\";s:14:\"comment_parent\";s:0:\"\";s:16:\"comment_approved\";s:1:\"1\";s:22:\"comment_approved_xpath\";s:0:\"\";s:16:\"comment_verified\";s:1:\"1\";s:22:\"comment_verified_xpath\";s:0:\"\";s:13:\"comment_agent\";s:0:\"\";s:12:\"comment_type\";s:0:\"\";s:18:\"comment_type_xpath\";s:0:\"\";s:15:\"comment_user_id\";s:5:\"email\";s:21:\"comment_user_id_xpath\";s:0:\"\";s:12:\"comment_post\";s:0:\"\";s:14:\"comment_rating\";s:0:\"\";s:22:\"comments_repeater_mode\";s:3:\"csv\";s:32:\"comments_repeater_mode_separator\";s:1:\"|\";s:30:\"comments_repeater_mode_foreach\";s:0:\"\";s:8:\"comments\";a:9:{s:7:\"content\";s:0:\"\";s:6:\"author\";s:0:\"\";s:12:\"author_email\";s:0:\"\";s:10:\"author_url\";s:0:\"\";s:9:\"author_ip\";s:0:\"\";s:5:\"karma\";s:0:\"\";s:8:\"approved\";s:0:\"\";s:4:\"type\";s:0:\"\";s:4:\"date\";s:3:\"now\";}s:5:\"xpath\";s:5:\"/node\";}\";s:18:\"is_loaded_template\";s:0:\"\";s:15:\"update_previous\";s:1:\"3\";s:5:\"xpath\";s:5:\"/node\";s:8:\"filepath\";s:157:\"/home/customer/www/se.teng-shop.com/public_html/wp-content/uploads/wpallimport/uploads/41fdc45d5c11e7503fc687f7b00cafd9/Articles_Export_2023_July_22_2343.xml\";s:5:\"count\";s:2:\"28\";s:8:\"encoding\";s:5:\"UTF-8\";}','no'),(231229,'_wpallimport_session_expires_3_','1690249872','no'),(231266,'_wp_all_import_functions_hash_4','d41d8cd98f00b204e9800998ecf8427eee243d8d25bc8a3b9f99abbb458a66f6','no'),(231573,'_wp_all_import_functions_hash_5','d41d8cd98f00b204e9800998ecf8427eee243d8d25bc8a3b9f99abbb458a66f6','no'),(231585,'block_categories_children','a:0:{}','yes'),(231587,'featured_item_category_children','a:0:{}','yes'),(232759,'googlesitekit_tagmanager_settings','a:8:{s:7:\"ownerID\";i:5;s:9:\"accountID\";s:10:\"6076289668\";s:14:\"ampContainerID\";s:0:\"\";s:11:\"containerID\";s:12:\"GTM-KKGLDB6L\";s:19:\"internalContainerID\";s:9:\"136079566\";s:22:\"internalAMPContainerID\";s:0:\"\";s:10:\"useSnippet\";b:1;s:12:\"gaPropertyID\";s:0:\"\";}','yes'),(233244,'_wpallexport_session_new_','a:96:{s:14:\"is_user_export\";b:0;s:22:\"is_woo_customer_export\";b:0;s:17:\"is_comment_export\";b:0;s:18:\"is_taxonomy_export\";b:0;s:20:\"is_woo_review_export\";b:0;s:3:\"cpt\";s:21:\"a:1:{i:0;s:4:\"post\";}\";s:11:\"whereclause\";s:0:\"\";s:10:\"joinclause\";s:6:\"a:0:{}\";s:11:\"exportquery\";s:120258:\"O:8:\"WP_Query\":56:{s:5:\"query\";a:5:{s:9:\"post_type\";a:1:{i:0;s:4:\"post\";}s:11:\"post_status\";s:3:\"any\";s:7:\"orderby\";s:2:\"ID\";s:5:\"order\";s:3:\"ASC\";s:14:\"posts_per_page\";i:10;}s:10:\"query_vars\";a:67:{s:9:\"post_type\";a:1:{i:0;s:4:\"post\";}s:11:\"post_status\";s:3:\"any\";s:7:\"orderby\";s:2:\"ID\";s:5:\"order\";s:3:\"ASC\";s:14:\"posts_per_page\";i:10;s:5:\"error\";s:0:\"\";s:1:\"m\";s:0:\"\";s:1:\"p\";i:0;s:11:\"post_parent\";s:0:\"\";s:7:\"subpost\";s:0:\"\";s:10:\"subpost_id\";s:0:\"\";s:10:\"attachment\";s:0:\"\";s:13:\"attachment_id\";i:0;s:4:\"name\";s:0:\"\";s:8:\"pagename\";s:0:\"\";s:7:\"page_id\";i:0;s:6:\"second\";s:0:\"\";s:6:\"minute\";s:0:\"\";s:4:\"hour\";s:0:\"\";s:3:\"day\";i:0;s:8:\"monthnum\";i:0;s:4:\"year\";i:0;s:1:\"w\";i:0;s:13:\"category_name\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:3:\"cat\";s:0:\"\";s:6:\"tag_id\";s:0:\"\";s:6:\"author\";s:0:\"\";s:11:\"author_name\";s:0:\"\";s:4:\"feed\";s:0:\"\";s:2:\"tb\";s:0:\"\";s:5:\"paged\";i:0;s:8:\"meta_key\";s:0:\"\";s:10:\"meta_value\";s:0:\"\";s:7:\"preview\";s:0:\"\";s:1:\"s\";s:0:\"\";s:8:\"sentence\";s:0:\"\";s:5:\"title\";s:0:\"\";s:6:\"fields\";s:0:\"\";s:10:\"menu_order\";s:0:\"\";s:5:\"embed\";s:0:\"\";s:12:\"category__in\";a:0:{}s:16:\"category__not_in\";a:0:{}s:13:\"category__and\";a:0:{}s:8:\"post__in\";a:0:{}s:12:\"post__not_in\";a:0:{}s:13:\"post_name__in\";a:0:{}s:7:\"tag__in\";a:0:{}s:11:\"tag__not_in\";a:0:{}s:8:\"tag__and\";a:0:{}s:12:\"tag_slug__in\";a:0:{}s:13:\"tag_slug__and\";a:0:{}s:15:\"post_parent__in\";a:0:{}s:19:\"post_parent__not_in\";a:0:{}s:10:\"author__in\";a:0:{}s:14:\"author__not_in\";a:0:{}s:14:\"search_columns\";a:0:{}s:19:\"ignore_sticky_posts\";b:0;s:16:\"suppress_filters\";b:0;s:13:\"cache_results\";b:1;s:22:\"update_post_term_cache\";b:1;s:22:\"update_menu_item_cache\";b:0;s:19:\"lazy_load_term_meta\";b:1;s:22:\"update_post_meta_cache\";b:1;s:8:\"nopaging\";b:0;s:17:\"comments_per_page\";s:2:\"50\";s:13:\"no_found_rows\";b:0;}s:9:\"tax_query\";O:12:\"WP_Tax_Query\":6:{s:7:\"queries\";a:0:{}s:8:\"relation\";s:3:\"AND\";s:16:\"\0*\0table_aliases\";a:0:{}s:13:\"queried_terms\";a:0:{}s:13:\"primary_table\";s:9:\"qdx_posts\";s:17:\"primary_id_column\";s:2:\"ID\";}s:10:\"meta_query\";O:13:\"WP_Meta_Query\":9:{s:7:\"queries\";a:0:{}s:8:\"relation\";N;s:10:\"meta_table\";N;s:14:\"meta_id_column\";N;s:13:\"primary_table\";N;s:17:\"primary_id_column\";N;s:16:\"\0*\0table_aliases\";a:0:{}s:10:\"\0*\0clauses\";a:0:{}s:18:\"\0*\0has_or_relation\";b:0;}s:10:\"date_query\";b:0;s:14:\"queried_object\";N;s:17:\"queried_object_id\";N;s:7:\"request\";s:243:\"\n			SELECT SQL_CALC_FOUND_ROWS  qdx_posts.*\n			FROM qdx_posts \n			WHERE 1=1  AND qdx_posts.post_type = \'post\' AND ((qdx_posts.post_status <> \'trash\' AND qdx_posts.post_status <> \'auto-draft\'))\n			\n			ORDER BY qdx_posts.ID ASC\n			LIMIT 0, 10\n		\";s:5:\"posts\";a:10:{i:0;O:7:\"WP_Post\":24:{s:2:\"ID\";i:152;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-11-30 21:32:18\";s:13:\"post_date_gmt\";s:19:\"2022-11-30 20:32:18\";s:12:\"post_content\";s:7645:\"<!-- wp:flatsome/uxbuilder -->\n[ux_text text_align=\"left\"]\n<div>Kinesiska lyktor är en perfekt symbol för den kinesiska kulturen. I den här artikeln kan du läsa om deras historia och betydelse, men också om olika typer av lyktor och hur de används.</div>\n[/ux_text]\n[gap]\n<h2>Historia om kinesiska lyktor</h2>\n<p>Kinesiska lyktor dök upp för första gången under Han-dynastin, närmare bestämt under den östra Hans-dynastin (25-220). Historiker tror att de främst användes som lampor, långt innan elektriciteten uppfanns eller gas användes. För att tillverka dem användes flera <strong>hantverkstekniker</strong>, t.ex. målning, pappersskärning eller sömnad. De material som användes varierade och inkluderade bambu, trä, vetestrå eller metall. De vanligaste materialen var dock papper och siden.</p>\n[gap height=\"50px\"]\n[ux_image id=\"568\" image_size=\"original\" height=\"56.25%\"]\n[gap height=\"50px\"]\n<div>Därefter började munkarna tända lyktor <strong>för att tillbe Buddha</strong>, särskilt på den tolfte dagen i den första månaden i månkalendern. Under den östra Hansdynastin beordrade kejsaren Liu Zhuang, som var buddhist, kineserna att använda lyktor för att imitera munkarna, och på så sätt populariserades de kinesiska lyktorna.</div>\n<div>&nbsp;</div>\n<div>Senare, under Tangdynastin (618-907), tillverkade och tände kineserna lyktor för att visa sin <strong>tacksamhet</strong> för det lyckliga liv de levde. Dessa ljus symboliserade Kinas styrka, makt och välstånd.</div>\n<div>&nbsp;</div>\n<div> Slutligen har historiker också dragit slutsatsen att kinesiska lyktor användes under <strong>krig</strong>, som ett kommunikationsmedel för att överföra hemliga meddelanden eller för att signalera en inkräktare.</div>\n[gap]\n<h2>Oldtida typer av kinesiska lyktor</h2>\n<p>Förr i tiden fanns det många olika typer av lyktor. En av dem var de kungliga lyktorna, som, vilket namnet antyder, i allmänhet användes för belysning i slott och palats. De är kända för att framkalla ett mycket <strong>delikat kinesiskt hantverk</strong>.</p>\n[gap height=\"50px\"]\n[ux_image id=\"572\" image_size=\"original\" height=\"56.25%\"]\n[gap height=\"50px\"]\n<p>Lanternor användes också för att kasta skuggor, vanligtvis i underhållningssyfte. Dessa <strong>lyktor</strong> hade samma form som de kungliga lyktorna, förutom att de var täckta med inte ett, utan två lager papper eller siden.</p>\n<p>Därefter limmades ytterligare pappersbitar in i det inre lagret för att <strong>skapa skuggor</strong> när de tändes. Värmen fick papperet att rotera, vilket fick skuggorna att snurra och röra sig över väggarna.</p>\n[gap]\n<h2>Moderna kinesiska lyktor</h2>\n<p>Nuförtiden finns det fler och fler typer av lyktor. Det finns fortfarande ett brett utbud av lyktor i traditionell stil: papperslyktor, ljuslyktor, gasvävslyktor, silkespapperslyktor, rispapperslyktor... Men teknik används ibland också, och de traditionella ljusen ersätts ibland av LED-lampor.</p>\n<p>Så vi hittar elektriska lyktor, ibland med ett mångfärgat ljus, och till och med musiklyktor. Formen på kinesiska lyktor har utvecklats och diversifierats. Således hittar vi i form av djur, seriefigurer, tecken på den kinesiska zodiaken eller blommor som den heliga lotusen.</p>\n<p>\n<Dessutom utvecklas lyktorna med tiden, och vi hittar fler och fler lyktor som är helt biologiskt nedbrytbara, med en vegetabilisk vaxbrännare, eller andra himmelska lyktor som är utformade för att slockna försiktigt när brännaren släcks.</p>\n[gap height=\"50px\"]\n[ux_image id=\"574\" image_size=\"original\" height=\"56.25%\"]\n[gap height=\"50px\"]\n<h2>Användning av kinesiska lyktor</h2>\n<div>I allmänhet använder kineser lyktor på tre sätt: det vanligaste är att hänga upp lyktan. I avlägsna områden kan man till och med hitta <strong>hängande lyktor</strong> som pryder gatlyktor. Dessa hängande lyktor, som ofta är dekorerade med tofsar, är inte alltid ljusstarka och hängs ofta upp framför stånd som lyckoamuletter eller dekorativt framför hus.</div>\n<div>&nbsp;</div>\n<div>Flygande lyktor, även kallade himmelslyktor, är särskilt populära under vårfestivalen, som firas under den första fullmånen i den kinesiska kalendern. De släpps då upp i skyn i tusental, drivna av varm luft, som ballonger.&nbsp; Denna <strong>asiatiska lykta</strong> är inte bara Kinas apparat, och det finns också en stor variation av thailändska flygande lyktor.</div>\n<div>&nbsp;</div>\n<div>Slutligen används <a href=\"https://www.nightlightsevent.com/\">flytande lyktor</a>, utrustade med vattentäta brännare, särskilt under drakbåtsfestivalen, där de placeras på floder och sjöar under firandet. Varje lykta skapar en ljusreflektion på vattnet, vilket ger en helt sagolik atmosfär.</div>\n[gap height=\"50px\"]\n[ux_image id=\"576\" height=\"56.25%\"]\n[gap height=\"50px\"]\n<div>Den kinesiska lyktan är mycket festlig och används i allmänhet under firande och helgdagar. Kinesiska familjer tänder dem gärna under det kinesiska nyåret eller någon annan högtid då alla går och släpper lyktorna (Upptäck festivaler och högtider i Kina).</div>\n<div>&nbsp;</div>\n<div>Det <strong>kinesiska nyåret</strong> avslutas på den femtonde dagen i den första månmånaden med vårfestivalen, även kallad lyktfestivalen. Den här dagen släpps tusentals papperslyktor över hela landet för en mycket romantisk och poetisk luftshow. Familjer tänder hundratals lyktor, ofta med kalligrafiska gåtor för barnen att lösa.</div>\n<div>&nbsp;</div>\n<div>Om de lyckas belönas de med små gåvor eller sötsaker. Det är också vanligt att farbröder köper lyktor till sina brorsöner, om de är under tolv år, före <strong>festivalen</strong>. Detta visar att de önskar sin brorson det bästa, särskilt att de är vid utmärkt hälsa för det kommande året.</div>\n<div>&nbsp;</div>\n<div>I Kina är lyktor, förutom vid nationella högtider, också vanliga vid bröllop, födelseceremonier eller andra tillställningar där man vill bringa <strong>god lycka</strong>. Det är då vanligt att hänga upp lyktor framför sitt hus eller i bröllopssalen, som dekorationer och lyckoamuletter.</div>\n<div>&nbsp;</div>\n<div>I västvärlden har de asiatiska lyktorna erövrat genom sin festliga och dekorativa sida. Särskilt <strong>himlens lykta</strong> är mycket populär på bröllop eller födelsedagskalas och kommer att imponera på gästerna. Lyktor med kransar eller ljus, då i form av bollar som är mer runda än traditionella lyktor, är också mycket vanliga i västerländska hem.</div>\n[gap]\n<h2>Betydelse av kinesiska lyktor</h2>\n<p>Generellt sett symboliserar kinesiska lyktor <strong>vitalitet</strong>, <strong>social status</strong> och särskilt <strong>god lycka</strong>. De finns i en mängd olika färger. Röda lyktor är de mest populära, eftersom den röda färgen i Kina är ett tecken på lycka och välgång. I den kinesiska kulturen är rött också en symbol för vitalitet och energi.</p>\n<p>Används däremot en blå lykta betyder det att en familjemedlem är sjuk, eftersom blå i <strong>kinesisk kultur</strong> är en symbol för sjukdom och låg energi. Vita lyktor, å andra sidan, representerar död och sorg.</p>\n<p>En vit lykta vid ingången till ett hus visar att ett dödsfall har inträffat i familjen och tillkännager sorg. Slutligen tenderar lila att ge otur och är en ganska sällsynt lyktfärg. Materialet är inte viktigt, om du använder en <strong>pappers- eller sidenlykta</strong> beror på din smak.</p>\n[ux_products cat=\"42\" products=\"4\"]\n<!-- /wp:flatsome/uxbuilder -->\";s:10:\"post_title\";s:40:\"Kinesiska lyktors historia och betydelse\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:38:\"historia-betydelse-kinesiska-lanternor\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2023-07-25 02:53:02\";s:17:\"post_modified_gmt\";s:19:\"2023-07-25 00:53:02\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:28:\"https://teng-shop.com/?p=152\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:1;O:7:\"WP_Post\":24:{s:2:\"ID\";i:598;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-12-18 05:52:28\";s:13:\"post_date_gmt\";s:19:\"2022-12-18 04:52:28\";s:12:\"post_content\";s:12068:\"<!-- wp:flatsome/uxbuilder -->\n<p>Det kinesiska tecknet \"箸\" översätts med \"ätpinnar\", som är unika ätredskap som uppfanns av de gamla kinesiska civilisationerna under den neolitiska tidsåldern, 7 000 till 6 000 f.Kr. De gamla ätpinnarna var huvudsakligen gjorda av djurben. Idag, bland de olika bordsartiklar som finns tillgängliga, förkroppsligar ätpinnar perfekt kinesiska kulturella egenskaper och har blivit en viktig symbol för kinesisk tradition.</p>\n[gap]\n<h2>Betydelse av kinesiska ätpinnar</h2>\n<div>Etpinnarna har sitt ursprung i Kina. Även om de är enkla är de en fantastisk uppfinning i mänsklighetens historia. \"Även om ätpinnar bara är två träbitar representerar de fysikens teori om hävstångseffekt\", säger Li Zhengdao, en berömd kinesisk fysiker.</div>\n<div>&nbsp;</div>\n<div>Enligt modern vetenskap gör långvarig användning av ätpinnar fingrarna flexibla, vilket är bra för den fysiska och mentala hälsan. Ätpinnar finns i alla möjliga varianter. Så bland de olika köksredskap som finns tillgängliga idag är ätpinnar med en lyckoamulett mycket populära bland kineserna.</div>\n<div>&nbsp;</div>\n<div>Etpinnar symboliserar den månghundraåriga kinesiska civilisationen och förkroppsligar Kinas 5 000-åriga historia. Oavsett om kineser bor i Kina eller utomlands så värnar de om sin koppling till ätpinnar.</div>\n[gap height=\"50px\"]\n[ux_image id=\"1456\"]\n[gap height=\"50px\"]\n<div>\"En ätpinne kan lätt brytas, tio par ätpinnar står stadigt tillsammans.\" Folk känner till denna vackra och upplysta sång av Fu Disheng, en välkänd sångare i Kina.</div>\n<div>&nbsp;</div>\n<div>En ätpinne är faktiskt så ömtålig att den lätt kan gå sönder. Men tio par ätpinnar har en styrka som är oförstörbar under alla omständigheter. Denna symbol av ätpinnar återspeglar en anda av enighet, uthållighet och kraft, som är starka värderingar i Kina. Denna anda som lever i ätpinnarna kommer alltid att påverka, inspirera och uppmuntra människor.</div>\n<div>&nbsp;</div>\n<div>Med ett ord är ätpinnar en del av den kinesiska gastronomiska kulturen, rik på många århundraden.</div>\n[gap height=\"50px\"]\n[ux_image id=\"9664\"]\n[gap height=\"50px\"]\n<h2>De kinesiska ätpinnarnas historia</h2>\n<p>Ett av de viktigaste inslagen i Kinas kulinariska sedvänjor är användningen av ätpinnar. Ätpinnar, även kallade \"zhu\" (箸) i gamla tider, har en lång historia i Kina. I själva verket förespråkade ritualboken \"Du kan inte äta en måltid utan ätpinnar\". Dessa föremål med flera århundraden av historia dök upp under Sangdynastin.</p>\n[gap]\n<h3>Ursprunget till kinesiska ätpinnar</h3>\n<p>Lan Xiang, intendent för Folk Chopsticks Pavilion, sade att historiska dokument daterar elfenbenspinnarna till 3 100 år sedan. Som det står i dokumenten använde \"Zhou\" (kejsaren i slutet av Sangdynastin) elfenbenspinnar medan Ji Zi, Zhous farbror, oroade sig \"eftersom de var för lyxiga\".</p>\n<p>Efter att kejsaren dödat elefanten för att visa sin makt, sågade han av elfenbenet för att göra ätpinnar som är kända som de första ätpinnarna i historien. Historiskt sett var de dock inte de första ätpinnarna, utan de första som tillverkades av elfenben i Kina. Det är därför kinesiska ätpinnar av elfenben har en stark symbolik.</p>\n[gap height=\"50px\"]\n[ux_image id=\"9644\"]\n[gap height=\"50px\"]\n<div>De kinesiska ätpinnarna är nästan 1 000 år äldre än ätpinnarna av elfenben. De första ätpinnarna var gjorda av bambu eftersom Kina då var täckt av urskogar.</div>\n<div>&nbsp;</div>\n<div>Man bröt grenarna för att laga mat i en gryta. Det var omöjligt att greppa maten för hand eftersom den var mycket het. Så kineserna hittade ett sätt att använda bambugrenarna för att plocka upp maten. Vi antar att de gamla ätpinnarna hade olika storlek.&nbsp;</div>\n<div>&nbsp;</div>\n<div>Sedan Sangdynastin har ätpinnarna samma längd och storlek.</div>\n<div>&nbsp;</div>\n<div>\n<div>Förr i tiden tillverkades ätpinnar av lokala material som grenar, pinnar, djurben och horn. I det primitiva samhället tillverkades ätpinnarna huvudsakligen av trä och bambu.</div>\n<div>&nbsp;</div>\n<div>Elfenbens- och jadepinnar dök upp under Xiang- och Sang-dynastierna, medan koppar- och järnpinnar dök upp under vår och höst och krigande stater (från 770 till 221 f.Kr.), flammande lackpinnar, känsliga silver- och guldpinnar i Han-Wei och sex dynastier (rikena Wu, Jing, Song, Qi, Liang, Chen). Idag finns det ätpinnar tillverkade av olika material, bland annat elfenben, noshörningshorn, gyllene ebenholts och olika jadesorter.</div>\n[gap height=\"50px\"]\n[ux_image id=\"1012\"]\n[gap height=\"50px\"]\n<h3>Legender om kinesiska ätpinnar</h3>\n<p>Personer som använder ätpinnar, inklusive kineser, beundrar uppfinningen, men ingen vet vem som uppfann den. Det finns inga exakta uppgifter om skaparen av denna uppfinning som har gjort betydande bidrag till den mänskliga civilisationen.</p>\n<p>En del tror att den ökande analfabetismen, bland andra orsaker, förklarar denna brist på information. Det finns dock myter kring ätpinnarnas födelse. Här är en sammanfattning av två legender som handlar om ätpinnarnas ursprung:</p>\n<p>\n[gap]\n<h4>Legenden om Jiang Ziya</h4>\n<div>Legenden har spridit sig till områden som Sichuan-provinsen. Det sades att Jiang Ziya inte kunde något annat än att fiska. Han var så fattig att hans fru inte stod ut med att leva med honom och planerade att döda honom för att gifta sig med en annan man.</div>\n<div>&nbsp;</div>\n<div>En dag kom Jiang hem tomhänt efter att ha fiskat. Hans fru sa: \"Du måste vara hungrig. Jag har gjort lite kött till dig. Kom och ät!\" Han var hungrig, så han sträckte ut händerna för att ta köttet. Plötsligt hackade en fågel i fönstret i hans hand. Smärtan fick honom att skrika. I sin smärta försökte Jiang jaga bort fågeln från fönstret men fågeln hackade honom en andra gång.</div>\n<div>&nbsp;</div>\n<div>Jiang var så förvirrad att han inte förstod varför fågeln fortsatte att hacka på honom. För att förstå försökte han plocka upp köttet men samma sak hände. Han förstod att det var för att fågeln var en gudomlig fågel och han jagade den till en kulle så att ingen skulle kunna se den.</div>\n[gap height=\"50px\"]\n[ux_image id=\"635\"]\n[gap height=\"50px\"]\n<p>Stående på en bambugren sjöng den gudomliga fågeln: \"Jiang Ziya, ät inte köttet med dina bara händer, använd det som finns under mina fötter.\" När Jiang hörde detta tog han två små pinnar från bambun och gick hem. Sedan tog han köttet med de två pinnarna. Efter att ha gjort detta kom rök ut ur bambun. Jiang förstod att pinnarna reagerade på giftet som hans fru hade hällt i hans mat.</p>\n[gap height=\"50px\"]\n[ux_image id=\"9660\"]\n[gap height=\"50px\"]\n<p>Jiang Ziya visste att den magiska bambu som den gudomliga fågeln gett honom kunde upptäcka giftet. Så han åt alla sina måltider med dem. Efter händelsen vågade hans fru inte förgifta hans mat och hans grannar lärde sig att äta med en bambugren. Senare följde fler och fler människor denna vana, så seden att äta med ätpinnar fördes vidare från generation till generation.</p>\n[gap]\n<h4>Legenden om Da Yu</h4>\n<p>Den här legenden har spridits över hela nordöstra Kina. Det sägs att Yao och Shun, mytiska härskare i det forntida Kina, beordrade Da Yu att kontrollera en översvämning. Efter att ha fått ordern lovade Yu att eliminera översvämningskatastrofen. Han gjorde sitt bästa för att bekämpa översvämningen dag och natt, till den grad att han varken åt eller sov, än mindre vilade.</p>\n[gap height=\"50px\"]\n[ux_image id=\"1460\"]\n[gap height=\"50px\"]\n<p>Yu åkte båt till en ö där han var så hungrig att han använde en lerkruka för att tillaga köttet. När köttet var välkokt i det kokande vattnet kunde han inte ta det för hand och ville inte slösa tid på att vänta på att det skulle svalna, så han tog två grenar för att plocka upp köttet från soppan.</p>\n<p>Han behöll denna vana tills han blev skicklig på att plocka upp mat med små pinnar, vilket imiterades av hans underordnade som förstod att detta sätt att äta kunde göra att de kunde undvika att röra den heta och feta maten med händerna. Så föddes de första typerna av ätpinnar.</p>\n[gap height=\"50px\"]\n[ux_image id=\"9632\"]\n[gap height=\"50px\"]\n<p>Även om dessa legender inte är historiskt korrekta visar de hur människor tänkte förr i tiden.</p>\n[gap]\n<h2>Hur använder man ätpinnar?</h2>\n<p>Den korrekta användningen av ätpinnar kan beskrivas på följande sätt: höger hand håller i ätpinnarna med tummen och pekfingret som klämmer åt den övre änden av ätpinnarna och de andra tre fingrarna håller naturligt i ätpinnarna, så de två ändarna av ätpinnarna bör förbli i linje. Före måltiden placeras ätpinnarna försiktigt på höger sida av skålen och efter måltiden i mitten av skålen, i vertikal riktning.</p>\n[gap height=\"50px\"]\n[ux_image id=\"9642\"]\n[gap height=\"50px\"]\n<h2>Taboes om ätpinnar</h2>\n<p>Kinesiska ätpinnar har sin beskärda del av bra, men också dåliga manér som du inte bör göra med risk för att bringa dig otur:</p>\n<ul>\n<li\n<li><strong>Oförväntad otur</strong>: Att lägga ätpinnar av ojämn längd på bordet anses vara ett tecken på otur.</li>\n<li><strong>Immortal vägledning</strong>: Om ätpinnarna kläms av tummen, långfingret, ringfingret och lillfingret samtidigt som pekfingret sträcks ut, anses detta innebära otur.</li>\n<li><strong>Sug på ätpinnar med ett ljud</strong>: Att ha en bit ätpinne i munnen och upprepade gånger suga på den med ett ljud är ett oartigt beteende.</li>\n<li><strong>Träffa koppen</strong>: Att slå i tallrikar och skålar anses vara respektlöst och ses ner på av andra.</li>\n<li><strong>Skaka för att göra val</strong>: Att ta ätpinnar för att \"gräva\" i tallrikar är ett dåligt sätt att \"gräva graven\".</li>\n<li><strong>Sänka maten</strong>: Att tappa soppa på andra tallrikar eller på bordet när man plockar upp mat med ätpinnar anses vara respektlöst.</li>\n<li><strong>Himmel och jord upp och ned</strong>: Att använda ätpinnar upp och ned betyder att du är en tiggare.</li>\n<li><strong>Nyckelring</strong>: Att använda en ätpinne för att fästa mat på tallrikar ses som förödmjukande för andra vid bordet.</li>\n<li><strong>Bränna rökelse offentligt</strong>: Ätpinnar bör inte lämnas stående i en skål med ris, eftersom detta liknar ritualen med rökelse som symboliserar att \"mata\" de döda.</li>\n<li><strong>Kors</strong>: Under måltiden ska ätpinnarna inte korsas på bordet eftersom detta uppfattas som negativt.</li>\n<li><strong>Fallande ätpinnar stör den odödlige</strong>: Under en måltid är det oartigt om ätpinnarna råkar falla i golvet, eftersom fallande ätpinnar är en störning av de begravda förfäderna.</li>\n</ul>\n</ul>\n[gap]\n<h2>Materialet i kinesiska ätpinnar</h2>\n<div>Pinnpinnar verkar enkla och flexibla, men de varierar i typ och sammansättning. Det finns mer än 100 olika typer i den kinesiska historien, och de vanligaste är trä, bambu och melamin.</div>\n<div>&nbsp;</div>\n<div>Lan Xiang har delat in kinesiska ätpinnar i fem typer baserat på sin samling och forskning. De är: ätpinnar av bambu, ätpinnar av metall, ätpinnar av elfenben och ben, ätpinnar av jade och kemiska ätpinnar.</div>\n<div>&nbsp;</div>\n<div>De tidigaste och mest primitiva ätpinnarna, trä- och bambuätpinnarna, är fortfarande populära idag (upptäck våra kinesiska bambuätpinnar och våra träätpinnar).</div>\n<div>&nbsp;</div>\n<div>Bambu ätpinnar tillverkas av olika typer av bambu, bland annat nandina bambu, fläckig bambu och phyllostachys pubescens. Bambu anses vara en symbol för traditionella kinesiska värderingar. Den är ett exempel på harmonin mellan naturen och människan. Det finns många tillbehör tillverkade av bambu, särskilt på Bambou Calme med sin kollektion av väskor.</div>\n<!-- /wp:flatsome/uxbuilder -->\";s:10:\"post_title\";s:42:\"Kinesiska ätpinnar: Ursprung och historia\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:28:\"kinapinnar-ursprung-historia\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2023-07-25 02:53:10\";s:17:\"post_modified_gmt\";s:19:\"2023-07-25 00:53:10\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:28:\"https://teng-shop.com/?p=598\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:2;O:7:\"WP_Post\":24:{s:2:\"ID\";i:666;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-12-18 19:59:28\";s:13:\"post_date_gmt\";s:19:\"2022-12-18 18:59:28\";s:12:\"post_content\";s:14851:\"<!-- wp:flatsome/uxbuilder -->\n<div><strong>Kina</strong>, liksom många andra östliga kulturer, är djupt rotad i österländsk filosofi, där symbolik spelar en mycket stor roll i dagens kinesiska kultur, särskilt i form av Feng Shui.</div>\n<div>&nbsp;</div>\n<div>Ett viktigt inslag i Feng Shui är användningen av <strong>kinesiska lyckoamuletter</strong> och dekorationer för att förbättra harmonin mellan ditt hem och dess omgivning, förbättra den positiva energin och samtidigt skydda det från otur.</div>\n<div>&nbsp;</div>\n<div><strong>Som vi kommer att se genom de 15 mest populära lyckosymbolerna i den kinesiska kulturen, tar sig kinesiska lyckosymboler många olika former. Dessa lyckosymboler kan också användas med specifika element för att förbättra olika Feng Shui-tillämpningar.</strong></div>\n<div>&nbsp;</div>\n<h2>1) Dzi pärlor</h2>\n[gap height=\"50px\"]\n[ux_image id=\"725\" image_size=\"original\"]\n[gap height=\"50px\"]\n<div>Dzi-pärlor kommer faktiskt inte från Kina utan från <strong>Tibet</strong>. Det tibetanska ordet Dzi betyder \"briljans\" eller \"glans\" och i Kina är Dzi-pärlor också kända som 天珠, bokstavligen översatt som \"himmelens pärla\".</div>\n<div>&nbsp;</div>\n<div>Dzi-pärlorna, som vanligtvis är gjorda av agat med unika mönster, är också populära som lyckoamuletter i kinesisk Feng Shui-praxis. Dzi-stenar tros vara effektiva inte bara för att avvisa negativ energi utan också för att lagra positiv energi för ägarens lycka.</div>\n<div>&nbsp;</div>\n<div><strong>Dzi-stenar</strong> kan ha olika former och mönster: cirklar, ränder, vågmönster osv. De bärs vanligen som armband eller halsband.</div>\n<div>&nbsp;</div>\n<h2>2) Kinesiska lyckomynt</h2\n[gap height=\"50px\"]\n[ux_image id=\"723\" image_size=\"original\"]\n[gap height=\"50px\"]\n<div>Det är lätt att känna igen de gamla <strong>kinesiska mynten</strong> på deras fyrkantiga hål i mitten. Myntets runda form symboliserar himlen, medan det fyrkantiga hålet representerar jorden.</div>\n<div>&nbsp;</div>\n<div>På myntens framsidor finns vanligtvis fyra tecken inskrivna runt de fyra sidorna av det fyrkantiga hålet. Detta är myntets yang-sida. På den andra sidan, yin-sidan, finns upp till två tecken.</div>\n<div>&nbsp;</div>\n<div>Det finns olika sätt att använda dessa mynt som en lyckoamulett, vanligtvis genom att binda tre mynt med ett snöre eller band i rött, som är en <strong>lyckofärg</strong> i Kina. Man tror att mynthalsband ger ekonomisk tur.</div>\n<div>&nbsp;</div>\n<h2>3) Den skrattande buddhan</h2>\n[gap height=\"50px\"]\n[ux_products cat=\"45\" products=\"4\"]\n[gap height=\"50px\"]\n<div>En av de vanligaste lyckoamuletterna i kinesisk Feng Shui är den skrattande <strong>Buddha</strong> eller Lyckans Buddha. Denna lyckoamulett symboliserar lycka, välstånd, fertilitet, hälsa och rikedom.</div>\n<div>&nbsp;</div>\n<div>Den skrattande Buddha är baserad på berättelsen om en buddhistisk munk som levde i Kina på 900-talet. Denna munk var ganska excentrisk och passade inte in på de typiska egenskaperna hos en <strong>buddhistisk munk</strong>, men han var alltid glad och hade ett kärleksfullt hjärta, så han älskades av många. Denna munk ansågs sedan vara reinkarnationen av <a href=\"https://www.so-rummet.se/kategorier/religion/buddhismen/buddhismens-historia\">Gautama Buddha</a>, och tros nu symbolisera glädje, skratt och lycka.</div>\n<div>&nbsp;</div>\n<div>Som lyckoamulett kan <strong>Laughing Buddha</strong> placeras var som helst i huset utom i badrummet eller toaletten. Vanligtvis placeras den dock i vardagsrummet eller någon annan plats i ditt hem eller företag där det finns pengar.</div>\n<div>&nbsp;</div>\n<h2>4) Kinesisk lyckokatt</h2\n</p>\n[gap height=\"50px\"]\n[ux_image id=\"720\" image_size=\"original\"]\n[gap height=\"50px\"]\n<div> <strong>lyckokatten</strong> är baserad på den japanska <strong>Maneki-Neko</strong>. Det är en mycket vanlig lyckoamulett inom Feng Shui. Kattens olika färger kan symbolisera olika saker, och det faktum att katten lyfter sin tass åt vänster eller höger förändrar också symboliken.</div>\n<div>&nbsp;</div>\n<div>Om <strong>katten höjer sin vänstra tass</strong> symboliserar den vanligtvis en hankatt som drar till sig rikedom, förmögenhet och professionell framgång i affärer. Så du kan placera den på ditt kontor eller i det område där du brukar arbeta för att öka din framgång.</div>\n<div>&nbsp;</div>\n<div>Om katten å andra sidan höjer sin högra tass är det en honkatt som symboliserar välstånd, fertilitet och familjelycka, samt <strong>god hälsa</strong>.</div>\n<div>&nbsp;</div>\n<h2>5) Det stora kinesiska lyckofartyget</h2>\n[gap height=\"50px\"]\n[ux_image id=\"729\" image_size=\"original\"]\n[gap height=\"50px\"]\n<div>Förmögenhetsskeppet är också en mycket viktig lyckoamulett i kinesisk Feng Shui. Som namnet antyder är det en skeppsformad dekoration i olika former och storlekar. De bär vanligtvis ädelstenar och miniskatter för att <strong>symbolisera</strong> rikedom och är mycket populära att placera i hem och företag.</div>\n<div>&nbsp;</div>\n<div>Förmögenhetsskeppet tros locka till sig rikedom och lycka. För korrekt Feng Shui har båten vanligtvis segel som helt fångar vinden för att symbolisera att man rör sig mot en bättre framtid.</div>\n<div>&nbsp;</div>\n<div>Det finns lyckobåtar som är helt byggda av ädelstenar och till och med guld, och andra som är byggda av äkta trä och <strong>silkestyg</strong>, som ett äkta skepp.</div>\n<div>&nbsp;</div>\n<h2>6) Trebent groda</h2>\n[gap height=\"50px\"]\n[products ids=\"6000\" columns=\"1\"]\n[gap height=\"50px\"]\n<div>Den trebenta lyckogrodan, även kallad Jin Chanou eller Chan Chu, är också en mycket populär och kraftfull <strong>kinesisk Feng Shui lyckoamulett</strong>. Den tros attrahera och skydda din förmögenhet, samtidigt som den skyddar dig och din familj från otur.</div>\n<div>&nbsp;</div>\n<div>Den trebenta grodan symboliserar pengaflödet, och Feng Shui föreskriver att denna staty inte ska placeras mitt emot din huvuddörr. Den bör inte heller placeras i ditt kök och toalett eller badrum.</div>\n<div>&nbsp;</div>\n<div>Det är vanligt att placera den trebenta grodstatyn i huvudentrén, medan en annan <strong>staty</strong> bredvid den har ryggen mot entrén. Denna konfiguration är tänkt att skydda flödet av pengar som kommer och går utanför hemmet eller företaget.</div>\n<div>&nbsp;</div>\n<h2>7) Träd av ametistkristall</h2>\n[gap height=\"50px\"]\n[ux_image id=\"715\" image_size=\"original\"]\n[gap height=\"50px\"]\n<div>I <strong>kinesisk</strong> Feng Shui anses kristaller innehålla positiv helande energi, och många människor använder dem som koncentrationsobjekt i sin meditationsövning.&nbsp;</div>\n<div>&nbsp;</div>\n<div>I det här fallet är ametistkristallerna arrangerade som ett träd (med en trädgren av harts eller plast) och tros ha helande egenskaper som lugnar sinnet. De anses också vara en lyckoamulett för rikedom och välstånd. Ametistkristallträdet sägs förbättra minnet samtidigt som det bibehåller lugnet och kan också hjälpa till med sömnlöshet. Det har samma funktioner som <a href=\"https://kristallerna.se/blogg/vad-ar-en-dromfangare/\">drömfångare</a> för att jaga bort onda andar och hjälpa dig att sova bättre.</div>\n<div>&nbsp;</div>\n<div>Det finns också kristallträd tillverkade av andra material som agat, citrin, rosenkvarts och andra.</div>\n<div>&nbsp;</div>\n<div>&nbsp;</div>\n<h2>8. Draksköldpadda</h2>\n[gap height=\"50px\"]\n[ux_products ids=\"5994\"]\n[gap height=\"50px\"]\n<div>Draken och <strong>sköldpaddan</strong> är symboler för skydd, visdom och ädelhet i den kinesiska kulturen. De är två av de fyra himmelska djuren (drake, tiger, fenixfågel och sköldpadda).</div>\n<div>&nbsp;</div>\n<div>Drakesköldpaddan har, som namnet antyder, en sköldpaddas kropp men en drakes huvud, och tros symbolisera god hälsa, långt liv, kraft, mod och <strong>framgång</strong>. En draksköldpaddsstaty tros skydda sin ägare från svek i affärer och främja hälsosam harmoni i hemmet och på arbetsplatsen.</div>\n<div>&nbsp;</div>\n<div>Det finns flera typer av draksköldpaddsstatyer som används som lyckoamuletter, inklusive tre av de viktigaste:</div>\n<div>&nbsp;</div>\n<div>Sköldpaddsdrake som bär en pagod (Wen Chang-pagoden) på ryggen. Den är en lyckoamulett för <strong>akademisk framgång</strong></div>\n<div>Sköldpaddsdrake med en bebis (eller ett par bebisar) sittande på sitt skal. Den tros förbättra fertiliteten och familjeharmonin</div>\n<div>Drake-sköldpadda som sitter på mynt och guldtackor, som du kanske har gissat, symboliserar ekonomisk förmögenhet</div>\n<div>&nbsp;</div>\n<h2>9) Pi Xiu</h2>\n[gap height=\"50px\"]\n<div>Pi Xiu, även känd som Pi Yao, Tian Lu, Bai Jie eller Bi Xie, är en mytisk kinesisk chimera som liknar ett bevingat lejon med drakelement. Som lyckoamuletter i <strong>Feng Shui</strong> tros Pi Xiu-statyer skydda sin ägare från onda andar och negativ energi, vilket förhindrar otur.&nbsp;</div>\n<div>&nbsp;</div>\n<div>Pi Xiu gillar att äta guld, smycken, silver och vatten. Därför tror man att de blir rika från alla håll för sin ägare. Pi Xiu anses vara ett mycket lojalt och lydigt mytologiskt djur, vilket gör den till en favorit som <strong>lyckoamulett för personligt skydd</strong>. Du kan hitta Pi Xiu lyckoamuletter i olika former, som nyckelringar, armband eller till och med statyer.</div>\n<div>&nbsp;</div>\n<h2>10) Chi Lin</h2>\n[gap height=\"50px\"]\n[ux_image id=\"711\" image_size=\"original\"]\n[gap height=\"50px\"]\n<div>Chi Lin är en annan mytologisk chimär från <strong>det forntida Kina</strong>, en varelse med drakhuvud men hästkropp. Dessutom har Chi Lin fjäll som en karpfisk. Chi Lin kallas också ofta för drakhästen eller ibland för den kinesiska enhörningen.</div>\n<div>&nbsp;</div>\n<div>Chi Lin tros kunna ge skydd åt sin ägare och även förbättra ägarens hälsa och rikedom. Dessutom är den känd för att vara ett skydd mot olika relationsproblem för att främja ett harmoniskt hushåll. Den förknippas dock mest med fertilitetens <strong>lycka</strong>. Om du vill veta mer om denna varelse och många andra kan du klicka här.</div>\n<div>&nbsp;</div>\n<div>Som en lyckoamulett kan du placera Chi Lin-skulpturen nära huvudingången till ditt hem eller din arbetsplats eller i ditt vardagsrum. Den kan också komma i olika andra former som broderi, staty, nyckelring, amuletter etc. Det finns också många olika material, ytbehandlingar och storlekar.</div>\n<div>&nbsp;</div>\n<h2>11) Kinesiskt skyddslejon</h2>\n[gap height=\"50px\"]\n[ux_image id=\"709\" image_size=\"original\"]\n[gap height=\"50px\"]\n<div>Det kinesiska skyddslejonet eller Fu-hunden är en annan <strong>kinesisk mytologisk varelse</strong>. Traditionellt placeras de framför kejserliga palats, regeringskontor i det gamla Kina och även tempel.</div>\n<div>&nbsp;</div>\n<div>Nuförtiden anses Fu-hundar vara en symbol för en familjs rikedom och sociala status, så de placeras ofta framför stora hus i Kina och <strong>Asien</strong>.</div>\n<div>&nbsp;</div>\n<div>I allmänhet visas kejserliga <strong>guardian lion statues</strong> i par, där honan håller en unge under sin vänstra tass, vilket symboliserar moderns beskydd, och hanen håller en jordglob under sin högra tass, vilket symboliserar skyddet av hans domän (hem).</div>\n<div>&nbsp;</div>\n<h2>12) Lyckobambu Feng Shui</h2>\n[gap height=\"50px\"]\n[ux_image id=\"707\" image_size=\"original\"]\n[gap height=\"50px\"]\n<div>Lucky <strong>Bamboo</strong>, även känd som Lucky Bamboo, är en mycket viktig växt inom Feng Shui och anses ge positiv och fridfull energi till det hem där den finns. Bambu är en flexibel växt som också är ihålig inuti, och i kinesisk filosofi symboliserar detta flexibiliteten och öppenheten hos individen.</div>\n<div>&nbsp;</div>\n<div>Lucky bamboo kan placeras inne i huset, eller så kan du odla riktiga bambuplantor i din <strong>trädgård</strong>. Det finns också olika tillbehör tillverkade av bambustjälkar som tros ge samma effekt.</div>\n<div>&nbsp;</div>\n<div>Antalet stjälkar spelar också en viktig roll vid användning av <strong>Lucky Bamboo</strong>. Tre stjälkar, till exempel, tros ge tre sorters tur: rikedom, livslängd och lycka. Sju stjälkar symboliserar å andra sidan hälsa, medan åtta stjälkar ger lycka till fertilitet, eftersom ordet \"åtta\" på mandarin är mycket likt det ord som används för \"växa\".</div>\n<div>&nbsp;</div>\n<h2>13) Symbol för dubbel lycka</h2>\n[gap height=\"50px\"]\n[ux_image id=\"705\" image_size=\"original\"]\n[gap height=\"50px\"]\n<div>Den <strong>kinesiska symbolen</strong> för dubbel lycka är i princip ordet (xi) som skrivs två gånger sida vid sida så att två av dess streck sammanfogas.</div>\n<div>&nbsp;</div>\n<div>Den här symbolens betydelse är bokstavlig: dubbel dos av lycka för dess ägare, och den används ofta som <strong>dekoration</strong> vid högtider och firanden (t.ex. det kinesiska nyåret, födelsedagsfester, barns födelse etc.).</div>\n<div>&nbsp;</div>\n<div>Tecknet Dubbel lycka användes först som bröllopsdekoration, en symbol för bön om att de nygifta skulle bli lyckliga och att deras äktenskap skulle hålla. Men under årens lopp har den även kommit att användas vid andra <strong>kinesiska festligheter</strong>.</div>\n<div>&nbsp;</div>\n<h2>14) Kinesisk fågel Fenix</h2>\n[gap height=\"50px\"]\n[ux_image id=\"703\" image_size=\"original\"]\n[gap height=\"50px\"]\n<div>Det är en av Kinas fyra väktare (drake, sköldpadda, fenix och tiger), och <strong>fenixen</strong> härskar över alla andra fåglar i Kina.</div>\n<div>&nbsp;</div>\n<div>Hanar av fenix kallas Feng, medan honor kallas Huang. Idag skiljer man dock vanligtvis inte på könen och därför kallas Fenix ofta för Fenghuang, ett kvinnligt väsen som associeras med <strong>draken</strong>, som vanligtvis är ett manligt väsen.</div>\n<div>&nbsp;</div>\n<div>Som <strong>lyckobringare</strong> representerar fenixristningar rättvisa, lydnad och lojalitet, och används ofta som lyckobringare för dem som har otur, eftersom den tros kunna vända under dåliga omständigheter.</div>\n<div>&nbsp;</div>\n<h2>15) Koi karp</h2>\n[gap height=\"50px\"]\n[ux_image id=\"701\" image_size=\"original\"]\n[gap height=\"50px\"]\n<div><strong>Koi</strong> kallas 鲤鱼, Li Yu, eller bokstavligen översatt som \"karpfisk\" i Kina. Det finns många användningsområden för denna lyckoamulett. Till exempel tros en karpstaty placerad på ett skrivbord ge akademisk framgång.</div>\n<div>&nbsp;</div>\n<div>Ett vanligt sätt är att placera 8 karpbitar runt skrivbordet, eftersom 8 är det kinesiska talet för rikedom och välstånd. Några <strong>karpstatyer</strong> placerade i sovrummet tros också ge lycka i ett äktenskap.</div>\n<!-- /wp:flatsome/uxbuilder -->\";s:10:\"post_title\";s:35:\"De 15 bästa kinesiska lyckokakorna\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:26:\"15-kinesiska-lyckosymboler\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2023-07-25 02:53:20\";s:17:\"post_modified_gmt\";s:19:\"2023-07-25 00:53:20\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:28:\"https://teng-shop.com/?p=666\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:3;O:7:\"WP_Post\":24:{s:2:\"ID\";i:731;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-12-18 21:41:17\";s:13:\"post_date_gmt\";s:19:\"2022-12-18 20:41:17\";s:12:\"post_content\";s:12971:\"<!-- wp:flatsome/uxbuilder -->\n<div>Finns det några legendariska <strong>kinesiska krigare</strong>? Vad heter de och vad har de för historia?&nbsp;</div>\n<div>&nbsp;</div>\n<div>På Teng Shop brinner vi för <strong>kinesisk kultur</strong>, så vi kommer att ge dig svaren så exakt som möjligt.</div>\n<div>&nbsp;</div>\n<div><strong>I tusentals år har Kina haft mäktiga dynastier och många krig. Det är därför stora krigare som Sun Wu, Cao Cao eller Xiang Yu kunde glänsa under dessa svåra perioder.</strong></div>\n<div>&nbsp;</div>\n<div>I den här artikeln kommer du att upptäcka :&nbsp;</div>\n<ul>\n<div>&nbsp;</div>\n<li>5 mycket berömda kinesiska krigare\n<li>5 mycket berömda kinesiska krigare</li>\n<li>Deras personliga historia</li>\n<li>Dessa <strong>krigares</strong> inverkan på Kina</li>\n<li>Efter att ha läst den här artikeln kommer dessa kinesiska krigare inte längre att ha några hemligheter för dig!</li>\n</ul>\n</ul>\n<div>Låt oss utan vidare dröjsmål tillsammans upptäcka den första krigaren!</div>\n\n[gap]\n\n<h2>1. Sun Wu (Sun Tzu)</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"756\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Sun Wu, eller <strong>Sun Tzu</strong> är förmodligen den mest berömda kinesiska krigaren i världen. Anledningen till hans berömmelse är hans berömda bok \"<strong>Krigskonsten</strong>\". Boken hjälper krigsgeneraler att bättre organisera sig under ett slag eller under ett krig på ett mer allmänt sätt. Samma bok används inom många områden idag, till exempel inom näringslivet, där det sägs att genom att ersätta ordet \"krig\" med ordet \"näringsliv\", så får vi en helt ny läsning av verket.</div>\n<div>&nbsp;</div>\n<div>Vi har inte mycket information om början av Sun Wus liv, men allt tyder på att han skulle ha fötts i den kinesiska staten Ch\'i och att han skulle ha tjänat kung Ho-lu av Wu som <strong>militär specialist</strong> i slutet av Zhou-dynastin (1046 till 256 f.Kr.).</div>\n<div>&nbsp;</div>\n<div>Den här generalens hela berömmelse byggde på det faktum att han fokuserade på ett krig som var mer psykologiskt än brutalt. Vid en tidpunkt då människor helt enkelt ville eliminera alla sina motståndare under ett krig, föreslog Sun Tzu <strong>alternativ som var mycket mindre våldsamma men desto mer formidabla</strong>. Han använde mänsklig psykologi för att neutralisera fiender och försökte alltid rädda så många oskyldiga människor som möjligt.</div>\n<div>&nbsp;</div>\n<div>Du följde lärdomarna från <a href=\"https://suntzusaid.com/\">Krigskonsten</a> och använde bedrägeri och psykologisk press för att krossa dina fiender. Överraskningsattacker och att bryta fiendens allianser är också en del av denna <strong>taktik</strong>, det viktiga är att hålla så många män som möjligt på din sida.</div>\n\n[gap]\n\n<h2>2. Wu Qi</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"754\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Wu Qi (381 f.Kr.) var född i Zuo i delstaten Wei. Han var en av de <strong>ledande militärerna, statsmännen och reformatorerna</strong> under den tidiga perioden av Tre riken i Kina.</div>\n<div>&nbsp;</div>\n<div>Wu Qi studerade konfucianism under Zeng Shen under sina tidiga år, men övergav senare <strong>konfucianismen</strong> för att studera militärkonst. När han befann sig i staten Lu fick han order om att leda kejsarens armé och besegra Qi, en fiende till staten. Därefter begav han sig till Wei, där han blev mycket uppskattad av markisen av Wei.&nbsp;</div>\n<div>&nbsp;</div>\n<div>Han reformerade också det militära systemet och skapade Wei Wu-soldaterna, som \"vann 64 av 76 strider mot <strong>krigsherrarna</strong>\". Han utnämndes till magistrat av kungen av Chu och ledde reformer.</div>\n<div>&nbsp;</div>\n<div>Han utsågs till magistrat i staten Chu och genomförde reformer som på kort tid stärkte staten Chu och gjorde att den kunde \"pacificera Baiyue i söder, gå samman med Chen och Cai i norr, men erövra de tre Jin-dynastierna och <strong>erövra</strong> Qin i väster\". År 381 f.Kr., efter kungens död, mördades Wu Qi för att ha förolämpat det gamla gardet med sina ansträngningar att ändra lagen.</div>\n<div>&nbsp;</div>\n<div>Wu Qi tjänstgjorde i staterna Lu, Wei och Chu och var en mästare på de tre tankeskolorna - <strong>militär</strong>, juridisk och konfucianism - och var känd som \"Sun Wu\". Hans verk, Wu Zi, intar en viktig plats i det gamla Kinas militära kanon.&nbsp;</div>\n<div>&nbsp;</div>\n<div>Under Tangdynastins kejsare Su Zongs regeringstid inkluderades han i kung Wucheng-templet och blev en av de tio filosoferna i Wushu-templet. Under <strong>kejsare</strong> Huizong av Songdynastin utnämndes han postumt till Guangzongbo, en av de sjuttiotvå generalerna i Wu-templet.</div>\n\n[gap]\n\n<h2>3. Qin Shi Huang</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"752\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Qin Shi Huang Ying Zheng (259-210 f.Kr.), med smeknamnet Ying, Zhao och även känd som Zhao Zheng, var en framstående statsman, strateg och reformator i <strong>det antika Kina</strong>. Han var den första politiska person som fullbordade Kinas enande och den första kinesiska monarken som kallade sig kejsare. Han är den allra första reformatorn i Kina och satte punkt för tio år av brutalt krig.</div>\n<div>&nbsp;</div>\n<div>Ying Zheng föddes i Handan, huvudstaden i staten Zhao. Han tillträdde tronen 247 f.Kr., vid tretton års ålder.&nbsp; Mellan 230 och 221 f.Kr. förintade han de sex staterna Han, Zhao, Wei, Chu, Yan och Qi, fullbordade enandet av <strong>Kina</strong> och etablerade en centraliserad och enhetlig multietnisk stat, Qin-dynastin. Det är från denna dynasti som landets namn kommer, Qin är mycket likt ordet \"Kina\".</div>\n<div>&nbsp;</div>\n<div>Vid samma tid antog centralregeringen systemet med tre prinsar och nio ministrar för att hantera statens angelägenheter; på lokal nivå avskaffades det <strong>feodala systemet</strong> och ersattes av grevskapssystemet.&nbsp;</div>\n<div>&nbsp;</div>\n<div>Han var också ansvarig för uppförandet av <strong>Den stora kinesiska muren</strong>. Bygget av denna byggnad, som fortfarande står kvar, beordrades av Ying Zheng för att avvärja de nomadiska och barbariska attacker som kom från norr. Detta gjorde att Mittens rike kunde leva i fred i mer än 15 år, vilket gav landet tid att enas i fred.</div>\n\n[gap height=\"50px\"]\n\n[ux_products cat=\"43\" products=\"4\"]\n\n[gap height=\"50px\"]\n\n<div>Qin upprättade också Kinas första centraliserade regeringsinstitutioner och ersatte det föråldrade militära systemet - som normalt bestod av oorganiserade bondekrigare - med etablerade <strong>militära institutioner</strong> som än idag producerar karriärsoldater som systematiskt tränas i de mest avancerade försvarstaktikerna.&nbsp;</div>\n<div>&nbsp;</div>\n<div>Qin Shi Huang sökte odödlighet och drömde om att bli en gud. Hans tyranniska styre och förkvävande av folkets visdom destabiliserade grunderna för Qins styre. År 210 f.Kr. dog Qin Shi Huang vid Xingtai Shaqiu under sin resa österut.&nbsp;</div>\n<div>&nbsp;</div>\n<div>Den här <strong>kinesiske krigaren</strong> och kejsaren lyckades med konststycket att definiera grundmönstret för det kinesiska politiska systemet i över 2 000 år. Han hyllades av Ming-tänkaren Li Zhi som \"den ende kejsaren från tusen tidsåldrar\".</div>\n\n[gap]\n\n<h2>4. Xiang Yu</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"9227\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Xiang Yu (232 f.Kr. - 202 f.Kr.) var en ättling till Xiang-staten, en <strong>vasallstat</strong> till Zhou-dynastin.</div>\n<div>&nbsp;</div>\n<div>Som ung man lärde sig Xiang Yu ingenting om böcker och svärd, men han hade den stora ambitionen att <strong>strida</strong> mot Qin. I september det första året av den andra Qin-dynastin (209 f.Kr.) följde han med Xiang Liang till Huiji (nuvarande Suzhou i Jiangsu-provinsen) för att slå tillbaka Chen Shengs och Wu Guangs uppror.</div>\n<div>&nbsp;</div>\n<div>Efter Chen Shengs död tog han över ledningen för de viktigaste anti-Qin-styrkorna och installerade Xiong Xin, sonson till kung Huai av Chu, som kung.&nbsp;</div>\n<div>&nbsp;</div>\n<div>År 206 f.Kr. delade Xiang Yu upp herrarna och gjorde Liu Bang till kung över Han, gjorde sig själv till kung över västra Chu och etablerade sin huvudstad i Pengcheng (nuvarande Xuzhou, Jiangsu).&nbsp;</div>\n<div>&nbsp;</div>\n<div>Snart därefter reste Tian Rong och Chen Yu sina trupper mot Chu i Qi och Zhao, och Liu Bang tog tillfället i akt att pacificera de tre <strong>Qin-dynastierna</strong> och rycka in i västra Chu. Även om Xiang Yu var segerrik i början av kriget blev den militära situationen alltmer ogynnsam på grund av splittringen av lorderna och interna konflikter samt dåliga strategiska beslut, och han belägrades slutligen i Gaixia.</div>\n<div>&nbsp;</div>\n<div>Som representant för den <strong>kinesiska militära skolan</strong> var Xiang Yu en krigargeneral känd för sin överlägsna styrka. Li Wanfang kommenterade att \"Yus mod har varit oöverträffat i tusen år.\"</div>\n\n[gap]\n\n<h2>5. Cao Cao</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"748\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Cao Cao, Wu <strong>kejsare av Wei</strong> (155 - 15 mars 220), kom från Qiao län, Pei stat (nu Bozhou, Anhui-provinsen), med efternamnet Mengde. Han var en framstående politiker, militär, litteraturvetare, kalligraf och poet i det gamla Kina. Han var en mäktig minister i den sena östra Han-dynastin, son till Cao Song, son till förste löjtnanten och grundare av Cao Wei-dynastin.</div>\n<div>&nbsp;</div>\n<div>Cao Cao var en alert, <strong>ritterlig</strong> och utsvävande ung man som behärskade sitt hantverk. Redan vid tjugo års ålder befordrades han till peer och utsågs till löjtnant i den norra delen av Luoyang. Senare blev han <strong>kavallerikapten</strong> och deltog i förtrycket av den gula turbanarmén. Han flyttade till Jinan, där han var ansvarig för att eliminera korrupta tjänstemän och förbjuda obscena ritualer.&nbsp;</div>\n<div>&nbsp;</div>\n<div>När Dong Zhuo tog makten skingrade han sin familjs pengar och reste en <strong>armé</strong> för att tillsammans med Yuan Shao och andra kämpa mot honom. Under sitt tredje regeringsår (192) lyckades han splittra och besegra Yanzhous gula turbanarmé på över 300 000 man och välja ut de bästa av dem för att bilda Qingzhouarmén.&nbsp;</div>\n<div>&nbsp;</div>\n<div>Under Jian\'ans första år (196) var han värd för kejsaren av Xian i Xu (öster om Xuchang i Henanprovinsen), där han blev generalsekreterare och tog hand om den <strong>imperiala</strong> administrationen. Under det femte året av Jian\'an (200) besegrade han Yuan Shaos huvudstyrkor i slaget vid Guandu och eliminerade Yuan Shang och Yuan Tan i tur och ordning.</div>\n<div>&nbsp;</div>\n<div>Under Jian\'ans tolfte år (207) besegrade han Wuhuan och enade Norden. Året därpå befordrades han till premiärminister, anföll Jingzhou och utkämpade slaget vid Röda klippan med Sun Quan och Liu Bei, men besegrades. Under Jian\'ans 18:e år (213) kröntes han till hertig av Wei. Under Jian\'ans 20:e år (215) besegrade han Zhang Lu och intog Hanzhong. Följande år kröntes han till kung av Wei.&nbsp;</div>\n<div>&nbsp;</div>\n<div>Slutligen, år 220, dog han i Luoyang vid sextiosex års ålder. Efter att hans son Cao Pi blivit kejsare på Han-folkets vägnar hedrades han postumt som kejsare Taizu Wu och begravdes i Gao Ling.</div>\n<div>&nbsp;</div>\n<div>Cao Cao var begåvad inom poesi och litteratur, kunde krigskonsten och skapade skrivstilen Jian\'an. Han är författare till många dikter och essäer. Han skrev också en kommentar till Sun Tzu, som har överförts till världen. Hans dikter och skrifter samlades i ett manuskript, Cao Cao ji (Cao Caos fullständiga verk). Han excellerade också i kalligrafi, och Zhang Huaiguan från Tangdynastin kallade honom \"ett underbart mästerverk.</div>\n\n[gap]\n\n<h2>Dessa krigares plats i kinesernas liv</h2>\n\n[gap]\n\n<div>Som vi just har sett har dessa 5 kinesiska krigare, på sitt eget sätt, fört den kinesiska världen framåt. Oavsett om det är Sun Tzu som skrev \"Krigskonsten\" eller Qin Shi Huang som beordrade byggandet av den kinesiska muren, har alla dessa <strong>legendariska män</strong> satt sin prägel på den moderna världen.</div>\n<div>&nbsp;</div>\n<div>De anses idag vara inspirerande människor, så att de kan hittas i många verk som böcker eller filmer. Det finns också mycket kända videospel som <strong>Dynasty Warriors</strong> med några av dessa män under kriget mellan de tre kungadömena.</div>\n<div>&nbsp;</div>\n<div>I Kina kan vi också lätt hitta dessa mäns gravar, så att vi kan upptäcka vackra <strong>kinesiska städer</strong> som väntar på ditt besök.</div>\n\n[gap]\n\n[featured_products]\n\n\n<!-- /wp:flatsome/uxbuilder -->\";s:10:\"post_title\";s:32:\"5 legendariska kinesiska krigare\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:32:\"5-legendariska-kinesiska-krigare\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2023-07-25 02:51:48\";s:17:\"post_modified_gmt\";s:19:\"2023-07-25 00:51:48\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:28:\"https://teng-shop.com/?p=731\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:4;O:7:\"WP_Post\":24:{s:2:\"ID\";i:760;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-12-19 01:42:55\";s:13:\"post_date_gmt\";s:19:\"2022-12-19 00:42:55\";s:12:\"post_content\";s:13453:\"<!-- wp:flatsome/uxbuilder -->\n<div>Är du nyfiken på vad <strong>Hanfu</strong> är? Bärs den av män eller kvinnor? Bärs den fortfarande idag?</div>\n<div>&nbsp;</div>\n<div>Med passion för <strong>kinesisk kultur</strong> och traditionellt mode kommer vi att ge dig svaret så exakt som möjligt.</div>\n<div>&nbsp;</div>\n<div><strong>Hanfu är ett traditionellt kinesiskt plagg. Det har burits i mer än 3000 år och har genomgått vissa förändringar under dynastierna. Hanfu har varit bortglömd under många årtionden, men har åter blivit modern och är nu en symbol för Kina.</strong></div>\n<div>&nbsp;</div>\n<div>I den här artikeln kommer du att upptäcka:</div>\n<ul>\n<div>&nbsp;</div>\n<li>Vad är Hanfu</li>\n<li>När och hur man bär den</li>\n<li>Är det fortfarande ett slitet och uppskattat plagg</li>\n</ul>\n</ul\n\n\n\n\n<div>Efter att ha läst den här artikeln kommer du att veta exakt varför detta traditionella plagg är så viktigt i <strong>Kina</strong>.</div>\n<div>&nbsp;</div>\n<div>Utan vidare dröjsmål, låt oss komma igång.</div>\n\n[gap]\n\n<h2>Hanfu, ett traditionellt kinesiskt plagg</h2>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"804\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Hanfu 汉服 betyder bokstavligen \"Han-folkets kläder\".&nbsp; Det är de traditionella kläderna <strong>som ursprungligen bars av Han-kineserna</strong>, den största etniska gruppen i Kina.</div>\n<div>&nbsp;</div>\n<div>Hanfu är ett traditionellt kinesiskt klädesplagg med mycket gammalt ursprung. Det skulle ha mer än 3000 års historia! Det skulle till och med ha burits av den gule kejsaren själv, en stor civiliserande regent som än idag betraktas som Kinas fader.</div>\n<div>&nbsp;</div>\n<div>Ursprunget till detta <strong>plagg</strong> går tillbaka till Shangdynastin (1570 till 1045 f.Kr.). Hanfu är sammansatt enligt följande:</div>\n<ul>\n<div>&nbsp;</div>\n<li>Yi 衣, en tunika med smala ärmar som når ner till knäna och fästs med ett bälte</li>\n<li>Chang裳, en veckad kjol som når till anklarna</li>\n<li>Bixi蔽膝, ett tygstycke som täcker låren och bärs ovanför kjolen.</li>\n</ul>\n<div\n\n\n\n\n<div>Under Zhou-dynastin (770 till 256 f.Kr.) blev plaggets sociala status starkt kodifierad och alla kunde inte bära Hanfu på samma sätt.</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"834\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Enligt föreskrifterna var det nödvändigt att uppmärksamma längden på <strong>kjolen</strong> och tunikan, ärmarnas vidd, de ornament som sattes på klänningen... Under denna dynasti förändras Hanfu något genom att bli bredare vid ärmarna och mer dekorerad (att hänga jadestenar på bältet var till exempel mycket uppskattat).</div>\n<div>&nbsp;</div>\n<div>Hanfu blev en metod för att <strong>skilja på sociala klasser</strong>. Ju högre en person placerades, desto mer dekorerades hans Hanfu. Dessutom fanns det också skillnader i ärmarnas storlek, kjolens längd eller klänningens fästning.</div>\n<div>&nbsp;</div>\n<div>Zhou-dynastin uppfann <a href=\"https://www.chinahighlights.com/travelguide/traditional-chinese-clothes.htm#:~:text=The%20Hanfu%2C%20Zhongshan%20suit%20(Mao,typer%20av%20traditionella%20kinesiska%20kläder.\">Shengyi</a> 深衣, eller \"djupt plagg\". Det var egentligen en kort tunika och kjol som sytts ihop. Det nya plagget kunde bäras av både män och kvinnor.</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"808\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Efterhand som tekniken blev mer modern kunde vi se vackra och komplexa mönster på <strong>Shengyi</strong> och Hanfu.</div>\n<div>&nbsp;</div>\n<div>Med tiden och de olika dynastier som följde utvecklades Hanfu och blev ännu mer komplex. Till exempel hittar vi:</div>\n<ul>\n<li>Yi衣, ett kort plagg med korsad hals. Bärs av båda könen</li>\n<li>Pao袍, lång klänning eller tunika som stängs åt sidan och endast bärs av män</li>\n<li>Ru襦, öppen skjorta med korsad hals</li>\n<li>Shan衫, öppen jacka med korsad halsringning eller jacka som bärs över Yi</li>\n<li>Chang裳, en ny typ av kjol som bärs av både män och kvinnor</li>\n<li>Ku褲, en typ av vida byxor som främst bärs av män</li>\n</ul>\n<div><strong>Hanfu</p>\n<div><strong>Hanfu har burits av nästan alla kineser i århundraden</strong>. Hovfolk, lärda, studenter, arbetare, alla hade en Hanfu som var anpassad till deras sociala klass.</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"836\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Det är i början av Qingdynastin (1644-1911) som Hanfu försvinner lite i taget. Denna dynasti, jämfört med alla de andra, grundades inte av Han <strong>kineser</strong>, som utgjorde majoriteten av den kinesiska befolkningen vid den tiden, utan av Manchu-kineser.</div>\n<div>&nbsp;</div>\n<div> Manchuerna var ett halvnomadiskt folk som gjorde sig kända i Manchuriet. Efter att ha tagit makten i Kina förde de naturligtvis med sig sina egna traditionella kläder. Bland dem finns till exempel den mycket berömda <strong>kinesiska klänningen QiPao</strong>, som snart kommer att ersätta Hanfu för kvinnor.</div>\n<div>&nbsp;</div>\n<div>Qipao och Hanfu har alltså en sammanlänkad men mycket olika historia. <strong>Qipao</strong> är idag mycket populärare än Hanfu, eftersom de moderna versionerna är mycket lättare att bära i vardagen än Hanfu som fortfarande är ett ganska imponerande och komplext plagg. Om du är intresserad av Qipao hittar du en länk till vår samling i bilden nedan.</div>\n\n[gap height=\"50px\"]\n\n[ux_products cat=\"47\" products=\"4\"]\n\n[gap height=\"50px\"]\n\n<h2>När och hur man bär Hanfu</h2>\n<p>Hanfu är ett sofistikerat och prestigefyllt plagg. Det är uppenbart att man idag inte går till jobbet i Hanfu till exempel. Men det finns många tillfällen att bära detta vackra plagg.</p>\n\n[gap]\n\n<h3>När ska man bära Hanfu</h3>\n<p>För traditionella firanden är det inte förvånande att bära en Hanfu. Det visar respekt för <strong>kinesisk kultur</strong> och sätter dig i den tidens kinesers skor under festligheterna. Detta inkluderar naturligtvis <a href=\"https://www.cchatty.com/Chinese-Traditional-Marriage-Culture-g-100013\">kinesiska bröllop</a>.</p>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"812\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Det är också möjligt att bära Hanfu vid historiska minneshögtider eller vid en ceremoni när man blir myndig, en gammal tradition som vissa kineser försöker återuppliva.</div>\n<div>&nbsp;</div>\n<div>Hanfu <strong>kan bäras vid ett evenemang</strong>, t.ex. en <strong>skol- eller teaterföreställning</strong>. Den kan också bäras <strong>på gatan</strong>.</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"814\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<p>Slutligen kan vi nämna de buddhistiska och taoistiska <strong>religiösa kläder</strong> som fortfarande idag är Hanfu. De Hanfu som bärs av troende är uppenbarligen mycket sobra, enfärgade och sällan med mönster.</p>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"816\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<p>Sedan 2010 finns det till och med en <strong>officiell Hanfu-festival</strong>, som vanligtvis hålls i Chengdu. Denna <a href=\"http://en.people.cn/n3/2020/1123/c90000-9786322.html\">Hanfu-festival</a> gör det möjligt att upprätthålla traditionen och att låta deltagarna lära sig mer om detta mytomspunna plagg. Även om kineser lär sig om Hanfu i skolan är det framför allt under den här typen av evenemang som vi lär oss intressanta saker.</p>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"818\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h3>Hur man bär Hanfu</h3>\n<div>Hanfu är ett plagg som är enklare att bära än du kanske tror. Det är lika enkelt att klä sig i Hanfu som det är att klä sig i ett <strong>modernt plagg</strong>. På sommaren bär kinesiska kvinnor till exempel gärna en Qixiong Ruqun齐胸襦裙, som är en <strong>enkel klänning</strong> med ett bälte över bröstet.</div>\n<div>&nbsp;</div>\n<div>På vintern är Qiyao-Ruqun齐腰襦裙-klänningar från Wei- och Jin-dynastierna eller Ma Mian Qun马面裙-klänningar att föredra. De består vanligtvis av fler lager än andra klänningar och håller sig varmare. De är mer komplicerade att ta på.</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"820\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<p>För män är Hanfu också mycket enkelt att bära. Även om de mycket traditionella versionerna är lite mer komplexa, är majoriteten av de Hanfu du kommer att kunna prova mycket enkla att ta på: <strong>en enkel klänning, en jacka och ett bälte att spänna fast</strong>.</p>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"822\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<p><Om du kommer till Kina är det helt normalt att undra om en icke-kinesisk person kan bära Hanfu. Även om vissa nationalistiska kineser kommer att ha svårt att säga ja, kommer <strong>de allra flesta inte att ta illa upp</strong> av att se en utlänning bära en Hanfu. Så länge det görs med respekt för traditionen, <strong>accepteras det utan problem</strong>.</p>\n\n[gap]\n\n<h2>Ett traditionellt plagg som fortfarande uppskattas av kineserna</h2>\n<div>Trots plaggets ålder har <strong>Hanfu blivit allt populärare i Kina</strong> under de senaste åren.</div>\n<div>&nbsp;</div>\n<div><strong>Modet i Kina</strong> har verkligen förändrats mycket under de senaste åren. På 80- och 90-talen klädde sig kineser väldigt sobert, ofta i svart eller grått. Att gå utanför mallen var ganska ogillat så \"alla\" klädde sig på samma sätt.</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"824\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Med åren, Kinas ekonomiska språng och de alltmer västerländska mentaliteterna förändras det <strong>kinesiska modet</strong> mycket snabbt. Kineserna vill inte längre \"vara som alla andra\" utan \"vara annorlunda\".</div>\n<div>&nbsp;</div>\n<div>Vi hittar alla stilar när vi promenerar i Kina. Vi går från vuxna i sobra kostymer till unga människor som är klädda på ett mycket mer överdrivet sätt. De kan mycket väl gå från en streetwear-outfit till en <strong>traditionell outfit</strong>, som Hanfu.</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"826\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div><strong>Hanfu har blivit modernt igen sedan 2000-talet</strong>. En man vid namn Wag Letian, en energiarbetare, gick ut på gatorna i november 2003 iförd sin hemmagjorda Hanfu. Detta sägs vara startskottet för återupplivandet av Hanfu.</div>\n<div>&nbsp;</div>\n<div>Fler och fler människor vågade gå ut på gatan i traditionell klädsel. <strong>Anhängarna av denna sed kallas TongPao同袍</strong>. De använder främst internet för att dela med sig av denna tradition som väckts till liv igen.</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"828\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div> <strong>TongPao</strong>, som brinner för detta plagg, har fördjupat sina kunskaper och delar dagligen med sig av mycket information om Hanfu, vilket gör det möjligt att samla tillförlitliga källor och därmed få veta mer om den traditionella kinesiska kulturen.</div>\n<div>&nbsp;</div>\n<div>Det blir allt mindre förvånande att se unga människor gå på stan i <strong>traditionell klädsel</strong>. Likt prinsar eller prinsessor gör dessa unga kineser detta för att respektera traditioner, för fotografering eller för att bli sedda.</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"830\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Du behöver inte ens åka till Kina längre för att se dem, på sociala nätverk som Instagram eller Tik Tok är det ganska lätt att hitta foton eller videor av dessa <strong>kineser</strong> klädda i dessa vackra traditionella kläder.</div>\n<div>&nbsp;</div>\n<div>En mycket intressant rapport som publicerades av Tmall (ett slags extremt populärt kinesiskt Amazon) 2018 berättar att <strong>antalet personer som köper Hanfu ökar med 92% per år</strong> i genomsnitt. Kineser födda efter 1995 utgör 48% av kundkretsen. Intresset för detta plagg växer alltså över tid.</div>\n<div>&nbsp;</div>\n<div>Man skulle kunna tro att detta bara är en modeeffekt, men invånarna i Mittens rike verkar vara mycket mer fästa vid sitt lands historia än vad vi är i Europa. Hanfu är<strong>en oskiljaktig del av den kinesiska kulturen</strong>, det är därför den är och alltid kommer att vara närvarande i kinesernas liv.</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"832\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h2>Ett plagg som alltid är på modet</h2>\n<div>Som vi just har sett i den här artikeln är <strong>Hanfu ett tidlöst plagg</strong>, som aldrig upphör att anpassa sig till århundradena och de generationer som bär det. En annan kinesisk uppfinning som fortfarande verkar ha en stor framtid framför sig.</div>\n<div>&nbsp;</div>\n<div>Om tillfälle ges en dag, <strong>tveka inte att prova Hanfu</strong>. Även om den idag främst används som en \"förklädnad\", kommer du att kunna sätta dig in i hur en kines var under de gamla dynastierna och få mycket fina bilder.</div>\n<div>&nbsp;</div>\n<div>Att prova en Hanfu är trevligt, men att ha en egen är ännu trevligare. På Teng Shop erbjuder vi dig <strong>en vacker samling av Hanfu</strong> direkt importerad från Kina. Länk på bilden nedan.</div>\n\n[gap height=\"50px\"]\n\n[ux_products cat=\"48\" products=\"4\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->\";s:10:\"post_title\";s:19:\"Hanfu: Vad är det?\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:12:\"vad-ar-hanfu\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2023-07-25 02:51:48\";s:17:\"post_modified_gmt\";s:19:\"2023-07-25 00:51:48\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:28:\"https://teng-shop.com/?p=760\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:5;O:7:\"WP_Post\":24:{s:2:\"ID\";i:840;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-12-19 21:35:30\";s:13:\"post_date_gmt\";s:19:\"2022-12-19 20:35:30\";s:12:\"post_content\";s:19420:\"<!-- wp:flatsome/uxbuilder -->\n<div>Vilka monument måste man se i <strong>Kina</strong>? Vad har de för historia? Var är de belägna?</div>\n<div>&nbsp;</div>\n<div><strong>Mellan Kinesiska muren och Himmelstemplet i Peking, Bund i Shanghai, Stora pagoden i Xian och många andra, kinesiska monument är många och alla fyllda med historia och kultur.</strong></div>\n<div>&nbsp;</div>\n<div>Vi är passionerade för kinesisk kultur och dess monument i synnerhet, och nu ska vi leverera vår personliga topplista över de <strong>must-see Chinese monuments</strong>!</div>\n<div>&nbsp;</div>\n<div>Låt oss utan vidare dröjsmål upptäcka dessa 11 extraordinära monument:</div>\n\n[gap]\n\n<h2>Den kinesiska muren, Peking</h2>\n<div>Adress: Kinesiska muren, Peking</div>\n<div>&nbsp;</div>\n<div>Kinesiskt namn: 长城</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"981\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Den kinesiska muren anses vara <strong>ett av den nya världens underverk</strong> och är inte bara en kinesisk sevärdhet utan också <strong>ett av de mest besökta monumenten i världen</strong>. Detta populära kinesiska monument behöver verkligen ingen närmare presentation. Även om den kinesiska murens totala längd inte är lätt att fastställa, dateras början av dess konstruktion tillbaka till 500-talet f.Kr.</div>\n<div>&nbsp;</div>\n<div>Större delen av den nuvarande muren, som allmänt kallas \"<strong>Den Stora Muren</strong>\", byggdes under Qingdynastin för att försvara regionen mot mongoliska upprorsmän. Muren i sin helhet är <strong>21196 km lång</strong>. Själva Qingmuren är 8850 km lång, varav 6259 km är själva muren och resten är diken och naturliga försvarsverk.</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"979\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Den här längden av muren innehåller mer än <strong>25 000 vakttorn</strong>. Även om en betydande del av muren nu är i ruiner, ca 30%, hålls vissa delar av muren runt Peking i utmärkt skick tack vare många åtgärder som vidtagits under de senaste decennierna, främst för att de är en <strong>stor turistattraktion</strong>.</div>\n<div>&nbsp;</div>\n<div>De områden nära Peking som tar emot flest turister är <strong>Jinshanling</strong>, en berömd vandringsled, och <strong>Mutianyu</strong>, den bäst bevarade delen av muren. Det finns flera olika rundturer på muren och många sektioner som du kan besöka efter dina egna önskemål.</div>\n\n[gap]\n\n<h2>Vildgåspagoden, Xi\'an</h2\n\n\n<div>Adress: Vildgåspagoden, Xian</div>\n<div>&nbsp;</div>\n<div>Kinesiskt namn: 大雁塔</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"977\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Vildgåspagoden, eller Stora vildgåspagoden, ligger i Xi\'an, Shaanxiprovinsen, Kina, och är en <strong>femvåningspagod</strong> som byggdes på 700-talet. Pagoden ligger i tempelkomplexet Da Ci\'en. Den <strong>byggdes ursprungligen 652</strong> under Tangdynastin, byggdes om igen 704 och renoverades under Mingdynastin och på 1900-talet.</div>\n<div>&nbsp;</div>\n<div>I monumentet finns <strong>sutror och buddhistiska figurer</strong>. Vildgåspagoden byggdes av kejsar Gaozong i Tangdynastin (617-907) för att samla buddhistiska verk och reliker som den lärde <strong>indiern</strong>, munken, resenären och översättaren Xuanzang hade fört med sig från <strong>Indien</strong>. Xuanzang reste över hela Kina för att samla buddhistiska heliga verk.</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"975\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Han blev känd för sin 17 år långa resa till Indien och de religiösa platserna i det som nu är Nepal, Pakistan och Bangladesh. Han reste genom dessa länder och samlade buddhistiska skrifter och artefakter eftersom han var bekymrad över att den buddhism som hade nått Kina varken var fullständig eller korrekt tolkad. Hans resa är ursprunget till den berömda kinesiska berättelsen \"<strong>Resan till väst</strong>\", vilket är anledningen till att många kineser vill tro att startpunkten för hans resa är i Xi\'an.</div>\n<div>&nbsp;</div>\n<div>Detta monument är mycket intressant att besöka när man är i Xi\'an, särskilt eftersom det är omgivet av en stor park där det är särskilt trevligt att promenera i timmar. Här finns många små butiker och andra tjänster samt trevliga kaféer med en fantastisk utsikt över <strong>pagodan</strong>.</div>\n<div>&nbsp;</div>\n<div>I Xi\'an finns också den mycket berömda Terrakottaarmén, som egentligen är Qin-kejsarens mausoleum.</div>\n\n[gap height=\"50px\"]\n\n[ux_products cat=\"40\" products=\"4\"]\n\n[gap height=\"50px\"]\n\n<h2>Sommarpalatset, Peking</h2>\n<div>Adress: 19 Xinjiangongmen Rd, Haidian-distriktet</div>\n<div>&nbsp;</div>\n<div>Kinesiskt namn: 颐和园</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"973\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Sommarpalatset beställdes av Qingdynastins kejsare Qianlong år 1750. Det första sommarpalatset kallades Qingyi Yuan eller \"<strong>de klara krusningarnas trädgård</strong>\".</div>\n<div>&nbsp;</div>\n<div>Detta första sommarpalats förstördes dock av de fransk-brittiska allierade styrkorna 1860 och återuppbyggdes 1896. Det förstördes igen 1900 och återuppbyggdes 1912 för att markera Qingdynastins sista handlingar. År 1924 öppnades det officiellt för allmänheten som en <strong>turistattraktion</strong>.</div>\n<div>&nbsp;</div>\n<div>Sommarpalatset är allmänt känt som den största bevarade kejserliga trädgården i Kina. År 1998 lade <strong>UNESCO</strong> till detta komplex på världsarvslistan. Med en yta på över 300 hektar är det en av de största och mest fängslande <strong>landskapsträdgårdarna</strong> inte bara i Kina utan också i hela världen.</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"970\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Anläggningen kombinerar konstgjord arkitektur med paviljonger, palats, tempel och broar med vackra naturlandskap med kullar och öppet vatten. Sommarpalatset ligger i<strong> nordvästra Peking</strong> och anses vara den bäst bevarade kejserliga trädgården i världen. Det ligger bara en kort bilresa från centrala Peking, så det är ganska lätt att ta sig dit.</div>\n<div>&nbsp;</div>\n<div><strong>Turister</strong> kan njuta av en <strong>variation av aktiviteter</strong> i sommarpalatskomplexet, från promenader på den berömda långa korridoren, till båtliv på Kunming Lake, för att titta på traditionella föreställningar i den antika teatern. Sommarpalatset utformades för att uppnå harmoni med naturen. Det harmonierar med växter och arkitektoniska vägar, vatten och jord, och betonar filosofin bakom kinesiska trädgårdslandskap i allmänhet.</div>\n\n[gap]\n\n<h2>Hängande templet, Datong</h2>\n<div>Adress: Xian av Hunyuan, Datong</div>\n<div>&nbsp;</div>\n<div>Kinesiskt namn: 悬空寺</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"968\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Det hängande templet Xuankongsi, som ligger cirka <strong>60 kilometer sydost om Datong</strong>, Kina, i Shanxiprovinsen, är <strong>ett av världens bortglömda underverk</strong>. Det hänger på en klippa i berget Hengshan och tycks trotsa gravitationen. Det består av 40 rum som är förbundna med varandra genom en svindlande labyrint av gångar. Detta gamla <strong>kinesiska monument</strong> sägs ha byggts av en munk vid namn Liao Ran i slutet av Norra Wei-dynastin (386-534) och restaurerades år 1900.</div>\n<div>&nbsp;</div>\n<div>Den byggdes genom att man borrade hål i klippsidan där de stolpar som bär upp templen är fästa. Det är intressant att notera att <strong>templet</strong> är tillägnat de tre religionerna: konfucianism, taoism och buddhism, och inte till en enda religion. Alla tre religionerna utövas i templet och representeras av 78 statyer och skulpturer i hela templet. Denna kombination av faktorer gör det hängande templet till en av de mest intressanta religiösa och historiska platserna i <strong>Mellanriket</strong>.</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"966\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h2>Förbjudna staden, Peking</h2>\n<div>Adress: 4 Jingshan Front St, Dongcheng</div>\n<div>&nbsp;</div>\n<div>Kinesiskt namn: 紫禁城</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"964\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Den förbjudna staden var den kinesiska kejsarens palats i 500 år, från 1420 till 1912, och omfattar <strong>ett stort komplex på 13 hektar</strong>. Det vidsträckta komplexet förhärligar gammal kinesisk arkitektur och innehåller <strong>980 byggnader</strong>. Det är erkänt som ett UNESCO-monument i Kina. Monumentet har fått sitt namn eftersom det var förbjudet att gå in i komplexet utan kejsarens tillstånd.</div>\n<div>&nbsp;</div>\n<div>I dag rymmer <strong>Den förbjudna staden</strong> <a href=\"https://en.dpm.org.cn/\">Palatsmuseet</a>. Den är uppdelad i två delar: den yttre gården i söder, där kejsaren utövade sin auktoritet över sina undersåtar, och den inre gården i norr, som var hans residens. Hela komplexet, med sin fantastiska arkitektur och byggnader, är en av <strong>de största attraktionerna i Kina</strong>.</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"962\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div><strong>Med över en miljon samlarobjekt</strong> i brons, keramik, målningar, jade och slitage är palatsmuseets samlingar otroligt stora. Du börjar ditt besök vid Meridianporten och går ut antingen genom porten för gudomlig skicklighet eller porten för östligt välstånd.</div>\n<div>&nbsp;</div>\n<div>Detta komplex är naturligtvis ett måste när man besöker <strong>Beijing</strong>, särskilt när man vet att det är <strong>placerat mitt i staden</strong>. Monumentet är mycket stort, så planera in en bra morgon eller eftermiddag för att kunna njuta av det till fullo. Tveka inte att ta med en guide så att han kan förklara alla hemligheter och detaljer i konstruktionen. Många guider är närvarande på plats men jag råder dig ändå att ta det i förväg för att undvika bedrägerier.</div>\n\n[gap height=\"50px\"]\n\n[ux_products cat=\"43\" products=\"4\"]\n\n[gap height=\"50px\"]\n\n<h2>Kaifeng</h2>\n<div>Adress: Kaifeng, Henan, Kina</div>\n<div>&nbsp;</div>\n<div>Kinesiskt namn: 开封</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"960\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Kaifeng var den viktigaste metropolen inte bara i Kina utan i hela världen när den stod på toppen av sin storhetstid. Den är känd för att vara <strong>en av de viktigaste antika huvudstäderna</strong> i Kina. Kaifeng ligger ca <strong>72 km från Zhengzhou</strong>, i östra delen av Henanprovinsen, och täcker en yta på 6 444 km². Staden ligger strax söder om Gula floden och vetter mot Huanghuai-slätten i söder. Det finns många attraktioner att utforska i Kaifeng, inklusive :</div>\n<div>&nbsp;</div>\n<div>I den här staden finns det inte bara ett utan flera monument som du kan upptäcka:</div>\n<ul>\n<li\n\n\n<li><strong>Kaifeng Iron Tower</strong>, ett 13-våningar, 56 meter högt torn, som är känt som världens första järntorn (byggt 1049).</li>\n<li><strong>Qingming River Scenery Garden</strong>, en stor trädgård från den norra Songdynastin (960-1127).</li>\n<li><strong>Xiangguo Grand Temple</strong>, ett buddhistiskt tempel från den norra Qi-dynastin (550-577).</li>\n</ul>\n</ul>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"958\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Kaifeng är också känt för sina <strong>krysantemum</strong>, och krysantemummässan är känd sedan 900-talet. Krysantemummässan hålls fortfarande varje år i oktober/november och omfattar tusentals olika typer av krysantemum.</div>\n<div>&nbsp;</div>\n<div>Staden är också <strong>födelseplats för kinesisk kalligrafi</strong> och Henan-opera, och här finns fyra berömda kalligrafiskolor.</div>\n\n[gap]\n\n<h2>10 000 Buddhas kloster, Hongkong</h2>\n<div>Adress: 220, Pai Tau Village Sha Tin</div>\n<div>&nbsp;</div>\n<div>Kinesiskt namn: 萬佛寺</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"956\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>The Ten Thousand Buddhas Monastery, beläget på Po Fook Hill i Pai Tau Village, Sha Tin, New Territories, är ett av <strong>de mest kända buddhisttemplen i Hong Kong</strong> och en av de mest populära turistattraktionerna. Templet grundades 1949 av pastor Yuet Kai och stod färdigt 1957. Klostret har inga bostäder och drivs av lekmän.</div>\n<div>&nbsp;</div>\n<div> <strong>Klostret</strong> fick en omfattande utsmyckning 1968, några av paviljongerna byggdes om och alla statyer målades eller täcktes med rent guld. Klostret är byggt på två nivåer på en kulle, i en <strong>bambuskog</strong> med utsikt över Sha Tin, och upptar ett område på över åtta hektar. Det har fem tempel, fyra paviljonger, en veranda och en pagod. Man kommer dit via en brant betongväg med 431 trappsteg.</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"954\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<p>Det finns många vackra tempel i <strong>Hong Kong</strong>, men det här är särskilt originellt tack vare sina <strong>12800 Buddhastatyer</strong>. Detta tempel kan mycket väl erbjuda dig en promenad som du kommer att minnas för alltid.</p>\n\n[gap]\n\n<h2>Tian Tans stora buddha</h2>\n<div>Adress: Ngong Ping, Lantau Island, Hong Kong</div>\n<div>&nbsp;</div>\n<div>Kinesiskt namn: 天壇大佛</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"952\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Om du stannar i närheten av Hongkong hittar du ett annat monument som helt klart är värt ett besök: <strong>Den stora Buddhan i Tian Tan</strong>. Den här ligger på ön Lantau och dominerar kullen Ngong Ping.</div>\n<div>&nbsp;</div>\n<div>Den här <strong>34 meter höga statyn</strong> är gjord av <strong>250 ton brons</strong>. Den <strong>byggdes mellan 1990 och 1993</strong> och står på en lotusformad piedestal. Detta konstverk representerar Kinas stolthet över sin buddhistiska tradition.</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"950\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<p>Eftersom denna staty ligger nära <strong>Po Lin-klostret</strong> har du något att sysselsätta en stor del av din dag med i en zen och avkopplande atmosfär.</p>\n\n[gap]\n\n<h2>Vita hästens tempel</h2>\n<div>Adress: Nr 6, Luoyang Road, Luolong District, Luoyang</div>\n<div>&nbsp;</div>\n<div>Kinesiskt namn: 白马寺</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"948\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Detta tempel är ett av de viktigaste i Asien eftersom det sägs vara <strong>det äldsta templet i Kina</strong>. Templet byggdes år 68 nära Luoyang och har sin egen rika historia.</div>\n<div>&nbsp;</div>\n<div>Enligt <a href=\"https://www.reseguiden.se/bilder/kina/luoyang/vita-hastens-tempel-219482\">den mest populära legenden</a> anlände två indiska munkar, Kasyapamatanga och Dharmaratna, till Luoyang med <strong>vita hästar</strong>. Med sig hade de många buddhistiska statyer och skrifter. De skulle bli de som för första gången översatte de buddhistiska sutrorna till kinesiska. <strong>Det första buddhistiska templet i Kina</strong> och <strong>de första kinesiska buddhistiska skrifterna</strong> var födda.</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"946\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<p>Templet består uppenbarligen av många rum fyllda med gamla statyer och andra buddhistiska reliker. Det finns också vackra trädgårdar i templet som består av mängder av små utländska tempel (indiska, thailändska, burmesiska...) och särskilt <strong>den äldsta pagoden i Kina</strong>.</p>\n\n[gap]\n\n<h2>Potala palatset</h2>\n<div>Adress: 35 Central Beijing Road, Lhasa, Tibet, Kina</div>\n<div>&nbsp;</div>\n<div>Kinesiskt namn: 布达拉宫</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"944\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div> <strong>Potalapalatset</strong> är <strong>ett enormt religiöst och administrativt komplex i Lhasa</strong>, i södra delen av den autonoma regionen Tibet. Monumentet ligger på toppen av Mar-po-ri (Röda berget), 130 meter över Lhasas floddal, och reser sig dramatiskt från sin klippiga bas.</div>\n<div>&nbsp;</div>\n<div>Potrang Karpo, eller Vita palatset, <strong>var en gång säte för den tibetanska regeringen och Dalai Lamas huvudresidens</strong>. Från mitten av 1700-talet användes det som vinterpalats. Potrang Marpo, eller Röda palatset, rymmer flera kapell, heliga statyer och gravarna för åtta Dalai Lamas och är fortfarande en viktig pilgrimsort för <strong>tibetanska buddhister</strong>.</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"942\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Av de mer än 1 000 rummen i Potala är de heligaste Chogyal Drubphuk och Phakpa Lhakhang, resterna av Srong-brtsan-sgam-pos ursprungliga palats. I det senare finns en helig staty vid namn Arya Lokeshvara. I det heliga komplexet hittar du <strong>mer än 200 000 statyer och 10 000 altare</strong>.</div>\n<div>&nbsp;</div>\n<div>Värdet har erkänts av China Cultural Relics Commission, och palatset skonades under kulturrevolutionen. Potala <strong>utnämndes till UNESCO:s världsarvslista</strong> 1994.</div>\n\n[gap]\n\n<h2>The Bund, Shanghai</h2\n\n\n<div>Adress: Zhongshan East 1st Rd, Wai Tan, Huangpu, Shanghai</div>\n<div>&nbsp;</div>\n<div>Kinesiskt namn: 外灘</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"940\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<p>Det är omöjligt att besöka Shanghai utan att passera <strong>den berömda Bund</strong>. Namnet Bund betyder på kinesiska \"utlänningarnas bank\". Detta beror främst på att du längs hela Bund hittar vackra byggnader i europeisk stil samt banker och <strong>andra koloniala byggnader</strong> från 1930-talet. Idag är många av dessa byggnader ambassader.</p>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"938\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<p>Allt det intressanta med <a href=\"https://www.mittensrike.se/guide/shanghai/the-bund/\">bund</a> ligger inte i de gamla utländska koncessionsbyggnaderna längs stranden, utan i <strong>utsikten över det nya affärsdistriktet</strong> i Lujiazui. Både dag och natt kan man beundra Oriental Pearl, Shanghai Tower, Jin Mao Tower, <strong>Shanghai</strong> World Financial Center och Shanghai IFC Towers</p>\n\n[gap]\n\n<h2>Kina och dess otaliga monument</h2>\n<p>Vi har just presenterat de 8 kinesiska monument som vi tycker är oumbärliga, men det finns faktiskt många fler!</p>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"936\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Himmelstemplet och fågelboet i Peking, murarna i Xian, Himmelska fridens torg, Yonghe Lamasery, Jade Buddha <strong>templet i Shanghai</strong> eller Crescent Moon Oasis i DunHaung är lika spännande som de monument som nämns ovan.</div>\n<div>&nbsp;</div>\n<div>Kina har många monument, gamla och moderna. Det är upp till dig om du föredrar att resa i ett modernt eller <strong>traditionellt Kina</strong>, även om vi självklart rekommenderar dig en blandning av båda!</div>\n<div>&nbsp;</div>\n<div>Om du är intresserad av <strong>kinesisk kultur</strong> hittar du många produkter relaterade till den kinesiska världen i vår butik, länken finns på bilden nedan!</div>\n\n[gap height=\"50px\"]\n\n[ux_products cat=\"39\" products=\"4\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->\";s:10:\"post_title\";s:38:\"11 kinesiska monument som du måste se\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:30:\"11-maste-se-kinesiska-monument\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2023-07-25 02:51:48\";s:17:\"post_modified_gmt\";s:19:\"2023-07-25 00:51:48\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:28:\"https://teng-shop.com/?p=840\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:6;O:7:\"WP_Post\":24:{s:2:\"ID\";i:985;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-12-19 22:46:53\";s:13:\"post_date_gmt\";s:19:\"2022-12-19 21:46:53\";s:12:\"post_content\";s:8401:\"<!-- wp:flatsome/uxbuilder -->\n<p>I tusentals år har <strong>kinesiska ätpinnar</strong> varit det redskap som valts i Kina och andra östasiatiska länder på grund av sin enkelhet och mångsidighet.</p>\n<p><p>Men i resten av världen är det få människor som kan hantera dem med fingerfärdighet.</p>\n<p>Om du är van vid att använda en <strong>gaffel</strong> och kniv för att hantera din mat, kan du ha svårt att vänja dig vid <strong>ätpinnar</strong> till en början, men när du förstår hur man håller dem blir det mycket lättare att behärska mekaniken!</p>\n<p>Vi förklarar allt i den här artikeln!</p>\n\n[gap]\n\n<h2>Korrekt placering av ätpinnarna</h2>\n\n[gap]\n\n<h3>Steg 1: Ta tag i den första pinnen</h3>\n<div>På ett standardbord placeras dina ätpinnar <strong>sida vid sida framför dig</strong>, horisontellt.</div>\n<div>&nbsp;</div>\n<div>Det är oftast lättare att plocka upp ätpinnarna med hjälp av de första 2 eller 3 fingrarna och tummen.</div>\n<div>&nbsp;</div>\n<div>&nbsp;</div>\n<div>Se till att ätpinnarna <strong>inte klapprar högt</strong> när du plockar upp dem. Detta kan uppfattas som oartigt på lugna restauranger och i mer formella sammanhang.</div>\n<div>&nbsp;</div>\n<div>Använd din dominerande hand löst. Personer som klämmer åt sina ätpinnar brukar kasta maten omkring sig.</div>\n<div>&nbsp;</div>\n<div>Ta tag i den första ätpinnen och placera den i urtaget <strong>mellan pekfingret och tummen</strong>. Balansera den på ditt <strong>ringfinger</strong>.</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"1018\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h3>Steg 2: Ta den andra pinnen och justera dem</h3>\n<div>Placera den andra ätpinnen i fördjupningen mellan pekfingret och tummen, <strong>precis som den första ätpinnen</strong>, men placera den på långfingret istället för ringfingret.</div>\n<div>&nbsp;</div>\n<div>Se till att ätpinnarnas smala ändar <strong>är jämna med varandra</strong> så att de inte korsar eller \"klämmer\" maten.</div>\n<div>&nbsp;</div>\n<div><strong>För att jämna ut dem</strong> kan du röra vid dem på bordet. Ojämna ätpinnar kommer att vara mycket svåra att använda.</div>\n<div>&nbsp;</div>\n<div>\n<div>Utnyttja tummen, pekfingret och långfingret för att greppa den andra ätpinnen <strong>lite hårdare</strong>.</div>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"1016\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h3>Steg 3: Mekanismen för trollstaven</h3>\n<p>Öva nu på att <strong>öppna och stänga ätpinnarna</strong>. Se till att ätpinnarnas breda ändar inte bildar ett \"X\" eftersom det gör det svårt att plocka upp mat.</p>\n<p>Om bara den andra ätpinnen rör sig, bra gjort! Du är på rätt väg.<br /> Om det hjälper kan du flytta handen upp och ner på ätpinnarna, men <strong>håll samma position</strong> och experimentera med olika greppnivåer.</p>\n<p>Vissa tycker att det är lättare att manövrera närmare basen, andra högre.</p>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"1014\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h3>Steg 4: Börja ta för dig av maten</h3>\n<p><strong>Börja ta tag i maten</strong>! För tillfället kan det vara enklast att luta ätpinnarna 45 grader. När maten är stabil kan du lyfta upp den. Om det verkar instabilt, lägg ner det och försök igen.</p>\n<p>När du har bemästrat en typ av mat kan du gå vidare till olika storlekar och texturer. När du börjar känna dig riktigt säker kan du <strong>öva med nudlar</strong>!</p>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"1012\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Men <strong>för att hantera ätpinnar</strong> på rätt sätt är det första du behöver göra att skaffa <strong>ett riktigt</strong> par kinesiska ätpinnar!</div>\n<div>&nbsp;</div>\n<div>I vår Teng Shop erbjuder vi <strong>en komplett samling</strong> ätpinnar som kan användas om och om igen, allt från <strong>lackade träpinnar</strong> till mycket sofistikerade <strong>versioner i rostfritt stål</strong>, varav vissa är dekorerade med eleganta mönster, och <strong>lärande ätpinnar</strong>, som är perfekta för barn och vuxna som inte vill bli besvärade.</div>\n<div>&nbsp;</div>\n<div><strong>Kommer du att bli frestad av en av dessa?</strong></div>\n\n[gap height=\"50px\"]\n\n[featured_products]\n\n[gap height=\"50px\"]\n\n<h2>Olika regler vid användning av ätpinnar</h2>\n<p>Pinnar är <strong>symboliskt och kulturellt viktiga för Kina</strong> och andra angränsande asiatiska länder. Precis som överallt annars i världen är kineserna stränga när det gäller hur man använder ätpinnar.</p>\n<p>En felaktig användning av deras favoritredskap kan förolämpa dem, vilket du naturligtvis inte vill. Vi föreslår därför en lista med <strong>8 grundläggande regler</strong> som du måste följa i Kina och på andra håll:</p>\n<p>\n\n[gap]\n\n<h3>1 - När man delar mat</h3>\n<div>Att sitta vid ett asiatiskt bord (hemma eller på restaurang) innebär ofta att <strong>dela stora tallrikar med mat</strong>. Det är inte lämpligt att dyka in i den gemensamma måltiden med ätpinnar som du just har använt.</div>\n<div>&nbsp;</div>\n<div><strong>Du har två alternativ:</strong></div>\n<ul>\n<div>&nbsp;</div>\n<li>Använd ett par <strong>offentliga ätpinnar</strong> som aldrig rör vid din tallrik (eller någon annans)</li>\n<li>Välj <strong>med den andra</strong> (icke ätande) änden av dina ätpinnar. Detta är den stora änden som du förhoppningsvis inte tuggar på!</li>\n</ul>\n</ul\n\n[gap]\n\n<h3>2 - Använd inte ätpinnarna för att servera dig själv</h3>\n<p>För att servera mat. Om någon bjuder dig på lunch eller middag ska du <strong>använda händerna</strong> för att skicka serveringsskålarna istället för att använda dina ätpinnar. Ta aldrig emot mat <strong>med dina ätpinnar</strong> eftersom det påminner kineserna om en begravningsrit där de kremerade benen från en älskad person skickas bakom familjemedlemmar med ätpinnar.</p>\n\n[gap]\n\n<h3>3 - Stick inte i maten</h3>\n<p>Peka inte på maten <strong>med ändarna</strong> på dina ätpinnar. Om allt annat misslyckas kan detta verka som ett bra alternativ, men det anses vara oförskämt.</p>\n\n[gap]\n\n<h3>4 - Stick aldrig ätpinnarna i maten</h3>\n<p>Sätt aldrig dina ätpinnar <strong>direkt i en skål med ris</strong>. Det kan verka som ett harmlöst sätt att få dem att hålla sig på plats, men det är en kardinalsynd när det gäller att använda ätpinnar. Positionen liknar de rökelsepinnar som kineserna sticker ner i riset för att hedra sina döda.</p>\n\n[gap]\n\n<h3>5 - Korsa inte dina ätpinnar</h3>\n<p>Korsa inte dina ätpinnar. Om du har ätit klart lägger du dem <strong>på sidan av din tallrik</strong> till vänster.</p>\n<p><strong>Peka inte med dina ätpinnar på andra</strong>. Att peka är i allmänhet förbjudet i asiatiska kulturer och detsamma gäller ätpinnar.</p>\n\n[gap]\n\n<h3>6 - Håll ihop ätpinnarna</h3>\n<p><strong>När du placerar ätpinnarna</strong> ska du hålla dem på sidan av din skål eller tallrik i deras avsedda område. Du kommer att få ett litet block att vila dem på, men om inte, bör du placera ätpinnarna så att ändarna möts. <strong>Håll dem aldrig korsade på tallriken</strong> eftersom det är ett tecken på förnekelse, vilket betyder att du inte gillar värden och förnekar deras vänlighet.</p>\n\n[gap]\n\n<h3>7 - Spela inte med dina pinnar</h3>\n<p>Använd dem inte för att trumma, knacka, snurra eller slå ihop ätpinnarna. När du trummar på din tallrik med ätpinnarna förknippas det med tiggeri.</p>\n\n[gap]\n\n<h3>8 - Luta alltid dina ätpinnar</h3>\n<p>När du lägger ner ätpinnarna ska du se till att de aldrig pekar direkt på personen som sitter mittemot dig. Detta anses vara en oförskämd gest, <strong>så luta dem något</strong>.</p>\n\n[gap]\n\n<h3>9 - När du äter ris</h3>\n<p>När du äter ris, <strong>var beredd på att gräva ner dig</strong>. Om en skål med ris ställs framför dig och du bara har två små bambustavar kan det kännas som om du befinner dig i en ström utan paddel.</p>\n<p>Men det är helt acceptabelt (ganska normalt) <strong>att lyfta risskålen nära munnen</strong> och äta därifrån. Du kommer inte att se dum ut, du kommer att se kryddad ut!</p>\n<p>Fäst inte heller skålen vid munnen, utan lyft den nära dig så att riskornen inte samlas runt matplatsen.</p>\n\n\n<!-- /wp:flatsome/uxbuilder -->\";s:10:\"post_title\";s:38:\"Hur håller man i kinesiska ätpinnar?\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:33:\"hur-man-haller-kinesiska-atpinnar\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2023-07-25 02:51:48\";s:17:\"post_modified_gmt\";s:19:\"2023-07-25 00:51:48\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:28:\"https://teng-shop.com/?p=985\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:7;O:7:\"WP_Post\":24:{s:2:\"ID\";i:1022;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-12-20 00:54:18\";s:13:\"post_date_gmt\";s:19:\"2022-12-19 23:54:18\";s:12:\"post_content\";s:7470:\"<!-- wp:flatsome/uxbuilder -->\n<div>Matkulturen är djupt rotad i Kinas historia. Som besökare eller gäst i ett kinesiskt hem eller på en kinesisk restaurang kommer du att upptäcka att <strong>bordsskick</strong> är viktigt och att artighet alltid bidrar till att du njuter av måltiden och blir på gott humör!</div>\n<div>&nbsp;</div>\n<div>Det är verkligen en beundransvärd sed att <strong>respektera andra vid bordet</strong>, inklusive äldre, lärare och gäster, samtidigt som man tar väl hand om barnen.</div>\n<div>&nbsp;</div>\n<div>Kineserna insisterar alltid på filial piety. Seden att <strong>presentera de bästa rätterna</strong> till de äldsta familjemedlemmarna först har följts i otaliga generationer. <strong>I forntiden</strong> levde vanligt folk ett fattigt liv, men de gjorde ändå sitt bästa för att stödja den äldre mamman eller pappan, som tog det för givet.</div>\n<div>&nbsp;</div>\n<div>Även om värdarna i Kina alla är vänliga och gästvänliga bör du också visa dem respekt</strong>. Innan du börjar äta kan värden säga några välkomstord till dig. Gästerna bör inte börja äta förrän värden säger: \"Smaklig måltid\" eller något liknande, eftersom det annars tyder på bristande respekt och orsakar missnöje.</div>\n<div>&nbsp;</div>\n<div>När värdarna ställer fram tallrikarna på bordet placerar de <strong>huvudrätterna i mitten</strong> och tillbehören runt dem. När huvudrätterna är <strong>förberedda i en dekorativ form</strong>, antingen genom skärning eller på annat sätt, kommer de att placeras framför huvudgästerna och de äldre vid bordet.</div>\n<div>&nbsp;</div>\n<div>Nu går vi vidare till de olika traditionella kinesiska köken.&nbsp;Upptäck det nu!</div>\n\n[gap height=\"50px\"]\n\n[ux_products cat=\"36\" products=\"4\"]\n\n[gap height=\"50px\"]\n\n<h2>De bästa traditionella köken i Kina</h2>\n<div><strong>Det kinesiska köket</strong> är rikt och mångsidigt och varierar i stil och smak från region till region. Dess historia går tusentals år tillbaka och har utvecklats över tiden enligt förändringar i miljön (t.ex. klimat) och lokala preferenser. Det kinesiska köket varierar också beroende på social klass och etnicitet, och påverkas ofta av köket i andra <strong>kulturer</strong>.</div>\n<div>&nbsp;</div>\n<div>Alla dessa faktorer bidrar till ett oöverträffat utbud av matlagningstekniker, ingredienser, <strong>rätter</strong> och matstilar som utgör det som nu är känt som det kinesiska köket.</div>\n<div>&nbsp;</div>\n<div>Av de olika regionala stilarna inom det kinesiska köket är det kantonesiska köket i Guangdong det mest kända i världen. Många västerländska kinesiska restauranger har anammat en <strong>kantonesisk stil</strong> på grund av majoriteten av de kinesiska emigranter från Guangdong som bosatte sig i USA och Europa på 1800-talet.</div>\n<div>&nbsp;</div>\n<div>I själva verket består Hakkasan-menyn främst av kantonesiska rätter eller Hakka-rätter (därav namnet Hakkasan), ett kök som utvecklades av Hakka-folket som bodde i provinsen <strong>Guangdong</strong>. Det finns dock ett antal olika stilar från olika regioner som bidrar till det övergripande kinesiska köket.</div>\n\n[gap]\n\n<h3>Anhui (Hui)</h3>\n<p>Anhui-köket härstammar från de inhemska matlagningsstilarna hos invånarna i Huangshan-bergsområdet i <strong>Kina</strong>. Även om det liknar Jiangsu-köket, lägger det mindre tonvikt på skaldjur och mer på ett brett utbud av lokalt odlade örter och grönsaker, både från land och hav.</p>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"1062\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h3>Fujian (Min)</h3>\n<p>Fujians kök är influerat av dess kustläge och bergiga terräng. Ingredienser som skogssvamp, <strong>bambuskott</strong>, fisk, skaldjur och sköldpaddor används regelbundet. Köket i denna region är känt för sin speciella betoning på umamismak; rätterna är notoriskt lätta och smakrika.</p>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"1060\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h3>Zhejiang (Zhe)</h3>\n<p>I allmänhet är <strong>Zhejiang</strong> mat fräsch och lätt snarare än fet. Den består av minst fyra olika köksstilar: Hangzhou, som kännetecknas av rika maträtter och bambuskott; Shaoxing, som specialiserar sig på fågel och <strong>fisk</strong>; Ningbo, som specialiserar sig på skaldjur; och Shanghai, med xiao long bao.</p>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"1058\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h3>Shandong (Lu)</h3>\n<p>Härledd från de inhemska kulinariska stilarna i Shandong, en kustprovins i norra Kina, består Shandong-köket av två dominerande stilar: Jiaodong, som kännetecknas av lätta <strong>skaldjursrätter</strong>, och Jinan, en stil som kännetecknas av att man använder soppa i sina rätter. Även om Shandong-köket är mindre tillgängligt i västvärlden anses det ofta vara en av de mest inflytelserika matlagningsstilarna i <strong>kinesisk kulinarisk</strong> historia.</p>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"1056\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h3>Hunan (Xiang)</h3>\n<p>Liksom det sichuanska köket är det hunanska köket känt för att vara <strong>hett och kryddigt</strong>, med riklig användning av vitlök, chili och schalottenlök. Till skillnad från det sichuanska köket är det dock känt för att vara rent hett, i motsats till den heta och bedövande hettan i det <strong>sichuanska köket</strong>.</p>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"1054\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h3>Kantonesiska (Yu)</h3>\n<p>På grund av Guangdongs närhet till <strong>Sydkinesiska havet</strong> har invånarna i regionen tillgång till ett rikligt utbud av importerade livsmedel och färska skaldjur. Det kantonesiska köket innehåller nästan allt ätbart kött, inklusive <strong>kycklingfötter</strong>, anktunga, ormar och sniglar. Lamm och get äts dock sällan på grund av deras tillgänglighet.</p>\n<p>Många <strong>tillagningstekniker</strong> används, inklusive wok hei (stekning) och ångkokning. Kryddor används sparsamt och färska örter tillsätts sällan i rätterna. Bland rätterna finns dim sum, små bitar av <strong>mat</strong> som vanligtvis serveras till frukost eller lunch med te; grillad char siu, klibbig och rödbränd i färgen; och klara buljonger smaksatta med köttbuljong.</p>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"1051\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h3>Jiangsu (Su)</h3>\n<p><p>Jiangsu-köket består av flera olika stilar av kinesiskt kök, nämligen Huaiyang, Yangzhou, Nanjing, Suzhou och Zhenjiang. <strong>Maten i Jiangsuköket är känd för att vara mjuk</strong>, men inte så mjuk att den faller sönder: köttet är mört men faller inte av benet när man lyfter på det.</p>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"1049\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h3>Szechuan (Chuan)</h3>\n<p>Szechuan köket producerar det mest utbredda köket i Kina. Det är känt för sin användning av starka smaker. <strong>Szechuan chili</strong>, vitlök och peppar används flitigt i rätterna. Sichuanpeppar har en unik smak: den är intensivt doftande, citronaktig och ger en bedövande känsla i munnen. Szechuanköket innehåller ofta livsmedel som har konserverats genom inläggning, <strong>saltning och torkning</strong>.</p>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"1047\" image_size=\"original\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->\";s:10:\"post_title\";s:62:\"Kinesisk matkultur: De olika typerna av rätter att upptäcka!\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:19:\"kinesisk-mat-kultur\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2023-07-25 02:51:48\";s:17:\"post_modified_gmt\";s:19:\"2023-07-25 00:51:48\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:29:\"https://teng-shop.com/?p=1022\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:8;O:7:\"WP_Post\":24:{s:2:\"ID\";i:1068;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-12-20 18:06:05\";s:13:\"post_date_gmt\";s:19:\"2022-12-20 17:06:05\";s:12:\"post_content\";s:5362:\"<!-- wp:flatsome/uxbuilder -->\n<div>Vi råkar leva på en plats i tiden där vi verkar fortsätta att springa på det metaforiska löpbandet för att skaffa oss fler och fler saker.</div>\n<div>&nbsp;</div>\n<div><strong>Kinesisk zenfilosofi</strong>, inspirerad av buddhismen, är dock en studie i kontraster. Den lär oss att finna tröst i tomhet, skönhet i ofullkomlighet och elegans i enkelhet.</div>\n<div>&nbsp;</div>\n<div>Och när dessa principer införlivas i språket för <strong>inredningsdesign</strong> kan de förvandla ditt hem till en meditativ tillflyktsort från omvärlden.</div>\n<div>&nbsp;</div>\n<div>Här är några sätt att införa Zen-inspirerad design i ditt hem.</div>\n\n[gap]\n\n<h2>1) Släpp in det naturliga ljuset</h2>\n<p>Zen förespråkar öppenhet i alla aspekter av livet och en stor del av det innebär att bli ett med <strong>naturen</strong>, att hålla sig nära den. Det här vardagsrummet är det perfekta exemplet på hur man tar in utsidan genom att släppa in ljuset.</p>\n<p>Cynosuren är glasväggen som badar rummet i naturligt ljus och ger en vidsträckt grön utsikt över utomhusmiljön. Skapa en liknande atmosfär genom att utforska alla möjligheter med naturligt ljus i ditt hem.</p>\n\n[gap height=\"50px\"]\n\n[ux_products cat=\"42\" products=\"4\"]\n\n[gap height=\"50px\"]\n\n<h2>2) Använd dämpade jordnära färger</h2>\n<div>Zen-inspirerade utrymmen inger <strong>en känsla av lugn i miljön</strong>. Ljusa färger, även pastellfärger, anses ha en mycket energisk karaktär. Dämpade, neutrala och jordnära färger ger en känsla av lugn och ro.</div>\n<div>&nbsp;</div>\n<div>Målet är <strong>att hålla alla distraktioner, stora som små</strong>, på avstånd. Solida neutrala färger är ett enkelt och ekonomiskt sätt att uppnå detta. Du kan också välja möbler med dämpade toner.</div>\n\n[gap]\n\n<h2>3) Att sätta på en plattformssäng</h2>\n<div>Stillhet i <strong>Zen-kulturen</strong> handlar om att odla inre frid som ökar självkännedomen och en känsla av jämnmod. Denna princip manifesteras i inredningen genom permanenta inredningsdetaljer, t.ex. plattformssängar.</div>\n<div>&nbsp;</div>\n<div>Plattformssängar är ett vanligt inslag i <strong>Japansk-inspirerad Zen-design</strong>. De består av en träplattform som är placerad mycket lågt på marken. En madrass placeras helt enkelt ovanpå och det finns en avsiktlig avsaknad av andra element för att bevara rummets stillhet.</div>\n\n[gap]\n\n<h2>4) Installera en vattenspegel</h2\n\n\n<p><strong>Zen-utrymmen</strong> framkallar lugn och ro, både inomhus och utomhus. Ljudet av vatten som rinner i hemmet skapar lugnande, harmonisk musik som höjer energin och lugnar sinnet.</p>\n<p>Om det inte är möjligt att skapa en central vattenspegel som den på bilden, kan du överväga att ta in en av de plug-and-play inomhusfontäner som är lätt tillgängliga lokalt.</p>\n<p><Placera dem i matsalen, vardagsrummet eller på en innergård - eller ännu hellre på en plats där det milda ljudet av rinnande vatten på något sätt kan förstärkas.</p>\n\n[gap]\n\n<h2>5) Att införa minimalism och enkelhet</h2>\n<div><strong>Enkelhet</strong> är en del av den genetiska koden för Zen. Allt onödigt elimineras, så att det negativa utrymme som skapas i slutändan blir en del av själva designen. Resultatet är en fängslande naken estetik.</div>\n<div>&nbsp;</div>\n<div>Det första steget på vägen mot minimalism är att göra sig av med allt som rör till det i hemmet. Oanvända föremål kan doneras och resten kan gömmas undan i förvaringsutrymmen. När det gäller möbler, välj möbler som är eleganta, moderna, lätta och osmyckade. Skapa en känsla av lätthet genom att välja föremål med <strong>enkel design</strong>.</div>\n\n[gap height=\"50px\"]\n\n[ux_products cat=\"45\" products=\"4\"]\n\n[gap height=\"50px\"]\n\n<h2>6) Omorganisera presentationen</h2>\n<div>Utöver att ta bort oönskade saker och föremål från vår omgivning, uppmanar Zen oss att hitta balans och harmoni med de saker som finns kvar.</div>\n<div>&nbsp;</div>\n<div>Du kan göra detta genom att <strong>arrangera om möbler</strong>, skapa vinkelräta vinklar i deras placering och ta bort allt som stör flödet och harmonin i ett utrymme. Du kan också använda subtila färger och komplettera texturer och belysning för att skapa balans.</div>\n<div>&nbsp;</div>\n<div>Det här rummet kombinerar en enkel, ren layout med ett neutralt, tvåtonigt färgtema för att skapa den mest <strong>serene atmosfär</strong>.</div>\n\n[gap]\n\n<h2>7) Välj grönt</h2>\n<div>Att se naturen som en del av vårt väsen och vice versa är en viktig princip i <strong>Zen-filosofin</strong>. För att skapa ett lugnande utrymme, ta in naturen. Använd krukväxter eller ta in ett träd eller två i huset.</div>\n<div>&nbsp;</div>\n<div>Sand, stenar och klippor kan användas för att förstärka naturen i vardagsrummet med <strong>trä och bambu</strong>. Du kan också till exempel välja en handgjord rökelsehållare, som kommer att göra ditt hem mycket hälsosamt.</div>\n<div>&nbsp;</div>\n<div>Du kan också skapa en grön hörna i ditt kök eller på en fönsterbräda och odla växter och örter. Om du inte har gröna fingrar kan du placera några <strong>bonsai</strong>-växter runt huset.</div>\n\n[gap height=\"50px\"]\n\n[ux_product_categories]\n\n\n<!-- /wp:flatsome/uxbuilder -->\";s:10:\"post_title\";s:38:\"Hur gör man sitt hem zen & kinesiskt?\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:34:\"hur-man-gor-sitt-hem-zen-kinesiskt\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2023-07-25 02:51:48\";s:17:\"post_modified_gmt\";s:19:\"2023-07-25 00:51:48\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:29:\"https://teng-shop.com/?p=1068\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:9;O:7:\"WP_Post\":24:{s:2:\"ID\";i:1085;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-12-20 18:35:00\";s:13:\"post_date_gmt\";s:19:\"2022-12-20 17:35:00\";s:12:\"post_content\";s:6429:\"<!-- wp:flatsome/uxbuilder -->\n<div><strong>Kinesiska bröllop</strong>, liksom västerländska bröllop, är alla unika på sitt eget sätt. Vissa bröllop tenderar att vara mer traditionella med parader och bröllopsceremonier, medan andra inkluderar mer moderna och västerländska seder.</div>\n<div>&nbsp;</div>\n<div>Även om kinesiska bröllop är lite mer komplicerade för oss att förstå än traditionella västerländska bröllop, är det fortfarande lätt att navigera, även om det är första gången!</div>\n<div>&nbsp;</div>\n<div>Som gäst kan det vara viktigt vad du har på dig på ett kinesiskt bröllop.</div>\n<div>&nbsp;</div>\n<div>&nbsp;</div>\n<div>Det är därför vi ska svara på frågan i den här artikeln: Hur klär man sig för ett kinesiskt bröllop? Genom 9 rekommendationer för att vara med i klädkoden på ett <strong>traditionellt kinesiskt bröllop</strong>.</div>\n\n[gap height=\"50px\"]\n\n[ux_products cat=\"47\" products=\"4\"]\n\n[gap height=\"50px\"]\n\n<h2>1. Bär inte rött</h2>\n<p><strong>Kinesiska brudar bär vanligtvis rött på sin bröllopsdag</strong>, så att bära det som gäst kommer att betraktas som oförskämt. Det är ungefär som i västvärlden, där det är oartigt att klä sig i vitt när du är gäst. Du vill ju inte se ut som om du försöker stjäla uppmärksamheten från bruden! Välj en annan, mer diskret färg till din klänning, eller din skjorta om du är man.</p>\n\n[gap]\n\n<h2>2. Använd varma färger</h2>\n<p>Lila, rosa och persika symboliserar alla nytt liv och lycka i <strong>kinesisk kultur</strong>. Så att bära dessa <a href=\"https://www.thatsmandarin.com/guest-blogs-media/the-meaning-of-different-colors-in-chinese-culture/\">färger</a> indikerar att du vill det bästa för den nya unionen och hjälper också till att ge lycka och lycka till det nya paret. De är också bra färgval eftersom de tenderar att se smickrande ut på många olika hudtoner och hårfärger, och kan fungera under alla årstider. Att bära gult eller orange anses också vara acceptabelt.</p>\n\n[gap]\n\n<h2>3. Undvik att bära för mycket svart eller vitt</h2>\n<p>Både vitt och svart symboliserar sorg och död i den kinesiska kulturen. Att bära dessa färger på ett <strong>bröllop</strong> kan bringa otur för paret och anses helt enkelt vara oförskämt, så undvik dem. Du kan dock komma undan med att bära inslag av svart eller vitt på din klänning, särskilt om paret är modernt.</p>\n\n[gap]\n\n<h2>4. Du kan inkludera festliga accenter och accessoarer</h2>\n<p>Små inslag av guld, som är en populär färg i den kinesiska kulturen, kan verkligen piffa upp din look utan att bryta mot klädkoden. Du kan också inkludera små detaljer inspirerade av kinesisk kultur i din outfit, till exempel en <strong>Mandarinkrage</strong> på din klänning.</p>\n<p>Du kan också lägga till accessoarer från kinesisk kultur, t.ex. ett <a href=\"https://www.nl.ecom-expansion.com/collections/kinesiska-paraplyer/\">kinesiskt paraply</a> eller en <strong>traditionell solfjäder</strong>. Men om du överbelastar din outfit med orientaliska accenter kan du komma att överdriva det.</p>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"1106\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n[gap]\n\n<h2>5. Längden på klänningen beror på bröllopet</h2>\n<p>Även om vissa aspekter av det <strong>kinesiska</strong> bröllopet är mycket traditionella, gillar brudar fortfarande att ha kontroll över festen. I allmänhet bör du, om du kan, kolla med brudparet hur formellt de vill att det ska vara innan du köper din klänning eller kostym.</p>\n<p>Om inte inbjudan specifikt anger att det är en mycket formell tillställning är det bäst att välja en kjollängd över knäet. Om bröllopet är mycket <strong>traditionellt</strong> måste du kolla med brudparet för specifika riktlinjer.</p>\n\n[gap]\n\n<h2>6. Förbli elegant</h2>\n<p>Korta klänningar kan visserligen vara lämpliga, men de bör alltid vara eleganta. <strong>Klänningar</strong> som är för flashiga eller sexiga kan anses vara olämpliga, precis som de skulle vara på de flesta bröllop runt om i världen, inte bara i den kinesiska kulturen.</p>\n<p>Och även om bröllopet inte är särskilt formellt bör du anstränga dig för att vara <strong>elegant och välklädd</strong>, oavsett om du är man eller kvinna!</p>\n\n[gap height=\"50px\"]\n\n[ux_image id=\"1104\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h2>7. Bär något som representerar dig väl</h2>\n<p>Särskilt om du ska gå på ett bröllop där du inte känner så många människor bör du verkligen tänka på vad din klädsel säger om dig. I <strong>traditionell kinesisk kultur</strong> kan hur du presenterar dig själv påverka din familjs heder.</p>\n<p>Även om många familjer är mer flexibla idag kommer du fortfarande att behöva tänka på hur du bäst representerar dig själv.</p>\n<p>Detta innebär att du undviker flashiga färger, alltför sexiga silhuetter eller detaljer som kan uppfattas som vulgära. <strong>Kinesisk tradition</strong> anses fortfarande vara ganska konservativ.</p>\n\n[gap]\n\n<h2>8. Kläder är lika acceptabla som klänningar</h2>\n<p>Vissa kinesiska bröllop är inte alls lika formella som västerländska bröllop, och det är vanligtvis helt lämpligt att bära en kjol och blus istället för en <strong>qipao</strong>, särskilt om du tror att du kommer att vara mer bekväm där.</p>\n<p>På vissa kinesiska bröllop får du lite skäll om du klär dig för formellt. Naturligtvis varierar detta från bröllop till bröllop. Så det är bäst att kolla med brudparet eller någon som står närmare <strong>festen</strong>.</p>\n\n[gap height=\"50px\"]\n\n[ux_products cat=\"49\" products=\"4\"]\n\n[gap height=\"50px\"]\n\n<h2>9. Se till att din klänning sträcker sig</h2>\n<div>Kinesiska bröllop är kända för sina <strong> oändliga bufféer</strong>, och du kommer åtminstone att vilja prova varje rätt. Om du bär något som är för tajt i mitten kan du ångra det i slutet av kvällen! Draperade tyger är ett bra val, eftersom de inte bara är snygga utan också täcker problemområden utan att begränsa dina rörelser.</div>\n<div>&nbsp;</div>\n<div>Nu vet du vad du ska ha på dig på ditt nästa kinesiska bröllop. I vår butik hittar du en rad traditionella kläder som kommer att passa dig perfekt för att vara på topp på ditt <strong>framtida kinesiska bröllop</strong>.</div>\n\n\n<!-- /wp:flatsome/uxbuilder -->\";s:10:\"post_title\";s:46:\"Hur klär man sig för ett kinesiskt bröllop?\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:38:\"hur-man-klar-sig-for-kinesiskt-brollop\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2023-07-25 02:51:48\";s:17:\"post_modified_gmt\";s:19:\"2023-07-25 00:51:48\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:29:\"https://teng-shop.com/?p=1085\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}s:10:\"post_count\";i:10;s:12:\"current_post\";i:-1;s:11:\"in_the_loop\";b:0;s:4:\"post\";r:100;s:8:\"comments\";N;s:13:\"comment_count\";i:0;s:15:\"current_comment\";i:-1;s:7:\"comment\";N;s:11:\"found_posts\";i:28;s:13:\"max_num_pages\";d:3;s:21:\"max_num_comment_pages\";i:0;s:9:\"is_single\";b:0;s:10:\"is_preview\";b:0;s:7:\"is_page\";b:0;s:10:\"is_archive\";b:0;s:7:\"is_date\";b:0;s:7:\"is_year\";b:0;s:8:\"is_month\";b:0;s:6:\"is_day\";b:0;s:7:\"is_time\";b:0;s:9:\"is_author\";b:0;s:11:\"is_category\";b:0;s:6:\"is_tag\";b:0;s:6:\"is_tax\";b:0;s:9:\"is_search\";b:0;s:7:\"is_feed\";b:0;s:15:\"is_comment_feed\";b:0;s:12:\"is_trackback\";b:0;s:7:\"is_home\";b:0;s:17:\"is_privacy_policy\";b:0;s:6:\"is_404\";b:0;s:8:\"is_embed\";b:0;s:8:\"is_paged\";b:0;s:8:\"is_admin\";b:1;s:13:\"is_attachment\";b:0;s:11:\"is_singular\";b:0;s:9:\"is_robots\";b:0;s:10:\"is_favicon\";b:0;s:13:\"is_posts_page\";b:0;s:20:\"is_post_type_archive\";b:0;s:25:\"\0WP_Query\0query_vars_hash\";s:32:\"c82e1a097ca23bb8fe6ecedff22080a1\";s:28:\"\0WP_Query\0query_vars_changed\";b:0;s:17:\"thumbnails_cached\";b:0;s:37:\"\0*\0allow_query_attachment_by_filename\";b:0;s:19:\"\0WP_Query\0stopwords\";N;s:23:\"\0WP_Query\0compat_fields\";a:2:{i:0;s:15:\"query_vars_hash\";i:1;s:18:\"query_vars_changed\";}s:24:\"\0WP_Query\0compat_methods\";a:2:{i:0;s:16:\"init_query_flags\";i:1;s:15:\"parse_tax_query\";}}\";s:11:\"export_type\";s:8:\"specific\";s:21:\"filter_rules_hierarhy\";s:2:\"[]\";s:21:\"product_matching_mode\";s:6:\"strict\";s:17:\"wp_query_selector\";s:8:\"wp_query\";s:18:\"taxonomy_to_export\";s:0:\"\";s:23:\"sub_post_type_to_export\";s:0:\"\";s:18:\"created_at_version\";s:5:\"1.8.3\";s:3:\"ids\";s:366:\"a:41:{i:0;i:1;i:1;i:1;i:2;i:1;i:3;i:1;i:4;i:1;i:5;i:1;i:6;i:1;i:7;i:1;i:8;i:1;i:9;i:1;i:10;i:1;i:11;i:1;i:12;i:1;i:13;i:1;i:14;i:1;i:15;i:1;i:16;i:1;i:17;i:1;i:18;i:1;i:19;i:1;i:20;i:1;i:21;i:1;i:22;i:1;i:23;i:1;i:24;i:1;i:25;i:1;i:26;i:1;i:27;i:1;i:28;i:1;i:29;i:1;i:30;i:1;i:31;i:1;i:32;i:1;i:33;i:1;i:34;i:1;i:35;i:1;i:36;i:1;i:37;i:1;i:38;i:1;i:39;i:1;i:40;i:1;}\";s:8:\"cc_label\";s:974:\"a:41:{i:0;s:2:\"id\";i:1;s:5:\"title\";i:2;s:7:\"content\";i:3;s:7:\"excerpt\";i:4;s:4:\"date\";i:5;s:9:\"post_type\";i:6;s:9:\"permalink\";i:7;s:3:\"url\";i:8;s:5:\"title\";i:9;s:7:\"caption\";i:10;s:11:\"description\";i:11;s:3:\"alt\";i:12;s:8:\"featured\";i:13;s:3:\"url\";i:14;s:8:\"category\";i:15;s:8:\"post_tag\";i:16;s:12:\"_wp_old_slug\";i:17;s:18:\"_yoast_wpseo_title\";i:18;s:21:\"_yoast_wpseo_metadesc\";i:19;s:17:\"_wp_page_template\";i:20;s:13:\"_thumbnail_id\";i:21;s:29:\"_yoast_wpseo_primary_category\";i:22;s:26:\"_yoast_wpseo_content_score\";i:23;s:43:\"_yoast_wpseo_estimated-reading-time-minutes\";i:24;s:32:\"_yoast_wpseo_wordproof_timestamp\";i:25;s:7:\"_pingme\";i:26;s:6:\"status\";i:27;s:6:\"author\";i:28;s:15:\"author_username\";i:29;s:12:\"author_email\";i:30;s:17:\"author_first_name\";i:31;s:16:\"author_last_name\";i:32;s:4:\"slug\";i:33;s:6:\"format\";i:34;s:8:\"template\";i:35;s:6:\"parent\";i:36;s:11:\"parent_slug\";i:37;s:5:\"order\";i:38;s:14:\"comment_status\";i:39;s:11:\"ping_status\";i:40;s:13:\"post_modified\";}\";s:6:\"cc_php\";s:366:\"a:41:{i:0;i:0;i:1;i:0;i:2;i:0;i:3;i:0;i:4;i:0;i:5;i:0;i:6;i:0;i:7;i:0;i:8;i:0;i:9;i:0;i:10;i:0;i:11;i:0;i:12;i:0;i:13;i:0;i:14;i:0;i:15;i:0;i:16;i:0;i:17;i:0;i:18;i:0;i:19;i:0;i:20;i:0;i:21;i:0;i:22;i:0;i:23;i:0;i:24;i:0;i:25;i:0;i:26;i:0;i:27;i:0;i:28;i:0;i:29;i:0;i:30;i:0;i:31;i:0;i:32;i:0;i:33;i:0;i:34;i:0;i:35;i:0;i:36;i:0;i:37;i:0;i:38;i:0;i:39;i:0;i:40;i:0;}\";s:7:\"cc_code\";s:489:\"a:41:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";i:4;s:0:\"\";i:5;s:0:\"\";i:6;s:0:\"\";i:7;s:0:\"\";i:8;s:0:\"\";i:9;s:0:\"\";i:10;s:0:\"\";i:11;s:0:\"\";i:12;s:0:\"\";i:13;s:0:\"\";i:14;s:0:\"\";i:15;s:0:\"\";i:16;s:0:\"\";i:17;s:0:\"\";i:18;s:0:\"\";i:19;s:0:\"\";i:20;s:0:\"\";i:21;s:0:\"\";i:22;s:0:\"\";i:23;s:0:\"\";i:24;s:0:\"\";i:25;s:0:\"\";i:26;s:0:\"\";i:27;s:0:\"\";i:28;s:0:\"\";i:29;s:0:\"\";i:30;s:0:\"\";i:31;s:0:\"\";i:32;s:0:\"\";i:33;s:0:\"\";i:34;s:0:\"\";i:35;s:0:\"\";i:36;s:0:\"\";i:37;s:0:\"\";i:38;s:0:\"\";i:39;s:0:\"\";i:40;s:0:\"\";}\";s:6:\"cc_sql\";s:489:\"a:41:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";i:4;s:0:\"\";i:5;s:0:\"\";i:6;s:0:\"\";i:7;s:0:\"\";i:8;s:0:\"\";i:9;s:0:\"\";i:10;s:0:\"\";i:11;s:0:\"\";i:12;s:0:\"\";i:13;s:0:\"\";i:14;s:0:\"\";i:15;s:0:\"\";i:16;s:0:\"\";i:17;s:0:\"\";i:18;s:0:\"\";i:19;s:0:\"\";i:20;s:0:\"\";i:21;s:0:\"\";i:22;s:0:\"\";i:23;s:0:\"\";i:24;s:0:\"\";i:25;s:0:\"\";i:26;s:0:\"\";i:27;s:0:\"\";i:28;s:0:\"\";i:29;s:0:\"\";i:30;s:0:\"\";i:31;s:0:\"\";i:32;s:0:\"\";i:33;s:0:\"\";i:34;s:0:\"\";i:35;s:0:\"\";i:36;s:0:\"\";i:37;s:0:\"\";i:38;s:0:\"\";i:39;s:0:\"\";i:40;s:0:\"\";}\";s:7:\"cc_type\";s:810:\"a:41:{i:0;s:2:\"id\";i:1;s:5:\"title\";i:2;s:7:\"content\";i:3;s:7:\"excerpt\";i:4;s:4:\"date\";i:5;s:9:\"post_type\";i:6;s:9:\"permalink\";i:7;s:9:\"image_url\";i:8;s:11:\"image_title\";i:9;s:13:\"image_caption\";i:10;s:17:\"image_description\";i:11;s:9:\"image_alt\";i:12;s:14:\"image_featured\";i:13;s:14:\"attachment_url\";i:14;s:4:\"cats\";i:15;s:4:\"cats\";i:16;s:2:\"cf\";i:17;s:2:\"cf\";i:18;s:2:\"cf\";i:19;s:2:\"cf\";i:20;s:2:\"cf\";i:21;s:2:\"cf\";i:22;s:2:\"cf\";i:23;s:2:\"cf\";i:24;s:2:\"cf\";i:25;s:2:\"cf\";i:26;s:6:\"status\";i:27;s:6:\"author\";i:28;s:15:\"author_username\";i:29;s:12:\"author_email\";i:30;s:17:\"author_first_name\";i:31;s:16:\"author_last_name\";i:32;s:4:\"slug\";i:33;s:6:\"format\";i:34;s:8:\"template\";i:35;s:6:\"parent\";i:36;s:11:\"parent_slug\";i:37;s:5:\"order\";i:38;s:14:\"comment_status\";i:39;s:11:\"ping_status\";i:40;s:13:\"post_modified\";}\";s:10:\"cc_options\";s:1308:\"a:41:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";i:4;s:0:\"\";i:5;s:0:\"\";i:6;s:0:\"\";i:7;s:115:\"{&quot;is_export_featured&quot;:true,&quot;is_export_attached&quot;:true,&quot;image_separator&quot;:&quot;|&quot;}\";i:8;s:115:\"{&quot;is_export_featured&quot;:true,&quot;is_export_attached&quot;:true,&quot;image_separator&quot;:&quot;|&quot;}\";i:9;s:115:\"{&quot;is_export_featured&quot;:true,&quot;is_export_attached&quot;:true,&quot;image_separator&quot;:&quot;|&quot;}\";i:10;s:115:\"{&quot;is_export_featured&quot;:true,&quot;is_export_attached&quot;:true,&quot;image_separator&quot;:&quot;|&quot;}\";i:11;s:115:\"{&quot;is_export_featured&quot;:true,&quot;is_export_attached&quot;:true,&quot;image_separator&quot;:&quot;|&quot;}\";i:12;s:115:\"{&quot;is_export_featured&quot;:true,&quot;is_export_attached&quot;:true,&quot;image_separator&quot;:&quot;|&quot;}\";i:13;s:115:\"{&quot;is_export_featured&quot;:true,&quot;is_export_attached&quot;:true,&quot;image_separator&quot;:&quot;|&quot;}\";i:14;s:0:\"\";i:15;s:0:\"\";i:16;s:0:\"\";i:17;s:0:\"\";i:18;s:0:\"\";i:19;s:0:\"\";i:20;s:0:\"\";i:21;s:0:\"\";i:22;s:0:\"\";i:23;s:0:\"\";i:24;s:0:\"\";i:25;s:0:\"\";i:26;s:0:\"\";i:27;s:0:\"\";i:28;s:0:\"\";i:29;s:0:\"\";i:30;s:0:\"\";i:31;s:0:\"\";i:32;s:0:\"\";i:33;s:0:\"\";i:34;s:0:\"\";i:35;s:0:\"\";i:36;s:0:\"\";i:37;s:0:\"\";i:38;s:0:\"\";i:39;s:0:\"\";i:40;s:0:\"\";}\";s:8:\"cc_value\";s:974:\"a:41:{i:0;s:2:\"id\";i:1;s:5:\"title\";i:2;s:7:\"content\";i:3;s:7:\"excerpt\";i:4;s:4:\"date\";i:5;s:9:\"post_type\";i:6;s:9:\"permalink\";i:7;s:3:\"url\";i:8;s:5:\"title\";i:9;s:7:\"caption\";i:10;s:11:\"description\";i:11;s:3:\"alt\";i:12;s:8:\"featured\";i:13;s:3:\"url\";i:14;s:8:\"category\";i:15;s:8:\"post_tag\";i:16;s:12:\"_wp_old_slug\";i:17;s:18:\"_yoast_wpseo_title\";i:18;s:21:\"_yoast_wpseo_metadesc\";i:19;s:17:\"_wp_page_template\";i:20;s:13:\"_thumbnail_id\";i:21;s:29:\"_yoast_wpseo_primary_category\";i:22;s:26:\"_yoast_wpseo_content_score\";i:23;s:43:\"_yoast_wpseo_estimated-reading-time-minutes\";i:24;s:32:\"_yoast_wpseo_wordproof_timestamp\";i:25;s:7:\"_pingme\";i:26;s:6:\"status\";i:27;s:6:\"author\";i:28;s:15:\"author_username\";i:29;s:12:\"author_email\";i:30;s:17:\"author_first_name\";i:31;s:16:\"author_last_name\";i:32;s:4:\"slug\";i:33;s:6:\"format\";i:34;s:8:\"template\";i:35;s:6:\"parent\";i:36;s:11:\"parent_slug\";i:37;s:5:\"order\";i:38;s:14:\"comment_status\";i:39;s:11:\"ping_status\";i:40;s:13:\"post_modified\";}\";s:7:\"cc_name\";s:1047:\"a:41:{i:0;s:2:\"ID\";i:1;s:5:\"Title\";i:2;s:7:\"Content\";i:3;s:7:\"Excerpt\";i:4;s:4:\"Date\";i:5;s:9:\"Post Type\";i:6;s:9:\"Permalink\";i:7;s:9:\"Image URL\";i:8;s:11:\"Image Title\";i:9;s:13:\"Image Caption\";i:10;s:17:\"Image Description\";i:11;s:14:\"Image Alt Text\";i:12;s:14:\"Image Featured\";i:13;s:14:\"Attachment URL\";i:14;s:11:\"Catégories\";i:15;s:11:\"Étiquettes\";i:16;s:12:\"_wp_old_slug\";i:17;s:18:\"_yoast_wpseo_title\";i:18;s:21:\"_yoast_wpseo_metadesc\";i:19;s:17:\"_wp_page_template\";i:20;s:13:\"_thumbnail_id\";i:21;s:29:\"_yoast_wpseo_primary_category\";i:22;s:26:\"_yoast_wpseo_content_score\";i:23;s:43:\"_yoast_wpseo_estimated-reading-time-minutes\";i:24;s:32:\"_yoast_wpseo_wordproof_timestamp\";i:25;s:7:\"_pingme\";i:26;s:6:\"Status\";i:27;s:9:\"Author ID\";i:28;s:15:\"Author Username\";i:29;s:12:\"Author Email\";i:30;s:17:\"Author First Name\";i:31;s:16:\"Author Last Name\";i:32;s:4:\"Slug\";i:33;s:6:\"Format\";i:34;s:8:\"Template\";i:35;s:6:\"Parent\";i:36;s:11:\"Parent Slug\";i:37;s:5:\"Order\";i:38;s:14:\"Comment Status\";i:39;s:11:\"Ping Status\";i:40;s:18:\"Post Modified Date\";}\";s:11:\"cc_settings\";s:489:\"a:41:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";i:4;s:0:\"\";i:5;s:0:\"\";i:6;s:0:\"\";i:7;s:0:\"\";i:8;s:0:\"\";i:9;s:0:\"\";i:10;s:0:\"\";i:11;s:0:\"\";i:12;s:0:\"\";i:13;s:0:\"\";i:14;s:0:\"\";i:15;s:0:\"\";i:16;s:0:\"\";i:17;s:0:\"\";i:18;s:0:\"\";i:19;s:0:\"\";i:20;s:0:\"\";i:21;s:0:\"\";i:22;s:0:\"\";i:23;s:0:\"\";i:24;s:0:\"\";i:25;s:0:\"\";i:26;s:0:\"\";i:27;s:0:\"\";i:28;s:0:\"\";i:29;s:0:\"\";i:30;s:0:\"\";i:31;s:0:\"\";i:32;s:0:\"\";i:33;s:0:\"\";i:34;s:0:\"\";i:35;s:0:\"\";i:36;s:0:\"\";i:37;s:0:\"\";i:38;s:0:\"\";i:39;s:0:\"\";i:40;s:0:\"\";}\";s:15:\"update_previous\";s:1:\"4\";s:13:\"friendly_name\";s:36:\"Articles Export - 2023 July 25 20:10\";s:18:\"order_item_per_row\";i:1;s:29:\"order_item_fill_empty_columns\";i:1;s:8:\"filepath\";s:0:\"\";s:16:\"current_filepath\";s:0:\"\";s:10:\"bundlepath\";s:0:\"\";s:8:\"wp_query\";s:0:\"\";s:9:\"export_to\";s:3:\"csv\";s:15:\"export_to_sheet\";s:3:\"csv\";s:9:\"delimiter\";s:1:\",\";s:8:\"encoding\";s:5:\"UTF-8\";s:21:\"is_generate_templates\";i:1;s:18:\"is_generate_import\";i:1;s:9:\"import_id\";i:0;s:13:\"template_name\";s:36:\"Articles Export - 2023 July 25 20:10\";s:12:\"is_scheduled\";i:0;s:16:\"scheduled_period\";s:0:\"\";s:15:\"scheduled_email\";s:0:\"\";s:26:\"cc_combine_multiple_fields\";s:6:\"a:0:{}\";s:32:\"cc_combine_multiple_fields_value\";s:6:\"a:0:{}\";s:6:\"fields\";s:68:\"a:4:{i:0;s:7:\"default\";i:1;s:5:\"other\";i:2;s:2:\"cf\";i:3;s:4:\"cats\";}\";s:5:\"rules\";s:6:\"a:0:{}\";s:21:\"records_per_iteration\";s:2:\"50\";s:11:\"include_bom\";s:1:\"0\";s:17:\"include_functions\";i:1;s:19:\"split_large_exports\";s:1:\"0\";s:25:\"split_large_exports_count\";s:5:\"10000\";s:16:\"split_files_list\";s:6:\"a:0:{}\";s:12:\"main_xml_tag\";s:4:\"data\";s:14:\"record_xml_tag\";s:4:\"post\";s:16:\"save_template_as\";i:0;s:4:\"name\";s:0:\"\";s:21:\"export_only_new_stuff\";s:1:\"0\";s:26:\"export_only_modified_stuff\";s:1:\"0\";s:24:\"creata_a_new_export_file\";s:1:\"0\";s:15:\"attachment_list\";s:6:\"a:0:{}\";s:21:\"order_include_poducts\";i:0;s:25:\"order_include_all_poducts\";i:0;s:21:\"order_include_coupons\";i:0;s:25:\"order_include_all_coupons\";i:0;s:23:\"order_include_customers\";i:0;s:27:\"order_include_all_customers\";i:0;s:9:\"migration\";s:0:\"\";s:17:\"xml_template_type\";s:6:\"simple\";s:19:\"custom_xml_template\";s:0:\"\";s:26:\"custom_xml_template_header\";s:0:\"\";s:24:\"custom_xml_template_loop\";s:0:\"\";s:26:\"custom_xml_template_footer\";s:0:\"\";s:27:\"custom_xml_template_options\";s:6:\"a:0:{}\";s:22:\"custom_xml_cdata_logic\";s:4:\"auto\";s:21:\"show_cdata_in_preview\";i:0;s:17:\"export_variations\";s:1:\"3\";s:23:\"export_variations_title\";i:1;s:41:\"export_only_customers_that_made_purchases\";i:0;s:18:\"include_header_row\";i:1;s:9:\"wpml_lang\";s:3:\"all\";s:24:\"enable_export_scheduling\";s:5:\"false\";s:17:\"scheduling_enable\";s:1:\"0\";s:22:\"scheduling_weekly_days\";s:0:\"\";s:17:\"scheduling_run_on\";s:6:\"weekly\";s:22:\"scheduling_monthly_day\";s:0:\"\";s:16:\"scheduling_times\";s:17:\"a:1:{i:0;s:0:\"\";}\";s:19:\"scheduling_timezone\";s:17:\"America/Matamoros\";s:17:\"allow_client_mode\";s:1:\"0\";s:24:\"enable_real_time_exports\";s:1:\"0\";s:32:\"enable_real_time_exports_running\";i:0;s:35:\"do_not_generate_file_on_new_records\";s:1:\"0\";s:14:\"security_token\";s:0:\"\";s:4:\"file\";s:0:\"\";}','no'),(233245,'_wpallexport_session_expires_new_','1690488612','no'),(238616,'woocommerce_custom_orders_table_enabled','no','yes'),(238617,'woocommerce_custom_orders_table_data_sync_enabled','no','yes'),(238618,'woocommerce_custom_orders_table_created','yes','yes'),(238916,'upload_path','','yes'),(238917,'upload_url_path','','yes'),(238918,'db_upgraded','','yes'),(239645,'parcelpanel_integration_app_enabled_1004','0','yes'),(239646,'parcelpanel_integration_app_enabled_1005','0','yes'),(239647,'parcelpanel_integration_app_enabled_1006','0','yes'),(240415,'litespeed.conf.optm-js_delay_inc','[]','yes'),(241347,'wpo_wcpdf_random_string','ebbf1c5122f03a6196e06b9feca614d9','yes'),(241348,'wpo_wcpdf_settings_general','a:4:{s:16:\"download_display\";s:7:\"display\";s:13:\"template_path\";s:14:\"default/Simple\";s:13:\"currency_font\";s:0:\"\";s:10:\"paper_size\";s:2:\"a4\";}','yes'),(241349,'wpo_wcpdf_documents_settings_invoice','a:1:{s:7:\"enabled\";i:1;}','yes'),(241350,'wpo_wcpdf_documents_settings_packing-slip','a:1:{s:7:\"enabled\";i:1;}','yes'),(241351,'wpo_wcpdf_settings_debug','a:2:{s:14:\"enable_cleanup\";i:1;s:12:\"cleanup_days\";i:7;}','yes'),(241354,'wpo_wcpdf_version','3.7.6','yes'),(241355,'wpo_wcpdf_installed_template_paths','a:0:{}','yes'),(243398,'_transient_googlesitekit_analytics-4_data_available','1','yes'),(243423,'_transient_googlesitekit_search-console_data_available','1','yes'),(250451,'_transient_timeout_woocommerce_blocks_asset_api_script_data_ssl','1708481375','no'),(250452,'_transient_woocommerce_blocks_asset_api_script_data_ssl','{\"script_data\":{\"assets\\/client\\/blocks\\/wc-settings.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-settings.js\",\"version\":\"07c2f0675ddd247d2325\",\"dependencies\":[\"wp-hooks\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks-middleware.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-middleware.js\",\"version\":\"ca04183222edaf8a26be\",\"dependencies\":[\"wp-api-fetch\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks-data.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-data.js\",\"version\":\"c96aba0171b12e03b8a6\",\"dependencies\":[\"wc-blocks-registry\",\"wc-settings\",\"wp-api-fetch\",\"wp-data\",\"wp-data-controls\",\"wp-deprecated\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-notices\",\"wp-polyfill\",\"wp-url\"]},\"assets\\/client\\/blocks\\/wc-blocks-vendors.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-vendors.js\",\"version\":\"0b6a0d8207806c01caa1\",\"dependencies\":[\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks-registry.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-registry.js\",\"version\":\"1c879273bd5c193cad0a\",\"dependencies\":[\"react\",\"wp-data\",\"wp-deprecated\",\"wp-element\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks.js\",\"version\":\"677b3101ccf9725b0789\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-dom-ready\",\"wp-element\",\"wp-hooks\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/wc-blocks-shared-context.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-shared-context.js\",\"version\":\"6eb6865831aa5a75475d\",\"dependencies\":[\"react\",\"wp-element\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks-shared-hocs.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-shared-hocs.js\",\"version\":\"5e01ba7861e4c09bce65\",\"dependencies\":[\"react\",\"wc-blocks-data-store\",\"wc-blocks-shared-context\",\"wp-data\",\"wp-element\",\"wp-is-shallow-equal\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/price-format.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/price-format.js\",\"version\":\"eb7a7398126f71912b09\",\"dependencies\":[\"wc-settings\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/blocks-checkout.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/blocks-checkout.js\",\"version\":\"9f469ef17beaf7c51576\",\"dependencies\":[\"lodash\",\"react\",\"react-dom\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-settings\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/blocks-components.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/blocks-components.js\",\"version\":\"b165bb2bd213326d7f31\",\"dependencies\":[\"lodash\",\"react\",\"react-dom\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/wc-interactivity-dropdown.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-interactivity-dropdown.js\",\"version\":\"1cea5e9e36e528d7493b\",\"dependencies\":[\"wc-interactivity\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-interactivity-checkbox-list.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-interactivity-checkbox-list.js\",\"version\":\"c1d99df3ef00991aa5e3\",\"dependencies\":[\"wc-interactivity\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/active-filters.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/active-filters.js\",\"version\":\"95a1b3f19b7fe4333a57\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"assets\\/client\\/blocks\\/active-filters-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/active-filters-frontend.js\",\"version\":\"70e84d296b0795687d51\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wp-data\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"assets\\/client\\/blocks\\/all-products.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/all-products.js\",\"version\":\"2749b82bd8ff0710a02b\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-escape-html\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/all-products-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/all-products-frontend.js\",\"version\":\"817507c468f28d7dc664\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/all-reviews.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/all-reviews.js\",\"version\":\"9f6883440908e5e52100\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-escape-html\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/reviews-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/reviews-frontend.js\",\"version\":\"329e37284479fc3ec518\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/attribute-filter.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/attribute-filter.js\",\"version\":\"0318ade40f521370e630\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/attribute-filter-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/attribute-filter-frontend.js\",\"version\":\"deb7825537a9a0def635\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/breadcrumbs.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/breadcrumbs.js\",\"version\":\"418c5059b135f1aa7830\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/catalog-sorting.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/catalog-sorting.js\",\"version\":\"8b529214dc52ced84c1a\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/legacy-template.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/legacy-template.js\",\"version\":\"7a28cf530204660de807\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-core-data\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-notices\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/classic-shortcode.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/classic-shortcode.js\",\"version\":\"76824181596fde792ec6\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-notices\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/customer-account.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/customer-account.js\",\"version\":\"29d7fa83f6c2f9a2ce01\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/featured-category.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/featured-category.js\",\"version\":\"148e4c038b098e102c5a\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\"]},\"assets\\/client\\/blocks\\/featured-product.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/featured-product.js\",\"version\":\"c1aba3f06758a23823df\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\"]},\"assets\\/client\\/blocks\\/filter-wrapper.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/filter-wrapper.js\",\"version\":\"6e0bde12b66fdc6a52d4\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/filter-wrapper-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/filter-wrapper-frontend.js\",\"version\":\"1343caca35a219ba93be\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/handpicked-products.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/handpicked-products.js\",\"version\":\"f26a537f9581cb15be17\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"assets\\/client\\/blocks\\/mini-cart.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart.js\",\"version\":\"b9d45061c08714f5ce20\",\"dependencies\":[\"react\",\"wc-price-format\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-data\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/mini-cart-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-frontend.js\",\"version\":\"7f4b55b97a7cb539b252\",\"dependencies\":[\"wc-price-format\",\"wc-settings\",\"wp-api-fetch\",\"wp-i18n\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/store-notices.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/store-notices.js\",\"version\":\"05d34da6f782826693d8\",\"dependencies\":[\"lodash\",\"react\",\"wp-a11y\",\"wp-block-editor\",\"wp-blocks\",\"wp-compose\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/price-filter.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/price-filter.js\",\"version\":\"1acccd58ca149d97a900\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"assets\\/client\\/blocks\\/price-filter-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/price-filter-frontend.js\",\"version\":\"9737cbab23b19364820a\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-url\"]},\"assets\\/client\\/blocks\\/product-add-to-cart.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-add-to-cart.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/product-add-to-cart-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-add-to-cart-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/product-best-sellers.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-best-sellers.js\",\"version\":\"b63bce746658e0b84e06\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"assets\\/client\\/blocks\\/product-button.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-button.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/product-button-interactivity-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-button-interactivity-frontend.js\",\"version\":\"afe142c2b881b96719e3\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-data-store\",\"wc-interactivity\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/product-categories.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-categories.js\",\"version\":\"832123a81b454988a134\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\"]},\"assets\\/client\\/blocks\\/product-category.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-category.js\",\"version\":\"839c90df96d3182fd44f\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"assets\\/client\\/blocks\\/product-collection.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-collection.js\",\"version\":\"bcadee0c5276b5702d5f\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-core-data\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"assets\\/client\\/blocks\\/product-collection-no-results.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-collection-no-results.js\",\"version\":\"3310bc6ce1501b94381d\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/product-new.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-new.js\",\"version\":\"21903dd7b7340a5bbd65\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"assets\\/client\\/blocks\\/product-on-sale.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-on-sale.js\",\"version\":\"bd498aa4d0e917c49ced\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"assets\\/client\\/blocks\\/product-template.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-template.js\",\"version\":\"ebc6e378a32a6481e06c\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-core-data\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/product-query.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-query.js\",\"version\":\"202aa5d3b35c4be8c140\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"assets\\/client\\/blocks\\/product-query-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-query-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/product-results-count.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-results-count.js\",\"version\":\"a651c6e11bed0abf0a6e\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/product-search.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-search.js\",\"version\":\"904865bb60432f0703aa\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/product-summary.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-summary.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/product-tag.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-tag.js\",\"version\":\"3eb8588c8ebc599f84ba\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"assets\\/client\\/blocks\\/product-title.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-title.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/product-title-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-title-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/product-top-rated.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-top-rated.js\",\"version\":\"21f88fabd15e241a44bf\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"assets\\/client\\/blocks\\/products-by-attribute.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/products-by-attribute.js\",\"version\":\"e3b1e887efef84839d9e\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"assets\\/client\\/blocks\\/rating-filter.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/rating-filter.js\",\"version\":\"094dd57e09c4e444ac49\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/reviews-by-category.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/reviews-by-category.js\",\"version\":\"1f83bd36afb2334f1e26\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"assets\\/client\\/blocks\\/reviews-by-product.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/reviews-by-product.js\",\"version\":\"4d2f490293bf2193b18c\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"assets\\/client\\/blocks\\/single-product.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/single-product.js\",\"version\":\"0a4baf55884c120a7af9\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wc-store-data\",\"wp-api-fetch\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-escape-html\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/stock-filter.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/stock-filter.js\",\"version\":\"1a0b810e62e59a05b3e9\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/stock-filter-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/stock-filter-frontend.js\",\"version\":\"91648cab5b0244ffedf0\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/page-content-wrapper.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/page-content-wrapper.js\",\"version\":\"f35e44dbb78e412a7ad8\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-status.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-status.js\",\"version\":\"9259ba035fec1019a3c4\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-summary.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-summary.js\",\"version\":\"42d4d02662ee78e67430\",\"dependencies\":[\"react\",\"wc-price-format\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-date\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-totals.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-totals.js\",\"version\":\"058cf0fedd7d960dc6c3\",\"dependencies\":[\"react\",\"wc-price-format\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-totals-wrapper.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-totals-wrapper.js\",\"version\":\"129cdd90c94398a18c88\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-downloads.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-downloads.js\",\"version\":\"9b8381e57115e792aacd\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-downloads-wrapper.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-downloads-wrapper.js\",\"version\":\"44ee817b8cd877854069\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-billing-address.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-billing-address.js\",\"version\":\"b3df4293ff6f2fc1e5aa\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-shipping-address.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-shipping-address.js\",\"version\":\"cbe3b727556f17cccbeb\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-billing-wrapper.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-billing-wrapper.js\",\"version\":\"1340068d7a04db3610f6\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-shipping-wrapper.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-shipping-wrapper.js\",\"version\":\"0f2a58a6d1253ce3c18d\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-additional-information.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-additional-information.js\",\"version\":\"9ff9792a5b25249e7107\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/cart.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart.js\",\"version\":\"acefa58be16d3beca24c\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-core-data\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-editor\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-notices\",\"wp-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/cart-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-frontend.js\",\"version\":\"77a2ac425fb136be0522\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-blocks\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-express-payment-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-express-payment-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-coupon-form-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-coupon-form-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/empty-cart-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/empty-cart-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-line-items-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-line-items-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-order-summary-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-order-summary-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-items-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-items-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-fee-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-fee-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-heading-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-heading-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-accepted-payment-methods-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-accepted-payment-methods-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-subtotal-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-subtotal-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-taxes-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-taxes-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-heading-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-heading-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-fee-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-fee-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-express-payment-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-express-payment-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-order-summary-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-order-summary-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-totals-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-totals-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-line-items-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-line-items-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-coupon-form-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-coupon-form-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-products-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-products-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-totals-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-totals-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/empty-cart-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/empty-cart-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/proceed-to-checkout-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/proceed-to-checkout-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/proceed-to-checkout-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/proceed-to-checkout-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-items-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-items-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-discount-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-discount-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/filled-cart-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/filled-cart-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-shipping-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-shipping-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-products-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-products-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-discount-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-discount-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-accepted-payment-methods-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-accepted-payment-methods-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-subtotal-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-subtotal-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/filled-cart-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/filled-cart-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-taxes-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-taxes-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-shipping-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-shipping-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-taxes-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-taxes-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-subtotal-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-subtotal-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/filled-cart-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/filled-cart-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/empty-cart-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/empty-cart-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-totals-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-totals-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-items-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-items-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-line-items-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-line-items-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-express-payment-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-express-payment-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/proceed-to-checkout-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/proceed-to-checkout-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-accepted-payment-methods-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-accepted-payment-methods-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-coupon-form-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-coupon-form-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-discount-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-discount-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-fee-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-fee-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-heading-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-heading-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-shipping-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-shipping-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-cross-sells-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-cross-sells-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-cross-sells-products-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-cross-sells-products-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout.js\",\"version\":\"9c453d40445d6b160616\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-core-data\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-editor\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-notices\",\"wp-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/checkout-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-frontend.js\",\"version\":\"e2d912fa982858c6ccaa\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/checkout-blocks\\/shipping-address-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/shipping-address-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/totals-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/totals-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/payment-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/payment-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/shipping-methods-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/shipping-methods-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-coupon-form-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-coupon-form-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/express-payment-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/express-payment-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/fields-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/fields-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/shipping-methods-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/shipping-methods-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-fee-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-fee-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/terms-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/terms-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/pickup-options-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/pickup-options-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-cart-items-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-cart-items-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-subtotal-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-subtotal-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/payment-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/payment-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-taxes-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-taxes-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-fee-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-fee-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/pickup-options-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/pickup-options-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/shipping-address-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/shipping-address-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-coupon-form-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-coupon-form-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/shipping-method-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/shipping-method-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/totals-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/totals-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/terms-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/terms-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/contact-information-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/contact-information-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/billing-address-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/billing-address-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/shipping-method-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/shipping-method-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-discount-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-discount-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-cart-items-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-cart-items-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/fields-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/fields-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-shipping-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-shipping-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/billing-address-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/billing-address-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-note-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-note-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-discount-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-discount-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/contact-information-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/contact-information-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-subtotal-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-subtotal-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-taxes-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-taxes-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/actions-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/actions-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/actions-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/actions-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-shipping-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-shipping-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-express-payment--checkout-blocks\\/express-payment-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-express-payment--checkout-blocks\\/express-payment-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-actions-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-actions-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-billing-address-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-billing-address-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-contact-information-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-contact-information-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-express-payment-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-express-payment-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-fields-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-fields-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-note-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-note-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-cart-items-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-cart-items-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-coupon-form-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-coupon-form-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-discount-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-discount-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-fee-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-fee-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-shipping-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-shipping-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-subtotal-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-subtotal-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-taxes-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-taxes-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-payment-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-payment-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-shipping-address-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-shipping-address-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-shipping-methods-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-shipping-methods-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-shipping-method-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-shipping-method-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-pickup-options-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-pickup-options-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-terms-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-terms-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-totals-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-totals-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents.js\",\"version\":\"98918e12a7aa368a9390\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/empty-mini-cart-contents-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/empty-mini-cart-contents-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/filled-mini-cart-contents-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/filled-mini-cart-contents-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-footer-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-footer-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-items-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-items-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-products-table-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-products-table-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-shopping-button-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-shopping-button-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-cart-button-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-cart-button-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-checkout-button-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-checkout-button-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-title-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-title-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-title-items-counter-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-title-items-counter-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-title-label-block.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-title-label-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/wc-shipping-method-pickup-location.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-shipping-method-pickup-location.js\",\"version\":\"4a2c7176103baca81cfd\",\"dependencies\":[\"react\",\"react-dom\",\"wc-settings\",\"wp-api-fetch\",\"wp-components\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"assets\\/client\\/blocks\\/mini-cart-component-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-component-frontend.js\",\"version\":\"85605a0a865173a632e8\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-autop\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/items-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/items-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/empty-cart-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/empty-cart-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/checkout-button-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/checkout-button-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-label-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-label-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/checkout-button-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/checkout-button-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/products-table-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/products-table-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/items-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/items-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/empty-cart-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/empty-cart-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-items-counter-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-items-counter-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/cart-button-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/cart-button-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/filled-cart-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/filled-cart-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/shopping-button-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/shopping-button-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/footer-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/footer-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-label-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-label-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/cart-button-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/cart-button-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/footer-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/footer-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-items-counter-style.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-items-counter-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/filled-cart-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/filled-cart-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/shopping-button-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/shopping-button-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-line-items--mini-cart-contents-block\\/products-table-frontend.js\":{\"src\":\"https:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-line-items--mini-cart-contents-block\\/products-table-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]}},\"version\":\"11.8.0-dev\",\"hash\":\"3e560b6be3df12197e8c3175b71c1c20\"}','no'),(250500,'wcpay_was_in_use','no','yes'),(259027,'mwp_key_last_used_6bb7c941-b1ac-489f-bd77-29bccf4c655f','1695997416','yes'),(259059,'mwp_key_last_used_a666c965-b04f-4e55-88ce-a79d63a2aff9','1695997541','yes'),(266629,'litespeed.conf.optm-dns_preconnect','[]','yes'),(266641,'woocommerce_feature_marketplace_enabled','yes','yes'),(267042,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:23:\"kotaro21.mail@gmail.com\";s:7:\"version\";s:5:\"6.4.2\";s:9:\"timestamp\";i:1701920949;}','no'),(272195,'ast_trackship_notice_ignore','true','yes'),(286232,'rank_math_viewed_seo_analyer','1','no'),(286234,'rank_math_review_notice_delayed','1','no'),(286241,'rank_math_aioseo_block_posts','a:2:{s:5:\"posts\";a:0:{}s:5:\"count\";i:0;}','no'),(286263,'rank_math_pro_notice_added','1','no'),(286400,'_transient_woocommerce_webhook_ids_status_active','a:5:{i:0;i:25;i:1;i:24;i:2;i:23;i:3;i:22;i:4;i:21;}','yes'),(286589,'woocommerce_checkout_address_2_field','optional','yes'),(286889,'wp_attachment_pages_enabled','1','yes'),(286910,'can_compress_scripts','0','yes'),(287878,'mwp_key_last_used_1dd0bb68-d127-4e0e-9369-7b1888d24fb2','1699505569','yes'),(287883,'mwp_key_last_used_13163472','1700087995','yes'),(288664,'widget_shortcodes-ultimate','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(288665,'su_option_custom-formatting','on','yes'),(288666,'su_option_skip','on','yes'),(288667,'su_option_prefix','su_','yes'),(288668,'su_option_custom-css','','yes'),(288669,'su_option_supported_blocks','a:3:{i:0;s:14:\"core/paragraph\";i:1;s:14:\"core/shortcode\";i:2;s:13:\"core/freeform\";}','yes'),(288670,'su_option_generator_access','manage_options','yes'),(288671,'su_option_enable_shortcodes_in','a:1:{i:0;s:16:\"term_description\";}','yes'),(288672,'su_option_hide_deprecated','on','yes'),(288673,'su_option_unsafe_features','','yes'),(288674,'su_option_version','7.0.1','no'),(288675,'su_option_dismissed_notices','a:2:{s:4:\"rate\";b:1;s:15:\"unsafe-features\";b:1;}','yes'),(288678,'su_option_unsafe_features_auto_off','1','yes'),(288716,'su_presets_spoiler','a:1:{s:9:\"last_used\";a:3:{s:2:\"id\";s:9:\"last_used\";s:4:\"name\";s:18:\"Last used settings\";s:8:\"settings\";a:8:{s:5:\"title\";s:14:\"en savoir plus\";s:4:\"open\";s:2:\"no\";s:5:\"style\";s:7:\"default\";s:4:\"icon\";s:5:\"caret\";s:6:\"anchor\";s:0:\"\";s:13:\"anchor_in_url\";s:2:\"no\";s:5:\"class\";s:0:\"\";s:7:\"content\";s:21:\"Hidden content TEST 1\";}}}','yes'),(289110,'googlesitekit_has_connected_admins','0','yes'),(289521,'woo_sc_setting','a:10:{s:6:\"enable\";s:1:\"1\";s:8:\"multi_sc\";s:1:\"0\";s:8:\"position\";s:18:\"before_add_to_cart\";s:14:\"btn_horizontal\";s:5:\"right\";s:12:\"btn_vertical\";s:2:\"50\";s:15:\"size_chart_name\";s:9:\"Maattabel\";s:11:\"button_type\";s:4:\"text\";s:9:\"btn_color\";s:7:\"#c35050\";s:10:\"text_color\";s:7:\"#ffffff\";s:10:\"custom_css\";s:0:\"\";}','yes'),(289522,'woo_sc_template','default_template','yes'),(289526,'product-size-chart-for-woo_start_use','1','yes'),(289556,'wpvivid_remote_init','init','no'),(289774,'ast-pro_license_status','1','yes'),(289775,'ast-pro_license_key','f0d54d287498492da1c611872aa73052','yes'),(289776,'zorem_license_connected','1','yes'),(289777,'zorem_license_email','info@theme-pro.com','yes'),(289778,'ast-pro_instance_id','0a1ecbbb5256b57f2f301d33eb49ed8d','yes'),(289779,'_transient_zorem_subscription_status_ast-pro','1','yes'),(289780,'_transient_timeout_zorem_subscription_status_ast-pro','2011248240','yes'),(289783,'ast_pro_update_version','3.0','yes'),(289804,'ast_pro_trackship_notice_ignore','true','yes'),(289808,'ast_pro_usage_data_selector','1','yes'),(289809,'ast_pro_optin_email_notification','0','yes'),(289810,'ast_pro_enable_usage_data','0','yes'),(289917,'autocomplete_ali2woo','0','yes'),(289921,'ast_db_update_notice_updated_ignore','true','yes'),(290209,'mainwp_module_log_settings','a:1:{s:7:\"enabled\";i:1;}','no'),(290211,'mainwp_enableLegacyBackupFeature','0','no'),(290212,'mainwp_selected_theme','default','no'),(290213,'mainwp_db_version','9.0.0.4','no'),(290214,'mainwp_update_check_version','0.0.1','no'),(290215,'mainwp_plugin_version','4.5.3','no'),(290217,'mainwp_module_log_db_version','1.0.1.2','no'),(290219,'mainwp_extensions','a:0:{}','no'),(290220,'mainwp_extensions_all_activation_cached','','yes'),(290221,'mainwp_cron_last_stats','1699888963','no'),(290222,'mainwp_cron_last_ping','1699888963','no'),(290223,'mainwp_updatescheck_start_last_timestamp','1699892563','no'),(290224,'mainwp_updatescheck_start_last_schedule_timestamp','1699892563','no'),(290225,'mainwp_updatescheck_last_run','[\"2023-11-13 16:22:43\"]','no'),(290226,'mainwp_automaticUpdate_backupChecks','','no'),(290227,'mainwp_updatescheck_mail_update_core_new','','no'),(290228,'mainwp_updatescheck_mail_update_plugins_new','','no'),(290229,'mainwp_updatescheck_mail_update_themes_new','','no'),(290230,'mainwp_updatescheck_mail_update_core','','no'),(290231,'mainwp_updatescheck_mail_update_plugins','','no'),(290232,'mainwp_updatescheck_mail_update_themes','','no'),(290233,'mainwp_updatescheck_mail_ignore_core','','no'),(290234,'mainwp_updatescheck_mail_ignore_plugins','','no'),(290235,'mainwp_updatescheck_mail_ignore_themes','','no'),(290236,'mainwp_updatescheck_mail_ignore_core_new','','no'),(290237,'mainwp_updatescheck_mail_ignore_plugins_new','','no'),(290238,'mainwp_updatescheck_mail_ignore_themes_new','','no'),(290239,'mainwp_updatescheck_individual_digest_websites','','no'),(290240,'mainwp_updatescheck_sites_icon','','no'),(290241,'mainwp_last_synced_all_sites','1699888963','yes'),(290242,'mainwp_updatescheck_last_timestamp','1699892563','no'),(290243,'mainwp_updatescheck_last','13/11/2023','no'),(290244,'mainwp_updatescheck_ready_sendmail','','no'),(290246,'mainwp_showhide_events_notice','a:3:{s:16:\"request_reviews1\";i:30;s:26:\"request_reviews1_starttime\";i:1699889000;s:11:\"trust_child\";i:1;}','yes'),(290247,'mainwp_logger_check_daily','13/11/2023','no'),(290248,'mainwp_actionlogs_enabled_timestamp','1699889001','no'),(290250,'mainwp_dailydigest_last','13/11/2023','no'),(290251,'mainwp_updatescheck_dailydigest_last_timestamp','1699892628','no'),(290252,'mainwp_log_wait_lasttime','1699889028','no'),(290274,'mainwp_rest_api_keys','a:0:{}','no'),(290278,'mainwp_installation_warning_hide_the_notice','yes','yes'),(290830,'mainwp_child_update_version','1.6','yes'),(290831,'mainwp_child_plugin_version','4.6','yes'),(290832,'mainwp_child_auth','a:7:{i:5;s:32:\"f45f9dd5485b355f61f545e995d12b3e\";s:4:\"last\";i:1705881700;i:4;s:32:\"6ece4ee8b237f545178e40df6572dd11\";i:3;s:32:\"47b5095376a69d0301d75555a2448baf\";i:2;s:32:\"d766abdbefcf3d537a1c05162b192363\";i:1;s:32:\"44b3ba0a7ea760bbb02de9045b0e0e70\";i:0;s:32:\"6b7c4ab27f13e1289961f4b00d623721\";}','yes'),(290833,'mainwp_child_branding_settings','a:4:{s:13:\"contact_label\";s:20:\"Contacter le support\";s:18:\"cancelled_branding\";b:0;s:23:\"branding_preserve_title\";s:0:\"\";s:21:\"branding_disconnected\";s:0:\"\";}','no'),(290834,'mainwp_child_activated_once','1','no'),(290835,'mainwp_cache_control_cache_solution','WP Rocket','yes'),(290836,'mainwp_child_actions_data_checked','1705881701','yes'),(290844,'clean_task','a:0:{}','no'),(290878,'wpvivid_clean_task_2','a:1:{s:21:\"wpvivid-65adbe43bc863\";a:8:{s:2:\"id\";s:21:\"wpvivid-65adbe43bc863\";s:4:\"type\";s:6:\"Manual\";s:7:\"options\";a:22:{s:7:\"ismerge\";s:1:\"1\";s:4:\"lock\";s:1:\"0\";s:12:\"backup_files\";s:8:\"files+db\";s:5:\"local\";s:1:\"1\";s:6:\"remote\";s:1:\"0\";s:4:\"type\";s:6:\"Manual\";s:13:\"backup_prefix\";s:25:\"www.nl.ecom-expansion.com\";s:11:\"file_prefix\";s:64:\"www.nl.ecom-expansion.com_wpvivid-65adbe43bc863_2024-01-22-02-00\";s:13:\"log_file_name\";s:28:\"wpvivid-65adbe43bc863_backup\";s:13:\"log_file_path\";s:111:\"/home/cach0166/nl.ecom-expansion.com/wp-content/wpvividbackups/wpvivid_log/wpvivid-65adbe43bc863_backup_log.txt\";s:6:\"prefix\";s:64:\"www.nl.ecom-expansion.com_wpvivid-65adbe43bc863_2024-01-22-02-00\";s:3:\"dir\";s:62:\"/home/cach0166/nl.ecom-expansion.com/wp-content/wpvividbackups\";s:10:\"backup_dir\";s:14:\"wpvividbackups\";s:14:\"exclude-tables\";a:6:{i:0;s:16:\"wpj7_wpvivid_log\";i:1;s:30:\"wpj7_wpvivid_increment_big_ids\";i:2;s:20:\"wpj7_wpvivid_options\";i:3;s:24:\"wpj7_wpvivid_record_task\";i:4;s:21:\"wpj7_wpvivid_merge_db\";i:5;s:22:\"wpj7_wpvivid_merge_ids\";}s:14:\"include-tables\";a:0:{}s:13:\"exclude_files\";a:12:{i:0;s:91:\"#^\\/home\\/cach0166\\/nl\\.ecom\\-expansion\\.com\\/wp\\-content\\/plugins\\/wpvivid\\-backuprestore#\";i:1;s:79:\"#^\\/home\\/cach0166\\/nl\\.ecom\\-expansion\\.com\\/wp\\-content\\/plugins\\/wp\\-cerber#\";i:2;s:71:\"#^\\/home\\/cach0166\\/nl\\.ecom\\-expansion\\.com\\/wp\\-content\\/plugins\\/\\.#\";i:3;s:89:\"#^\\/home\\/cach0166\\/nl\\.ecom\\-expansion\\.com\\/wp\\-content\\/plugins\\/wpvivid\\-backup\\-pro#\";i:4;s:85:\"#^\\/home\\/cach0166\\/nl\\.ecom\\-expansion\\.com\\/wp\\-content\\/plugins\\/wpvividdashboard#\";i:5;s:67:\"#^\\/home\\/cach0166\\/nl\\.ecom\\-expansion\\.com\\/wp\\-content\\/upgrade#\";i:6;s:65:\"#^\\/home\\/cach0166\\/nl\\.ecom\\-expansion\\.com\\/wp\\-content\\/cache#\";i:7;s:65:\"#^\\/home\\/cach0166\\/nl\\.ecom\\-expansion\\.com\\/wp\\-content\\/cache#\";i:8;s:75:\"#^\\/home\\/cach0166\\/nl\\.ecom\\-expansion\\.com\\/wp\\-content\\/wpvivid_uploads#\";i:9;s:67:\"#^\\/home\\/cach0166\\/nl\\.ecom\\-expansion\\.com\\/wp\\-content\\/wpvivid#\";i:10;s:74:\"#^\\/home\\/cach0166\\/nl\\.ecom\\-expansion\\.com\\/wp\\-content\\/wpvividbackups#\";i:11;s:84:\"#^\\/home\\/cach0166\\/nl\\.ecom\\-expansion\\.com\\/wp\\-content\\/wpvivid_uploads\\/Isolate#\";}s:13:\"include_files\";a:2:{i:0;s:56:\"#^\\/home\\/cach0166\\/nl\\.ecom\\-expansion\\.com\\/wp\\-admin#\";i:1;s:59:\"#^\\/home\\/cach0166\\/nl\\.ecom\\-expansion\\.com\\/wp\\-includes#\";}s:15:\"include_plugins\";a:0:{}s:14:\"include_themes\";a:0:{}s:10:\"save_local\";i:1;s:14:\"backup_options\";a:1:{s:8:\"compress\";a:1:{s:13:\"compress_type\";s:3:\"zip\";}}s:14:\"remote_options\";b:0;}s:6:\"status\";a:7:{s:15:\"task_start_time\";i:1705885251;s:13:\"task_end_time\";i:1705885251;s:10:\"start_time\";i:1705889085;s:8:\"run_time\";i:1705889368;s:7:\"timeout\";i:1705889085;s:3:\"str\";s:6:\"cancel\";s:12:\"resume_count\";i:0;}s:7:\"setting\";a:11:{s:17:\"db_connect_method\";s:4:\"wpdb\";s:12:\"memory_limit\";s:4:\"256M\";s:18:\"max_execution_time\";i:300;s:23:\"compress_file_use_cache\";b:0;s:19:\"compress_file_count\";i:100;s:13:\"max_file_size\";i:200;s:17:\"max_sql_file_size\";i:200;s:17:\"exclude_file_size\";i:200;s:16:\"max_resume_count\";i:6;s:10:\"zip_method\";s:10:\"ziparchive\";s:8:\"is_merge\";b:1;}s:4:\"data\";a:3:{s:5:\"doing\";s:6:\"backup\";s:6:\"backup\";a:3:{s:5:\"doing\";s:13:\"backup_plugin\";s:8:\"progress\";i:28;s:7:\"sub_job\";a:3:{s:9:\"backup_db\";a:2:{s:8:\"progress\";s:30:\"Backing up backup_db finished.\";s:8:\"job_data\";a:0:{}}s:13:\"backup_themes\";a:2:{s:8:\"progress\";s:34:\"Backing up backup_themes finished.\";s:8:\"job_data\";a:0:{}}s:13:\"backup_plugin\";a:2:{s:8:\"progress\";s:35:\"Maak een back-up van backup_plugin.\";s:8:\"job_data\";a:0:{}}}}s:6:\"upload\";a:5:{s:5:\"doing\";s:0:\"\";s:8:\"finished\";i:0;s:8:\"progress\";i:0;s:8:\"job_data\";a:0:{}s:7:\"sub_job\";a:0:{}}}s:4:\"jobs\";a:7:{i:0;a:8:{s:11:\"backup_type\";s:9:\"backup_db\";s:8:\"finished\";i:1;s:8:\"progress\";i:0;s:10:\"file_index\";i:1;s:16:\"mysql_file_index\";i:2;s:8:\"sub_jobs\";a:167:{s:21:\"wpj7_wfls_role_counts\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:21:\"wpj7_wfls_role_counts\";s:4:\"size\";i:0;s:4:\"rows\";s:1:\"0\";}s:22:\"wpj7_EWD_OTP_Customers\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:22:\"wpj7_EWD_OTP_Customers\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:24:\"wpj7_EWD_OTP_Fields_Meta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:24:\"wpj7_EWD_OTP_Fields_Meta\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:27:\"wpj7_EWD_OTP_Order_Statuses\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:27:\"wpj7_EWD_OTP_Order_Statuses\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:19:\"wpj7_EWD_OTP_Orders\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpj7_EWD_OTP_Orders\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:23:\"wpj7_EWD_OTP_Sales_Reps\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpj7_EWD_OTP_Sales_Reps\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:33:\"wpj7_cartflows_ca_email_templates\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:33:\"wpj7_cartflows_ca_email_templates\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"4\";}s:17:\"wpj7_mainwp_group\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:17:\"wpj7_mainwp_group\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:23:\"wpj7_mainwp_request_log\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpj7_mainwp_request_log\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:17:\"wpj7_mainwp_users\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:17:\"wpj7_mainwp_users\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:22:\"wpj7_mainwp_wp_actions\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:22:\"wpj7_mainwp_wp_actions\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:21:\"wpj7_mainwp_wp_backup\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:21:\"wpj7_mainwp_wp_backup\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:22:\"wpj7_mainwp_wp_clients\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:22:\"wpj7_mainwp_wp_clients\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:21:\"wpj7_mainwp_wp_status\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:21:\"wpj7_mainwp_wp_status\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:20:\"wpj7_mo_campaign_log\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:20:\"wpj7_mo_campaign_log\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:24:\"wpj7_mo_campaign_logmeta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:24:\"wpj7_mo_campaign_logmeta\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:19:\"wpj7_mo_conversions\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpj7_mo_conversions\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:26:\"wpj7_mo_email_campaignmeta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:26:\"wpj7_mo_email_campaignmeta\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:26:\"wpj7_mo_optin_campaignmeta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:26:\"wpj7_mo_optin_campaignmeta\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:25:\"wpj7_parcelpanel_location\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:25:\"wpj7_parcelpanel_location\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:15:\"wpj7_pmxe_posts\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:15:\"wpj7_pmxe_posts\";s:4:\"size\";i:16384;s:4:\"rows\";s:3:\"112\";}s:19:\"wpj7_pmxe_templates\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpj7_pmxe_templates\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:15:\"wpj7_pmxi_files\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:15:\"wpj7_pmxi_files\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"6\";}s:14:\"wpj7_pmxi_hash\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:14:\"wpj7_pmxi_hash\";s:4:\"size\";i:16384;s:4:\"rows\";s:2:\"28\";}s:17:\"wpj7_pmxi_history\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:17:\"wpj7_pmxi_history\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"3\";}s:16:\"wpj7_pmxi_images\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:16:\"wpj7_pmxi_images\";s:4:\"size\";i:16384;s:4:\"rows\";s:2:\"28\";}s:15:\"wpj7_pmxi_posts\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:15:\"wpj7_pmxi_posts\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:28:\"wpj7_rank_math_internal_meta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:28:\"wpj7_rank_math_internal_meta\";s:4:\"size\";i:16384;s:4:\"rows\";s:3:\"216\";}s:29:\"wpj7_s2w_error_product_images\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:29:\"wpj7_s2w_error_product_images\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:24:\"wpj7_sfa_abandoned_carts\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:24:\"wpj7_sfa_abandoned_carts\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:19:\"wpj7_vi_wbe_history\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpj7_vi_wbe_history\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:23:\"wpj7_wc_category_lookup\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpj7_wc_category_lookup\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"1\";}s:22:\"wpj7_wc_reserved_stock\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:22:\"wpj7_wc_reserved_stock\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:19:\"wpj7_wfblockediplog\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpj7_wfblockediplog\";s:4:\"size\";i:16384;s:4:\"rows\";s:2:\"51\";}s:15:\"wpj7_wfcrawlers\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:15:\"wpj7_wfcrawlers\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"2\";}s:18:\"wpj7_wffilechanges\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:18:\"wpj7_wffilechanges\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:11:\"wpj7_wflocs\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:11:\"wpj7_wflocs\";s:4:\"size\";i:16384;s:4:\"rows\";s:2:\"69\";}s:18:\"wpj7_wfls_settings\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:18:\"wpj7_wfls_settings\";s:4:\"size\";i:16384;s:4:\"rows\";s:2:\"30\";}s:19:\"wpj7_wfreversecache\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpj7_wfreversecache\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"3\";}s:21:\"wpj7_wfsecurityevents\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:21:\"wpj7_wfsecurityevents\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:19:\"wpj7_wftrafficrates\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpj7_wftrafficrates\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:18:\"wpj7_wfwaffailures\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:18:\"wpj7_wfwaffailures\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:38:\"wpj7_woocommerce_shipping_zone_methods\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:38:\"wpj7_woocommerce_shipping_zone_methods\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"4\";}s:31:\"wpj7_woocommerce_shipping_zones\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:31:\"wpj7_woocommerce_shipping_zones\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:11:\"wpj7_wpaicg\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:11:\"wpj7_wpaicg\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:20:\"wpj7_wpaicg_chatlogs\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:20:\"wpj7_wpaicg_chatlogs\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:22:\"wpj7_wpaicg_chattokens\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:22:\"wpj7_wpaicg_chattokens\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:25:\"wpj7_wpaicg_form_feedback\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:25:\"wpj7_wpaicg_form_feedback\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:21:\"wpj7_wpaicg_form_logs\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:21:\"wpj7_wpaicg_form_logs\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:22:\"wpj7_wpaicg_formtokens\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:22:\"wpj7_wpaicg_formtokens\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:22:\"wpj7_wpaicg_image_logs\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:22:\"wpj7_wpaicg_image_logs\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:23:\"wpj7_wpaicg_imagetokens\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpj7_wpaicg_imagetokens\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:27:\"wpj7_wpaicg_prompt_feedback\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:27:\"wpj7_wpaicg_prompt_feedback\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:27:\"wpj7_wpaicg_promptbase_logs\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:27:\"wpj7_wpaicg_promptbase_logs\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:24:\"wpj7_wpaicg_prompttokens\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:24:\"wpj7_wpaicg_prompttokens\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:27:\"wpj7_actionscheduler_claims\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:27:\"wpj7_actionscheduler_claims\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:27:\"wpj7_actionscheduler_groups\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:27:\"wpj7_actionscheduler_groups\";s:4:\"size\";i:32768;s:4:\"rows\";s:2:\"10\";}s:23:\"wpj7_adfoin_integration\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpj7_adfoin_integration\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:15:\"wpj7_adfoin_log\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:15:\"wpj7_adfoin_log\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:34:\"wpj7_cartflows_ca_cart_abandonment\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:34:\"wpj7_cartflows_ca_cart_abandonment\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:38:\"wpj7_cartflows_ca_email_templates_meta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:38:\"wpj7_cartflows_ca_email_templates_meta\";s:4:\"size\";i:32768;s:4:\"rows\";s:2:\"42\";}s:10:\"wpj7_links\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:10:\"wpj7_links\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:14:\"wpj7_mainwp_wp\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:14:\"wpj7_mainwp_wp\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:30:\"wpj7_mainwp_wp_backup_progress\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:30:\"wpj7_mainwp_wp_backup_progress\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:31:\"wpj7_mainwp_wp_clients_contacts\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:31:\"wpj7_mainwp_wp_clients_contacts\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:35:\"wpj7_mainwp_wp_clients_field_values\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:35:\"wpj7_mainwp_wp_clients_field_values\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:29:\"wpj7_mainwp_wp_clients_fields\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:29:\"wpj7_mainwp_wp_clients_fields\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:22:\"wpj7_mainwp_wp_options\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:22:\"wpj7_mainwp_wp_options\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:30:\"wpj7_mainwp_wp_settings_backup\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:30:\"wpj7_mainwp_wp_settings_backup\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:19:\"wpj7_mainwp_wp_sync\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpj7_mainwp_wp_sync\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:23:\"wpj7_mo_email_campaigns\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpj7_mo_email_campaigns\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:23:\"wpj7_term_relationships\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpj7_term_relationships\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"3\";}s:28:\"wpj7_trackship_shipment_meta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:28:\"wpj7_trackship_shipment_meta\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"2\";}s:24:\"wpj7_wc_gpf_render_cache\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:24:\"wpj7_wc_gpf_render_cache\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:33:\"wpj7_wc_product_attributes_lookup\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:33:\"wpj7_wc_product_attributes_lookup\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:36:\"wpj7_wc_product_download_directories\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:36:\"wpj7_wc_product_download_directories\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"2\";}s:19:\"wpj7_wc_rate_limits\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpj7_wc_rate_limits\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:24:\"wpj7_wc_tax_rate_classes\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:24:\"wpj7_wc_tax_rate_classes\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"2\";}s:16:\"wpj7_wc_webhooks\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:16:\"wpj7_wc_webhooks\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"5\";}s:13:\"wpj7_wfhoover\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:13:\"wpj7_wfhoover\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:23:\"wpj7_wflivetraffichuman\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpj7_wflivetraffichuman\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:21:\"wpj7_wfls_2fa_secrets\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:21:\"wpj7_wfls_2fa_secrets\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:37:\"wpj7_woocommerce_attribute_taxonomies\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:37:\"wpj7_woocommerce_attribute_taxonomies\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:20:\"wpj7_woocommerce_log\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:20:\"wpj7_woocommerce_log\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:28:\"wpj7_woocommerce_order_items\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:28:\"wpj7_woocommerce_order_items\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:31:\"wpj7_woocommerce_payment_tokens\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:31:\"wpj7_woocommerce_payment_tokens\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:25:\"wpj7_woocommerce_sessions\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:25:\"wpj7_woocommerce_sessions\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"2\";}s:22:\"wpj7_wpaicg_token_logs\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:22:\"wpj7_wpaicg_token_logs\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:14:\"wpj7_yith_wcwl\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:14:\"wpj7_yith_wcwl\";s:4:\"size\";i:32768;s:4:\"rows\";s:2:\"80\";}s:21:\"wpj7_yoast_migrations\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:21:\"wpj7_yoast_migrations\";s:4:\"size\";i:32768;s:4:\"rows\";s:2:\"24\";}s:31:\"wpj7_cartflows_ca_email_history\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:31:\"wpj7_cartflows_ca_email_history\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:16:\"wpj7_commentmeta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:16:\"wpj7_commentmeta\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:20:\"wpj7_mainwp_wp_group\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:20:\"wpj7_mainwp_wp_group\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:24:\"wpj7_mainwp_wp_logs_meta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:24:\"wpj7_mainwp_wp_logs_meta\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:23:\"wpj7_mo_optin_campaigns\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpj7_mo_optin_campaigns\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:23:\"wpj7_redirection_groups\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpj7_redirection_groups\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"2\";}s:13:\"wpj7_snippets\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:13:\"wpj7_snippets\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"4\";}s:17:\"wpj7_social_users\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:17:\"wpj7_social_users\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:18:\"wpj7_term_taxonomy\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:18:\"wpj7_term_taxonomy\";s:4:\"size\";i:49152;s:4:\"rows\";s:2:\"17\";}s:13:\"wpj7_termmeta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:13:\"wpj7_termmeta\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"4\";}s:10:\"wpj7_terms\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:10:\"wpj7_terms\";s:4:\"size\";i:49152;s:4:\"rows\";s:2:\"18\";}s:32:\"wpj7_trackship_shipping_provider\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:32:\"wpj7_trackship_shipping_provider\";s:4:\"size\";i:49152;s:4:\"rows\";s:3:\"490\";}s:13:\"wpj7_usermeta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:13:\"wpj7_usermeta\";s:4:\"size\";i:49152;s:4:\"rows\";s:3:\"106\";}s:23:\"wpj7_wc_customer_lookup\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpj7_wc_customer_lookup\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:20:\"wpj7_wc_download_log\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:20:\"wpj7_wc_download_log\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:27:\"wpj7_wc_order_coupon_lookup\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:27:\"wpj7_wc_order_coupon_lookup\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:30:\"wpj7_wc_order_operational_data\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:30:\"wpj7_wc_order_operational_data\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:24:\"wpj7_wc_order_tax_lookup\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:24:\"wpj7_wc_order_tax_lookup\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:19:\"wpj7_wc_orders_meta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpj7_wc_orders_meta\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:20:\"wpj7_wfnotifications\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:20:\"wpj7_wfnotifications\";s:4:\"size\";i:49152;s:4:\"rows\";s:3:\"117\";}s:25:\"wpj7_woocommerce_api_keys\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:25:\"wpj7_woocommerce_api_keys\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:31:\"wpj7_woocommerce_order_itemmeta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:31:\"wpj7_woocommerce_order_itemmeta\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:34:\"wpj7_woocommerce_payment_tokenmeta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:34:\"wpj7_woocommerce_payment_tokenmeta\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:40:\"wpj7_woocommerce_shipping_zone_locations\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:40:\"wpj7_woocommerce_shipping_zone_locations\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"4\";}s:35:\"wpj7_woocommerce_tax_rate_locations\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:35:\"wpj7_woocommerce_tax_rate_locations\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:19:\"wpj7_wpaicg_rsslogs\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpj7_wpaicg_rsslogs\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:20:\"wpj7_yith_wcwl_lists\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:20:\"wpj7_yith_wcwl_lists\";s:4:\"size\";i:49152;s:4:\"rows\";s:2:\"39\";}s:25:\"wpj7_parcelpanel_tracking\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:25:\"wpj7_parcelpanel_tracking\";s:4:\"size\";i:65536;s:4:\"rows\";s:1:\"0\";}s:31:\"wpj7_parcelpanel_tracking_items\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:31:\"wpj7_parcelpanel_tracking_items\";s:4:\"size\";i:65536;s:4:\"rows\";s:1:\"0\";}s:20:\"wpj7_redirection_404\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:20:\"wpj7_redirection_404\";s:4:\"size\";i:65536;s:4:\"rows\";s:1:\"0\";}s:21:\"wpj7_redirection_logs\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:21:\"wpj7_redirection_logs\";s:4:\"size\";i:65536;s:4:\"rows\";s:1:\"0\";}s:10:\"wpj7_users\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:10:\"wpj7_users\";s:4:\"size\";i:65536;s:4:\"rows\";s:1:\"1\";}s:19:\"wpj7_wc_order_stats\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpj7_wc_order_stats\";s:4:\"size\";i:65536;s:4:\"rows\";s:1:\"0\";}s:14:\"wpj7_wfblocks7\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:14:\"wpj7_wfblocks7\";s:4:\"size\";i:65536;s:4:\"rows\";s:1:\"1\";}s:16:\"wpj7_wfsnipcache\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:16:\"wpj7_wfsnipcache\";s:4:\"size\";i:65536;s:4:\"rows\";s:1:\"0\";}s:21:\"wpj7_wpr_rocket_cache\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:21:\"wpj7_wpr_rocket_cache\";s:4:\"size\";i:65536;s:4:\"rows\";s:2:\"11\";}s:29:\"wpj7_rank_math_internal_links\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:29:\"wpj7_rank_math_internal_links\";s:4:\"size\";i:81920;s:4:\"rows\";s:3:\"257\";}s:23:\"wpj7_wc_order_addresses\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpj7_wc_order_addresses\";s:4:\"size\";i:81920;s:4:\"rows\";s:1:\"0\";}s:28:\"wpj7_wc_order_product_lookup\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:28:\"wpj7_wc_order_product_lookup\";s:4:\"size\";i:81920;s:4:\"rows\";s:1:\"0\";}s:13:\"wpj7_wfissues\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:13:\"wpj7_wfissues\";s:4:\"size\";i:81920;s:4:\"rows\";s:1:\"1\";}s:20:\"wpj7_wfpendingissues\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:20:\"wpj7_wfpendingissues\";s:4:\"size\";i:81920;s:4:\"rows\";s:1:\"0\";}s:49:\"wpj7_woocommerce_downloadable_product_permissions\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:49:\"wpj7_woocommerce_downloadable_product_permissions\";s:4:\"size\";i:81920;s:4:\"rows\";s:1:\"0\";}s:26:\"wpj7_woocommerce_tax_rates\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:26:\"wpj7_woocommerce_tax_rates\";s:4:\"size\";i:81920;s:4:\"rows\";s:1:\"0\";}s:26:\"wpj7_wc_admin_note_actions\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:26:\"wpj7_wc_admin_note_actions\";s:4:\"size\";i:98304;s:4:\"rows\";s:3:\"188\";}s:19:\"wpj7_wc_admin_notes\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpj7_wc_admin_notes\";s:4:\"size\";i:98304;s:4:\"rows\";s:3:\"146\";}s:13:\"wpj7_wflogins\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:13:\"wpj7_wflogins\";s:4:\"size\";i:98304;s:4:\"rows\";s:3:\"200\";}s:23:\"wpj7_yoast_primary_term\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpj7_yoast_primary_term\";s:4:\"size\";i:98304;s:4:\"rows\";s:3:\"456\";}s:13:\"wpj7_comments\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:13:\"wpj7_comments\";s:4:\"size\";i:114688;s:4:\"rows\";s:1:\"0\";}s:17:\"wpj7_pmxi_imports\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:17:\"wpj7_pmxi_imports\";s:4:\"size\";i:114688;s:4:\"rows\";s:1:\"6\";}s:22:\"wpj7_redirection_items\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:22:\"wpj7_redirection_items\";s:4:\"size\";i:114688;s:4:\"rows\";s:1:\"0\";}s:27:\"wpj7_wc_product_meta_lookup\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:27:\"wpj7_wc_product_meta_lookup\";s:4:\"size\";i:114688;s:4:\"rows\";s:1:\"0\";}s:11:\"wpj7_wfhits\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:11:\"wpj7_wfhits\";s:4:\"size\";i:114688;s:4:\"rows\";s:2:\"79\";}s:23:\"wpj7_wpr_rucss_used_css\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpj7_wpr_rucss_used_css\";s:4:\"size\";i:114688;s:4:\"rows\";s:1:\"0\";}s:30:\"wpj7_yoast_indexable_hierarchy\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:30:\"wpj7_yoast_indexable_hierarchy\";s:4:\"size\";i:114688;s:4:\"rows\";s:3:\"626\";}s:15:\"wpj7_wpml_mails\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:15:\"wpj7_wpml_mails\";s:4:\"size\";i:131072;s:4:\"rows\";s:2:\"45\";}s:24:\"wpj7_zorem_email_sms_log\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:24:\"wpj7_zorem_email_sms_log\";s:4:\"size\";i:131072;s:4:\"rows\";s:1:\"0\";}s:19:\"wpj7_mainwp_wp_logs\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpj7_mainwp_wp_logs\";s:4:\"size\";i:147456;s:4:\"rows\";s:1:\"0\";}s:23:\"wpj7_trackship_shipment\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpj7_trackship_shipment\";s:4:\"size\";i:147456;s:4:\"rows\";s:1:\"0\";}s:14:\"wpj7_wc_orders\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:14:\"wpj7_wc_orders\";s:4:\"size\";i:147456;s:4:\"rows\";s:1:\"0\";}s:27:\"wpj7_woo_shippment_provider\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:27:\"wpj7_woo_shippment_provider\";s:4:\"size\";i:147456;s:4:\"rows\";s:3:\"817\";}s:19:\"wpj7_pmxi_templates\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpj7_pmxi_templates\";s:4:\"size\";i:180224;s:4:\"rows\";s:1:\"5\";}s:13:\"wpj7_wfstatus\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:13:\"wpj7_wfstatus\";s:4:\"size\";i:245760;s:4:\"rows\";s:3:\"951\";}s:20:\"wpj7_yoast_seo_links\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:20:\"wpj7_yoast_seo_links\";s:4:\"size\";i:278528;s:4:\"rows\";s:3:\"847\";}s:22:\"wpj7_mainwp_action_log\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:22:\"wpj7_mainwp_action_log\";s:4:\"size\";i:294912;s:4:\"rows\";s:1:\"5\";}s:24:\"wpj7_parcelpanel_courier\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:24:\"wpj7_parcelpanel_courier\";s:4:\"size\";i:327680;s:4:\"rows\";s:4:\"1187\";}s:21:\"wpj7_pmxe_google_cats\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:21:\"wpj7_pmxe_google_cats\";s:4:\"size\";i:409600;s:4:\"rows\";s:4:\"5512\";}s:25:\"wpj7_actionscheduler_logs\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:25:\"wpj7_actionscheduler_logs\";s:4:\"size\";i:1097728;s:4:\"rows\";s:3:\"239\";}s:13:\"wpj7_postmeta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:13:\"wpj7_postmeta\";s:4:\"size\";i:1114112;s:4:\"rows\";s:3:\"296\";}s:28:\"wpj7_actionscheduler_actions\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:28:\"wpj7_actionscheduler_actions\";s:4:\"size\";i:1179648;s:4:\"rows\";s:2:\"81\";}s:13:\"wpj7_wfconfig\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:13:\"wpj7_wfconfig\";s:4:\"size\";i:1507328;s:4:\"rows\";s:3:\"275\";}s:17:\"wpj7_pmxe_exports\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:17:\"wpj7_pmxe_exports\";s:4:\"size\";i:1589248;s:4:\"rows\";s:1:\"4\";}s:20:\"wpj7_yoast_indexable\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:20:\"wpj7_yoast_indexable\";s:4:\"size\";i:1835008;s:4:\"rows\";s:3:\"596\";}s:36:\"wpj7_woocommerce_gpf_google_taxonomy\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:36:\"wpj7_woocommerce_gpf_google_taxonomy\";s:4:\"size\";i:2260992;s:4:\"rows\";s:4:\"5688\";}s:12:\"wpj7_options\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:12:\"wpj7_options\";s:4:\"size\";i:6504448;s:4:\"rows\";s:4:\"1371\";}s:10:\"wpj7_posts\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:10:\"wpj7_posts\";s:4:\"size\";i:6864896;s:4:\"rows\";s:3:\"359\";}s:20:\"wpj7_wfknownfilelist\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:20:\"wpj7_wfknownfilelist\";s:4:\"size\";i:7880704;s:4:\"rows\";s:5:\"30849\";}s:15:\"wpj7_wffilemods\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:15:\"wpj7_wffilemods\";s:4:\"size\";i:16302080;s:4:\"rows\";s:5:\"27110\";}}s:16:\"mysql_dump_files\";a:1:{i:0;s:76:\"www.nl.ecom-expansion.com_wpvivid-65adbe43bc863_2024-01-22-02-00.part001.sql\";}s:8:\"zip_file\";a:1:{s:78:\"www.nl.ecom-expansion.com_wpvivid-65adbe43bc863_2024-01-22-02-00_backup_db.zip\";a:2:{s:8:\"filename\";s:78:\"www.nl.ecom-expansion.com_wpvivid-65adbe43bc863_2024-01-22-02-00_backup_db.zip\";s:8:\"finished\";i:1;}}}i:1;a:6:{s:11:\"backup_type\";s:13:\"backup_themes\";s:8:\"finished\";i:1;s:8:\"progress\";i:0;s:10:\"file_index\";i:1;s:5:\"index\";i:2000;s:8:\"zip_file\";a:1:{s:82:\"www.nl.ecom-expansion.com_wpvivid-65adbe43bc863_2024-01-22-02-00_backup_themes.zip\";a:2:{s:8:\"filename\";s:82:\"www.nl.ecom-expansion.com_wpvivid-65adbe43bc863_2024-01-22-02-00_backup_themes.zip\";s:8:\"finished\";i:1;}}}i:2;a:6:{s:11:\"backup_type\";s:13:\"backup_plugin\";s:8:\"finished\";i:0;s:8:\"progress\";i:0;s:10:\"file_index\";i:1;s:5:\"index\";i:17200;s:8:\"zip_file\";a:1:{s:90:\"www.nl.ecom-expansion.com_wpvivid-65adbe43bc863_2024-01-22-02-00_backup_plugin.part001.zip\";a:2:{s:8:\"filename\";s:90:\"www.nl.ecom-expansion.com_wpvivid-65adbe43bc863_2024-01-22-02-00_backup_plugin.part001.zip\";s:8:\"finished\";i:0;}}}i:3;a:5:{s:11:\"backup_type\";s:14:\"backup_uploads\";s:8:\"finished\";i:0;s:8:\"progress\";i:0;s:10:\"file_index\";i:1;s:5:\"index\";i:0;}i:4;a:5:{s:11:\"backup_type\";s:14:\"backup_content\";s:8:\"finished\";i:0;s:8:\"progress\";i:0;s:10:\"file_index\";i:1;s:5:\"index\";i:0;}i:5;a:5:{s:11:\"backup_type\";s:11:\"backup_core\";s:8:\"finished\";i:0;s:8:\"progress\";i:0;s:10:\"file_index\";i:1;s:5:\"index\";i:0;}i:6;a:6:{s:11:\"backup_type\";s:12:\"backup_merge\";s:8:\"finished\";i:0;s:8:\"progress\";i:0;s:10:\"file_index\";i:1;s:10:\"child_file\";a:0:{}s:5:\"index\";i:0;}}s:12:\"dump_setting\";a:14:{s:8:\"database\";s:14:\"cach0166_wp840\";s:4:\"host\";s:9:\"localhost\";s:4:\"user\";s:14:\"cach0166_wp840\";s:4:\"pass\";s:10:\"]SXQ-7pe45\";s:8:\"site_url\";s:33:\"https://www.nl.ecom-expansion.com\";s:8:\"home_url\";s:33:\"https://www.nl.ecom-expansion.com\";s:11:\"content_url\";s:44:\"https://www.nl.ecom-expansion.com/wp-content\";s:6:\"prefix\";s:5:\"wpj7_\";s:17:\"db_connect_method\";s:4:\"wpdb\";s:11:\"file_prefix\";s:64:\"www.nl.ecom-expansion.com_wpvivid-65adbe43bc863_2024-01-22-02-00\";s:4:\"path\";s:62:\"/home/cach0166/nl.ecom-expansion.com/wp-content/wpvividbackups\";s:13:\"max_file_size\";i:209715200;s:14:\"exclude-tables\";a:6:{i:0;s:16:\"wpj7_wpvivid_log\";i:1;s:30:\"wpj7_wpvivid_increment_big_ids\";i:2;s:20:\"wpj7_wpvivid_options\";i:3;s:24:\"wpj7_wpvivid_record_task\";i:4;s:21:\"wpj7_wpvivid_merge_db\";i:5;s:22:\"wpj7_wpvivid_merge_ids\";}s:14:\"include-tables\";a:0:{}}}}','no'),(290978,'mainwp_child_nonce','0','no'),(290979,'mainwp_premium_updates','a:0:{}','no'),(291045,'_transient_timeout_woocommerce_blocks_asset_api_script_data','1708276919','no');
INSERT INTO `wpj7_options` VALUES (291046,'_transient_woocommerce_blocks_asset_api_script_data','{\"script_data\":{\"assets\\/client\\/blocks\\/wc-settings.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-settings.js\",\"version\":\"07c2f0675ddd247d2325\",\"dependencies\":[\"wp-hooks\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks-middleware.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-middleware.js\",\"version\":\"ca04183222edaf8a26be\",\"dependencies\":[\"wp-api-fetch\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks-data.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-data.js\",\"version\":\"c96aba0171b12e03b8a6\",\"dependencies\":[\"wc-blocks-registry\",\"wc-settings\",\"wp-api-fetch\",\"wp-data\",\"wp-data-controls\",\"wp-deprecated\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-notices\",\"wp-polyfill\",\"wp-url\"]},\"assets\\/client\\/blocks\\/wc-blocks-vendors.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-vendors.js\",\"version\":\"0b6a0d8207806c01caa1\",\"dependencies\":[\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks-registry.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-registry.js\",\"version\":\"1c879273bd5c193cad0a\",\"dependencies\":[\"react\",\"wp-data\",\"wp-deprecated\",\"wp-element\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks.js\",\"version\":\"677b3101ccf9725b0789\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-dom-ready\",\"wp-element\",\"wp-hooks\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/wc-blocks-shared-context.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-shared-context.js\",\"version\":\"6eb6865831aa5a75475d\",\"dependencies\":[\"react\",\"wp-element\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks-shared-hocs.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-shared-hocs.js\",\"version\":\"5e01ba7861e4c09bce65\",\"dependencies\":[\"react\",\"wc-blocks-data-store\",\"wc-blocks-shared-context\",\"wp-data\",\"wp-element\",\"wp-is-shallow-equal\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/price-format.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/price-format.js\",\"version\":\"eb7a7398126f71912b09\",\"dependencies\":[\"wc-settings\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/blocks-checkout.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/blocks-checkout.js\",\"version\":\"9f469ef17beaf7c51576\",\"dependencies\":[\"lodash\",\"react\",\"react-dom\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-settings\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/blocks-components.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/blocks-components.js\",\"version\":\"b165bb2bd213326d7f31\",\"dependencies\":[\"lodash\",\"react\",\"react-dom\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/wc-interactivity-dropdown.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-interactivity-dropdown.js\",\"version\":\"1cea5e9e36e528d7493b\",\"dependencies\":[\"wc-interactivity\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-interactivity-checkbox-list.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-interactivity-checkbox-list.js\",\"version\":\"c1d99df3ef00991aa5e3\",\"dependencies\":[\"wc-interactivity\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/active-filters.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/active-filters.js\",\"version\":\"95a1b3f19b7fe4333a57\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"assets\\/client\\/blocks\\/active-filters-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/active-filters-frontend.js\",\"version\":\"70e84d296b0795687d51\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wp-data\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"assets\\/client\\/blocks\\/all-products.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/all-products.js\",\"version\":\"2749b82bd8ff0710a02b\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-escape-html\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/all-products-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/all-products-frontend.js\",\"version\":\"817507c468f28d7dc664\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/all-reviews.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/all-reviews.js\",\"version\":\"9f6883440908e5e52100\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-escape-html\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/reviews-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/reviews-frontend.js\",\"version\":\"329e37284479fc3ec518\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/attribute-filter.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/attribute-filter.js\",\"version\":\"0318ade40f521370e630\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/attribute-filter-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/attribute-filter-frontend.js\",\"version\":\"deb7825537a9a0def635\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/breadcrumbs.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/breadcrumbs.js\",\"version\":\"418c5059b135f1aa7830\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/catalog-sorting.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/catalog-sorting.js\",\"version\":\"8b529214dc52ced84c1a\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/legacy-template.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/legacy-template.js\",\"version\":\"7a28cf530204660de807\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-core-data\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-notices\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/classic-shortcode.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/classic-shortcode.js\",\"version\":\"76824181596fde792ec6\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-notices\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/customer-account.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/customer-account.js\",\"version\":\"29d7fa83f6c2f9a2ce01\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/featured-category.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/featured-category.js\",\"version\":\"148e4c038b098e102c5a\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\"]},\"assets\\/client\\/blocks\\/featured-product.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/featured-product.js\",\"version\":\"c1aba3f06758a23823df\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\"]},\"assets\\/client\\/blocks\\/filter-wrapper.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/filter-wrapper.js\",\"version\":\"6e0bde12b66fdc6a52d4\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/filter-wrapper-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/filter-wrapper-frontend.js\",\"version\":\"1343caca35a219ba93be\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/handpicked-products.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/handpicked-products.js\",\"version\":\"f26a537f9581cb15be17\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"assets\\/client\\/blocks\\/mini-cart.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart.js\",\"version\":\"b9d45061c08714f5ce20\",\"dependencies\":[\"react\",\"wc-price-format\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-data\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/mini-cart-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-frontend.js\",\"version\":\"7f4b55b97a7cb539b252\",\"dependencies\":[\"wc-price-format\",\"wc-settings\",\"wp-api-fetch\",\"wp-i18n\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/store-notices.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/store-notices.js\",\"version\":\"05d34da6f782826693d8\",\"dependencies\":[\"lodash\",\"react\",\"wp-a11y\",\"wp-block-editor\",\"wp-blocks\",\"wp-compose\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/price-filter.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/price-filter.js\",\"version\":\"1acccd58ca149d97a900\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"assets\\/client\\/blocks\\/price-filter-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/price-filter-frontend.js\",\"version\":\"9737cbab23b19364820a\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-url\"]},\"assets\\/client\\/blocks\\/product-add-to-cart.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-add-to-cart.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/product-add-to-cart-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-add-to-cart-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/product-best-sellers.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-best-sellers.js\",\"version\":\"b63bce746658e0b84e06\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"assets\\/client\\/blocks\\/product-button.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-button.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/product-button-interactivity-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-button-interactivity-frontend.js\",\"version\":\"afe142c2b881b96719e3\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-data-store\",\"wc-interactivity\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/product-categories.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-categories.js\",\"version\":\"832123a81b454988a134\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\"]},\"assets\\/client\\/blocks\\/product-category.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-category.js\",\"version\":\"839c90df96d3182fd44f\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"assets\\/client\\/blocks\\/product-collection.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-collection.js\",\"version\":\"bcadee0c5276b5702d5f\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-core-data\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"assets\\/client\\/blocks\\/product-collection-no-results.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-collection-no-results.js\",\"version\":\"3310bc6ce1501b94381d\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/product-new.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-new.js\",\"version\":\"21903dd7b7340a5bbd65\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"assets\\/client\\/blocks\\/product-on-sale.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-on-sale.js\",\"version\":\"bd498aa4d0e917c49ced\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"assets\\/client\\/blocks\\/product-template.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-template.js\",\"version\":\"ebc6e378a32a6481e06c\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-core-data\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/product-query.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-query.js\",\"version\":\"202aa5d3b35c4be8c140\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"assets\\/client\\/blocks\\/product-query-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-query-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/product-results-count.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-results-count.js\",\"version\":\"a651c6e11bed0abf0a6e\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/product-search.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-search.js\",\"version\":\"904865bb60432f0703aa\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/product-summary.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-summary.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/product-tag.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-tag.js\",\"version\":\"3eb8588c8ebc599f84ba\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"assets\\/client\\/blocks\\/product-title.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-title.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/product-title-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-title-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/product-top-rated.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-top-rated.js\",\"version\":\"21f88fabd15e241a44bf\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"assets\\/client\\/blocks\\/products-by-attribute.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/products-by-attribute.js\",\"version\":\"e3b1e887efef84839d9e\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"assets\\/client\\/blocks\\/rating-filter.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/rating-filter.js\",\"version\":\"094dd57e09c4e444ac49\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/reviews-by-category.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/reviews-by-category.js\",\"version\":\"1f83bd36afb2334f1e26\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"assets\\/client\\/blocks\\/reviews-by-product.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/reviews-by-product.js\",\"version\":\"4d2f490293bf2193b18c\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"assets\\/client\\/blocks\\/single-product.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/single-product.js\",\"version\":\"0a4baf55884c120a7af9\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wc-store-data\",\"wp-api-fetch\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-escape-html\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/stock-filter.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/stock-filter.js\",\"version\":\"1a0b810e62e59a05b3e9\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/stock-filter-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/stock-filter-frontend.js\",\"version\":\"91648cab5b0244ffedf0\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/page-content-wrapper.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/page-content-wrapper.js\",\"version\":\"f35e44dbb78e412a7ad8\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-status.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-status.js\",\"version\":\"9259ba035fec1019a3c4\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-summary.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-summary.js\",\"version\":\"42d4d02662ee78e67430\",\"dependencies\":[\"react\",\"wc-price-format\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-date\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-totals.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-totals.js\",\"version\":\"058cf0fedd7d960dc6c3\",\"dependencies\":[\"react\",\"wc-price-format\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-totals-wrapper.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-totals-wrapper.js\",\"version\":\"129cdd90c94398a18c88\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-downloads.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-downloads.js\",\"version\":\"9b8381e57115e792aacd\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-downloads-wrapper.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-downloads-wrapper.js\",\"version\":\"44ee817b8cd877854069\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-billing-address.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-billing-address.js\",\"version\":\"b3df4293ff6f2fc1e5aa\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-shipping-address.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-shipping-address.js\",\"version\":\"cbe3b727556f17cccbeb\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-billing-wrapper.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-billing-wrapper.js\",\"version\":\"1340068d7a04db3610f6\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-shipping-wrapper.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-shipping-wrapper.js\",\"version\":\"0f2a58a6d1253ce3c18d\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-additional-information.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-additional-information.js\",\"version\":\"9ff9792a5b25249e7107\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/cart.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart.js\",\"version\":\"acefa58be16d3beca24c\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-core-data\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-editor\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-notices\",\"wp-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/cart-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-frontend.js\",\"version\":\"77a2ac425fb136be0522\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-blocks\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-express-payment-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-express-payment-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-coupon-form-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-coupon-form-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/empty-cart-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/empty-cart-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-line-items-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-line-items-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-order-summary-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-order-summary-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-items-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-items-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-fee-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-fee-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-heading-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-heading-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-accepted-payment-methods-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-accepted-payment-methods-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-subtotal-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-subtotal-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-taxes-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-taxes-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-heading-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-heading-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-fee-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-fee-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-express-payment-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-express-payment-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-order-summary-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-order-summary-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-totals-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-totals-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-line-items-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-line-items-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-coupon-form-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-coupon-form-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-products-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-products-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-totals-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-totals-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/empty-cart-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/empty-cart-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/proceed-to-checkout-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/proceed-to-checkout-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/proceed-to-checkout-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/proceed-to-checkout-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-items-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-items-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-discount-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-discount-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/filled-cart-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/filled-cart-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-shipping-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-shipping-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-products-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-products-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-discount-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-discount-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-accepted-payment-methods-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-accepted-payment-methods-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-subtotal-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-subtotal-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/filled-cart-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/filled-cart-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-taxes-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-taxes-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-shipping-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-shipping-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-taxes-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-taxes-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-subtotal-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-subtotal-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/filled-cart-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/filled-cart-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/empty-cart-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/empty-cart-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-totals-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-totals-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-items-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-items-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-line-items-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-line-items-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-express-payment-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-express-payment-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/proceed-to-checkout-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/proceed-to-checkout-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-accepted-payment-methods-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-accepted-payment-methods-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-coupon-form-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-coupon-form-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-discount-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-discount-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-fee-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-fee-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-heading-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-heading-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-shipping-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-shipping-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-cross-sells-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-cross-sells-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-cross-sells-products-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-cross-sells-products-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout.js\",\"version\":\"9c453d40445d6b160616\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-core-data\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-editor\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-notices\",\"wp-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/checkout-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-frontend.js\",\"version\":\"e2d912fa982858c6ccaa\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/checkout-blocks\\/shipping-address-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/shipping-address-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/totals-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/totals-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/payment-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/payment-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/shipping-methods-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/shipping-methods-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-coupon-form-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-coupon-form-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/express-payment-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/express-payment-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/fields-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/fields-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/shipping-methods-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/shipping-methods-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-fee-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-fee-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/terms-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/terms-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/pickup-options-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/pickup-options-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-cart-items-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-cart-items-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-subtotal-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-subtotal-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/payment-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/payment-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-taxes-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-taxes-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-fee-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-fee-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/pickup-options-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/pickup-options-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/shipping-address-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/shipping-address-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-coupon-form-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-coupon-form-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/shipping-method-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/shipping-method-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/totals-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/totals-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/terms-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/terms-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/contact-information-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/contact-information-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/billing-address-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/billing-address-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/shipping-method-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/shipping-method-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-discount-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-discount-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-cart-items-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-cart-items-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/fields-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/fields-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-shipping-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-shipping-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/billing-address-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/billing-address-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-note-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-note-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-discount-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-discount-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/contact-information-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/contact-information-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-subtotal-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-subtotal-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-taxes-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-taxes-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/actions-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/actions-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/actions-style.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/actions-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-shipping-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-shipping-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-express-payment--checkout-blocks\\/express-payment-frontend.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-express-payment--checkout-blocks\\/express-payment-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-actions-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-actions-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-billing-address-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-billing-address-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-contact-information-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-contact-information-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-express-payment-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-express-payment-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-fields-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-fields-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-note-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-note-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-cart-items-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-cart-items-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-coupon-form-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-coupon-form-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-discount-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-discount-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-fee-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-fee-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-shipping-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-shipping-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-subtotal-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-subtotal-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-taxes-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-taxes-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-payment-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-payment-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-shipping-address-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-shipping-address-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-shipping-methods-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-shipping-methods-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-shipping-method-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-shipping-method-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-pickup-options-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-pickup-options-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-terms-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-terms-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-totals-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-totals-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents.js\",\"version\":\"98918e12a7aa368a9390\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/empty-mini-cart-contents-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/empty-mini-cart-contents-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/filled-mini-cart-contents-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/filled-mini-cart-contents-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-footer-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-footer-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-items-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-items-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-products-table-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-products-table-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-shopping-button-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-shopping-button-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-cart-button-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-cart-button-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-checkout-button-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-checkout-button-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-title-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-title-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-title-items-counter-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-title-items-counter-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-title-label-block.js\":{\"src\":\"http:\\/\\/www.nl.ecom-expansion.com\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-title-label-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]}},\"version\":\"11.8.0-dev\",\"hash\":\"3e560b6be3df12197e8c3175b71c1c20\"}','no'),(291080,'mainwp_cache_control_log','{\"status\":\"Disabled\",\"action\":\"SUCCESS\"}','yes'),(291145,'mainwp_child_clone_sites','0','no'),(291146,'mainwp_child_siteid','4','no'),(291147,'mainwp_child_actions_saved_number_of_days','30','no'),(291152,'mainwp_child_auto_purge_cache','0','yes'),(291153,'mainwp_child_cloud_flair_enabled','0','yes'),(291154,'mainwp_child_pingnonce','6eb8efbbe0','no'),(291253,'wpvivid_init','init','no'),(291254,'wpvivid_schedule_setting','a:1:{s:6:\"enable\";b:0;}','no'),(291255,'wpvivid_compress_setting','a:7:{s:13:\"compress_type\";s:3:\"zip\";s:13:\"max_file_size\";i:200;s:11:\"no_compress\";b:1;s:13:\"use_temp_file\";i:1;s:13:\"use_temp_size\";i:16;s:17:\"exclude_file_size\";i:0;s:24:\"subpackage_plugin_upload\";b:0;}','no'),(291256,'wpvivid_local_setting','a:2:{s:4:\"path\";s:14:\"wpvividbackups\";s:10:\"save_local\";i:1;}','no'),(291257,'wpvivid_upload_setting','a:1:{s:15:\"remote_selected\";a:0:{}}','no'),(291258,'wpvivid_common_setting','a:10:{s:18:\"max_execution_time\";i:300;s:16:\"max_backup_count\";i:3;s:14:\"show_admin_bar\";b:1;s:14:\"domain_include\";b:1;s:15:\"estimate_backup\";b:1;s:16:\"max_resume_count\";i:6;s:12:\"memory_limit\";s:4:\"256M\";s:20:\"restore_memory_limit\";s:4:\"512M\";s:12:\"migrate_size\";s:4:\"2048\";s:17:\"log_save_location\";s:26:\"wpvividbackups/wpvivid_log\";}','no'),(291259,'wpvivid_email_setting','a:3:{s:7:\"send_to\";a:0:{}s:6:\"always\";b:1;s:12:\"email_enable\";b:0;}','no'),(291260,'wpvivid_saved_api_token','a:0:{}','no'),(291262,'wpvivid_last_msg','a:8:{s:2:\"id\";s:21:\"wpvivid-659b29f0c405c\";s:4:\"type\";s:6:\"Manual\";s:7:\"options\";a:22:{s:7:\"ismerge\";s:1:\"1\";s:4:\"lock\";s:1:\"0\";s:12:\"backup_files\";s:8:\"files+db\";s:5:\"local\";s:1:\"1\";s:6:\"remote\";s:1:\"0\";s:4:\"type\";s:6:\"Manual\";s:13:\"backup_prefix\";s:25:\"www.nl.ecom-expansion.com\";s:11:\"file_prefix\";s:64:\"www.nl.ecom-expansion.com_wpvivid-659b29f0c405c_2024-01-07-23-47\";s:13:\"log_file_name\";s:28:\"wpvivid-659b29f0c405c_backup\";s:13:\"log_file_path\";s:111:\"/home/cach0166/nl.ecom-expansion.com/wp-content/wpvividbackups/wpvivid_log/wpvivid-659b29f0c405c_backup_log.txt\";s:6:\"prefix\";s:64:\"www.nl.ecom-expansion.com_wpvivid-659b29f0c405c_2024-01-07-23-47\";s:3:\"dir\";s:62:\"/home/cach0166/nl.ecom-expansion.com/wp-content/wpvividbackups\";s:10:\"backup_dir\";s:14:\"wpvividbackups\";s:14:\"exclude-tables\";a:6:{i:0;s:16:\"wpj7_wpvivid_log\";i:1;s:30:\"wpj7_wpvivid_increment_big_ids\";i:2;s:20:\"wpj7_wpvivid_options\";i:3;s:24:\"wpj7_wpvivid_record_task\";i:4;s:21:\"wpj7_wpvivid_merge_db\";i:5;s:22:\"wpj7_wpvivid_merge_ids\";}s:14:\"include-tables\";a:0:{}s:13:\"exclude_files\";a:12:{i:0;s:91:\"#^\\/home\\/cach0166\\/nl\\.ecom\\-expansion\\.com\\/wp\\-content\\/plugins\\/wpvivid\\-backuprestore#\";i:1;s:79:\"#^\\/home\\/cach0166\\/nl\\.ecom\\-expansion\\.com\\/wp\\-content\\/plugins\\/wp\\-cerber#\";i:2;s:71:\"#^\\/home\\/cach0166\\/nl\\.ecom\\-expansion\\.com\\/wp\\-content\\/plugins\\/\\.#\";i:3;s:89:\"#^\\/home\\/cach0166\\/nl\\.ecom\\-expansion\\.com\\/wp\\-content\\/plugins\\/wpvivid\\-backup\\-pro#\";i:4;s:85:\"#^\\/home\\/cach0166\\/nl\\.ecom\\-expansion\\.com\\/wp\\-content\\/plugins\\/wpvividdashboard#\";i:5;s:67:\"#^\\/home\\/cach0166\\/nl\\.ecom\\-expansion\\.com\\/wp\\-content\\/upgrade#\";i:6;s:65:\"#^\\/home\\/cach0166\\/nl\\.ecom\\-expansion\\.com\\/wp\\-content\\/cache#\";i:7;s:65:\"#^\\/home\\/cach0166\\/nl\\.ecom\\-expansion\\.com\\/wp\\-content\\/cache#\";i:8;s:75:\"#^\\/home\\/cach0166\\/nl\\.ecom\\-expansion\\.com\\/wp\\-content\\/wpvivid_uploads#\";i:9;s:67:\"#^\\/home\\/cach0166\\/nl\\.ecom\\-expansion\\.com\\/wp\\-content\\/wpvivid#\";i:10;s:74:\"#^\\/home\\/cach0166\\/nl\\.ecom\\-expansion\\.com\\/wp\\-content\\/wpvividbackups#\";i:11;s:84:\"#^\\/home\\/cach0166\\/nl\\.ecom\\-expansion\\.com\\/wp\\-content\\/wpvivid_uploads\\/Isolate#\";}s:13:\"include_files\";a:2:{i:0;s:56:\"#^\\/home\\/cach0166\\/nl\\.ecom\\-expansion\\.com\\/wp\\-admin#\";i:1;s:59:\"#^\\/home\\/cach0166\\/nl\\.ecom\\-expansion\\.com\\/wp\\-includes#\";}s:15:\"include_plugins\";a:0:{}s:14:\"include_themes\";a:0:{}s:10:\"save_local\";i:1;s:14:\"backup_options\";a:1:{s:8:\"compress\";a:1:{s:13:\"compress_type\";s:3:\"zip\";}}s:14:\"remote_options\";b:0;}s:6:\"status\";a:7:{s:15:\"task_start_time\";i:1704667632;s:13:\"task_end_time\";i:1704668211;s:10:\"start_time\";i:1704668155;s:8:\"run_time\";i:1704668211;s:7:\"timeout\";i:1704668155;s:3:\"str\";s:7:\"running\";s:12:\"resume_count\";i:0;}s:7:\"setting\";a:11:{s:17:\"db_connect_method\";s:4:\"wpdb\";s:12:\"memory_limit\";s:4:\"256M\";s:18:\"max_execution_time\";i:300;s:23:\"compress_file_use_cache\";b:0;s:19:\"compress_file_count\";i:500;s:13:\"max_file_size\";i:200;s:17:\"max_sql_file_size\";i:200;s:17:\"exclude_file_size\";i:0;s:16:\"max_resume_count\";i:6;s:10:\"zip_method\";s:10:\"ziparchive\";s:8:\"is_merge\";b:1;}s:4:\"data\";a:3:{s:5:\"doing\";s:6:\"backup\";s:6:\"backup\";a:3:{s:5:\"doing\";s:12:\"backup_merge\";s:8:\"progress\";i:100;s:7:\"sub_job\";a:7:{s:9:\"backup_db\";a:2:{s:8:\"progress\";s:30:\"Backing up backup_db finished.\";s:8:\"job_data\";a:0:{}}s:13:\"backup_themes\";a:2:{s:8:\"progress\";s:34:\"Backing up backup_themes finished.\";s:8:\"job_data\";a:0:{}}s:13:\"backup_plugin\";a:2:{s:8:\"progress\";s:34:\"Back-up backup_plugin is afgerond.\";s:8:\"job_data\";a:0:{}}s:14:\"backup_uploads\";a:2:{s:8:\"progress\";s:35:\"Back-up backup_uploads is afgerond.\";s:8:\"job_data\";a:0:{}}s:14:\"backup_content\";a:2:{s:8:\"progress\";s:35:\"Back-up backup_content is afgerond.\";s:8:\"job_data\";a:0:{}}s:11:\"backup_core\";a:2:{s:8:\"progress\";s:32:\"Back-up backup_core is afgerond.\";s:8:\"job_data\";a:0:{}}s:12:\"backup_merge\";a:2:{s:8:\"progress\";s:33:\"Back-up backup_merge is afgerond.\";s:8:\"job_data\";a:0:{}}}}s:6:\"upload\";a:5:{s:5:\"doing\";s:0:\"\";s:8:\"finished\";i:0;s:8:\"progress\";i:0;s:8:\"job_data\";a:0:{}s:7:\"sub_job\";a:0:{}}}s:4:\"jobs\";a:7:{i:0;a:8:{s:11:\"backup_type\";s:9:\"backup_db\";s:8:\"finished\";i:1;s:8:\"progress\";i:0;s:10:\"file_index\";i:1;s:16:\"mysql_file_index\";i:2;s:8:\"sub_jobs\";a:167:{s:21:\"wpj7_wfls_role_counts\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:21:\"wpj7_wfls_role_counts\";s:4:\"size\";i:0;s:4:\"rows\";s:1:\"0\";}s:22:\"wpj7_EWD_OTP_Customers\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:22:\"wpj7_EWD_OTP_Customers\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:24:\"wpj7_EWD_OTP_Fields_Meta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:24:\"wpj7_EWD_OTP_Fields_Meta\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:27:\"wpj7_EWD_OTP_Order_Statuses\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:27:\"wpj7_EWD_OTP_Order_Statuses\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:19:\"wpj7_EWD_OTP_Orders\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpj7_EWD_OTP_Orders\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:23:\"wpj7_EWD_OTP_Sales_Reps\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpj7_EWD_OTP_Sales_Reps\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:33:\"wpj7_cartflows_ca_email_templates\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:33:\"wpj7_cartflows_ca_email_templates\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"4\";}s:17:\"wpj7_mainwp_group\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:17:\"wpj7_mainwp_group\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:23:\"wpj7_mainwp_request_log\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpj7_mainwp_request_log\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:17:\"wpj7_mainwp_users\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:17:\"wpj7_mainwp_users\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:22:\"wpj7_mainwp_wp_actions\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:22:\"wpj7_mainwp_wp_actions\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:21:\"wpj7_mainwp_wp_backup\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:21:\"wpj7_mainwp_wp_backup\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:22:\"wpj7_mainwp_wp_clients\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:22:\"wpj7_mainwp_wp_clients\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:21:\"wpj7_mainwp_wp_status\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:21:\"wpj7_mainwp_wp_status\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:20:\"wpj7_mo_campaign_log\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:20:\"wpj7_mo_campaign_log\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:24:\"wpj7_mo_campaign_logmeta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:24:\"wpj7_mo_campaign_logmeta\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:19:\"wpj7_mo_conversions\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpj7_mo_conversions\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:26:\"wpj7_mo_email_campaignmeta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:26:\"wpj7_mo_email_campaignmeta\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:26:\"wpj7_mo_optin_campaignmeta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:26:\"wpj7_mo_optin_campaignmeta\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:25:\"wpj7_parcelpanel_location\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:25:\"wpj7_parcelpanel_location\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:15:\"wpj7_pmxe_posts\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:15:\"wpj7_pmxe_posts\";s:4:\"size\";i:16384;s:4:\"rows\";s:3:\"112\";}s:19:\"wpj7_pmxe_templates\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpj7_pmxe_templates\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:15:\"wpj7_pmxi_files\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:15:\"wpj7_pmxi_files\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"6\";}s:14:\"wpj7_pmxi_hash\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:14:\"wpj7_pmxi_hash\";s:4:\"size\";i:16384;s:4:\"rows\";s:2:\"28\";}s:17:\"wpj7_pmxi_history\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:17:\"wpj7_pmxi_history\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"3\";}s:16:\"wpj7_pmxi_images\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:16:\"wpj7_pmxi_images\";s:4:\"size\";i:16384;s:4:\"rows\";s:2:\"28\";}s:15:\"wpj7_pmxi_posts\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:15:\"wpj7_pmxi_posts\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:28:\"wpj7_rank_math_internal_meta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:28:\"wpj7_rank_math_internal_meta\";s:4:\"size\";i:16384;s:4:\"rows\";s:3:\"216\";}s:29:\"wpj7_s2w_error_product_images\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:29:\"wpj7_s2w_error_product_images\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:24:\"wpj7_sfa_abandoned_carts\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:24:\"wpj7_sfa_abandoned_carts\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:19:\"wpj7_vi_wbe_history\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpj7_vi_wbe_history\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:23:\"wpj7_wc_category_lookup\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpj7_wc_category_lookup\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:22:\"wpj7_wc_reserved_stock\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:22:\"wpj7_wc_reserved_stock\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:19:\"wpj7_wfblockediplog\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpj7_wfblockediplog\";s:4:\"size\";i:16384;s:4:\"rows\";s:2:\"48\";}s:15:\"wpj7_wfcrawlers\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:15:\"wpj7_wfcrawlers\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"4\";}s:18:\"wpj7_wffilechanges\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:18:\"wpj7_wffilechanges\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:11:\"wpj7_wflocs\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:11:\"wpj7_wflocs\";s:4:\"size\";i:16384;s:4:\"rows\";s:2:\"68\";}s:18:\"wpj7_wfls_settings\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:18:\"wpj7_wfls_settings\";s:4:\"size\";i:16384;s:4:\"rows\";s:2:\"30\";}s:19:\"wpj7_wfreversecache\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpj7_wfreversecache\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"1\";}s:21:\"wpj7_wfsecurityevents\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:21:\"wpj7_wfsecurityevents\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:19:\"wpj7_wftrafficrates\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpj7_wftrafficrates\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:18:\"wpj7_wfwaffailures\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:18:\"wpj7_wfwaffailures\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:38:\"wpj7_woocommerce_shipping_zone_methods\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:38:\"wpj7_woocommerce_shipping_zone_methods\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"4\";}s:31:\"wpj7_woocommerce_shipping_zones\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:31:\"wpj7_woocommerce_shipping_zones\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:11:\"wpj7_wpaicg\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:11:\"wpj7_wpaicg\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:20:\"wpj7_wpaicg_chatlogs\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:20:\"wpj7_wpaicg_chatlogs\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:22:\"wpj7_wpaicg_chattokens\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:22:\"wpj7_wpaicg_chattokens\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:25:\"wpj7_wpaicg_form_feedback\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:25:\"wpj7_wpaicg_form_feedback\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:21:\"wpj7_wpaicg_form_logs\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:21:\"wpj7_wpaicg_form_logs\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:22:\"wpj7_wpaicg_formtokens\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:22:\"wpj7_wpaicg_formtokens\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:22:\"wpj7_wpaicg_image_logs\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:22:\"wpj7_wpaicg_image_logs\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:23:\"wpj7_wpaicg_imagetokens\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpj7_wpaicg_imagetokens\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:27:\"wpj7_wpaicg_prompt_feedback\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:27:\"wpj7_wpaicg_prompt_feedback\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:27:\"wpj7_wpaicg_promptbase_logs\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:27:\"wpj7_wpaicg_promptbase_logs\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:24:\"wpj7_wpaicg_prompttokens\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:24:\"wpj7_wpaicg_prompttokens\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}s:27:\"wpj7_actionscheduler_claims\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:27:\"wpj7_actionscheduler_claims\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:27:\"wpj7_actionscheduler_groups\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:27:\"wpj7_actionscheduler_groups\";s:4:\"size\";i:32768;s:4:\"rows\";s:2:\"10\";}s:23:\"wpj7_adfoin_integration\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpj7_adfoin_integration\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:15:\"wpj7_adfoin_log\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:15:\"wpj7_adfoin_log\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:34:\"wpj7_cartflows_ca_cart_abandonment\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:34:\"wpj7_cartflows_ca_cart_abandonment\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:38:\"wpj7_cartflows_ca_email_templates_meta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:38:\"wpj7_cartflows_ca_email_templates_meta\";s:4:\"size\";i:32768;s:4:\"rows\";s:2:\"42\";}s:10:\"wpj7_links\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:10:\"wpj7_links\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:14:\"wpj7_mainwp_wp\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:14:\"wpj7_mainwp_wp\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:30:\"wpj7_mainwp_wp_backup_progress\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:30:\"wpj7_mainwp_wp_backup_progress\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:31:\"wpj7_mainwp_wp_clients_contacts\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:31:\"wpj7_mainwp_wp_clients_contacts\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:35:\"wpj7_mainwp_wp_clients_field_values\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:35:\"wpj7_mainwp_wp_clients_field_values\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:29:\"wpj7_mainwp_wp_clients_fields\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:29:\"wpj7_mainwp_wp_clients_fields\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:22:\"wpj7_mainwp_wp_options\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:22:\"wpj7_mainwp_wp_options\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:30:\"wpj7_mainwp_wp_settings_backup\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:30:\"wpj7_mainwp_wp_settings_backup\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:19:\"wpj7_mainwp_wp_sync\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpj7_mainwp_wp_sync\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:23:\"wpj7_mo_email_campaigns\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpj7_mo_email_campaigns\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:23:\"wpj7_term_relationships\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpj7_term_relationships\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"3\";}s:28:\"wpj7_trackship_shipment_meta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:28:\"wpj7_trackship_shipment_meta\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"2\";}s:24:\"wpj7_wc_gpf_render_cache\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:24:\"wpj7_wc_gpf_render_cache\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:33:\"wpj7_wc_product_attributes_lookup\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:33:\"wpj7_wc_product_attributes_lookup\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:36:\"wpj7_wc_product_download_directories\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:36:\"wpj7_wc_product_download_directories\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"2\";}s:19:\"wpj7_wc_rate_limits\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpj7_wc_rate_limits\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:24:\"wpj7_wc_tax_rate_classes\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:24:\"wpj7_wc_tax_rate_classes\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"2\";}s:16:\"wpj7_wc_webhooks\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:16:\"wpj7_wc_webhooks\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"5\";}s:13:\"wpj7_wfhoover\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:13:\"wpj7_wfhoover\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:23:\"wpj7_wflivetraffichuman\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpj7_wflivetraffichuman\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:21:\"wpj7_wfls_2fa_secrets\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:21:\"wpj7_wfls_2fa_secrets\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:37:\"wpj7_woocommerce_attribute_taxonomies\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:37:\"wpj7_woocommerce_attribute_taxonomies\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:20:\"wpj7_woocommerce_log\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:20:\"wpj7_woocommerce_log\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:28:\"wpj7_woocommerce_order_items\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:28:\"wpj7_woocommerce_order_items\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:31:\"wpj7_woocommerce_payment_tokens\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:31:\"wpj7_woocommerce_payment_tokens\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:25:\"wpj7_woocommerce_sessions\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:25:\"wpj7_woocommerce_sessions\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"9\";}s:22:\"wpj7_wpaicg_token_logs\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:22:\"wpj7_wpaicg_token_logs\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}s:14:\"wpj7_yith_wcwl\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:14:\"wpj7_yith_wcwl\";s:4:\"size\";i:32768;s:4:\"rows\";s:2:\"80\";}s:21:\"wpj7_yoast_migrations\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:21:\"wpj7_yoast_migrations\";s:4:\"size\";i:32768;s:4:\"rows\";s:2:\"24\";}s:31:\"wpj7_cartflows_ca_email_history\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:31:\"wpj7_cartflows_ca_email_history\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:16:\"wpj7_commentmeta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:16:\"wpj7_commentmeta\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:20:\"wpj7_mainwp_wp_group\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:20:\"wpj7_mainwp_wp_group\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:24:\"wpj7_mainwp_wp_logs_meta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:24:\"wpj7_mainwp_wp_logs_meta\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:23:\"wpj7_mo_optin_campaigns\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpj7_mo_optin_campaigns\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:23:\"wpj7_redirection_groups\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpj7_redirection_groups\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"2\";}s:13:\"wpj7_snippets\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:13:\"wpj7_snippets\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"3\";}s:17:\"wpj7_social_users\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:17:\"wpj7_social_users\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:18:\"wpj7_term_taxonomy\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:18:\"wpj7_term_taxonomy\";s:4:\"size\";i:49152;s:4:\"rows\";s:2:\"17\";}s:13:\"wpj7_termmeta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:13:\"wpj7_termmeta\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"4\";}s:10:\"wpj7_terms\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:10:\"wpj7_terms\";s:4:\"size\";i:49152;s:4:\"rows\";s:2:\"18\";}s:32:\"wpj7_trackship_shipping_provider\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:32:\"wpj7_trackship_shipping_provider\";s:4:\"size\";i:49152;s:4:\"rows\";s:3:\"490\";}s:13:\"wpj7_usermeta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:13:\"wpj7_usermeta\";s:4:\"size\";i:49152;s:4:\"rows\";s:3:\"104\";}s:23:\"wpj7_wc_customer_lookup\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpj7_wc_customer_lookup\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:20:\"wpj7_wc_download_log\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:20:\"wpj7_wc_download_log\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:27:\"wpj7_wc_order_coupon_lookup\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:27:\"wpj7_wc_order_coupon_lookup\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:30:\"wpj7_wc_order_operational_data\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:30:\"wpj7_wc_order_operational_data\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:24:\"wpj7_wc_order_tax_lookup\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:24:\"wpj7_wc_order_tax_lookup\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:19:\"wpj7_wc_orders_meta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpj7_wc_orders_meta\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:20:\"wpj7_wfnotifications\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:20:\"wpj7_wfnotifications\";s:4:\"size\";i:49152;s:4:\"rows\";s:3:\"116\";}s:25:\"wpj7_woocommerce_api_keys\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:25:\"wpj7_woocommerce_api_keys\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:31:\"wpj7_woocommerce_order_itemmeta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:31:\"wpj7_woocommerce_order_itemmeta\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:34:\"wpj7_woocommerce_payment_tokenmeta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:34:\"wpj7_woocommerce_payment_tokenmeta\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:40:\"wpj7_woocommerce_shipping_zone_locations\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:40:\"wpj7_woocommerce_shipping_zone_locations\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"4\";}s:35:\"wpj7_woocommerce_tax_rate_locations\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:35:\"wpj7_woocommerce_tax_rate_locations\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:19:\"wpj7_wpaicg_rsslogs\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpj7_wpaicg_rsslogs\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}s:20:\"wpj7_yith_wcwl_lists\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:20:\"wpj7_yith_wcwl_lists\";s:4:\"size\";i:49152;s:4:\"rows\";s:2:\"39\";}s:25:\"wpj7_parcelpanel_tracking\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:25:\"wpj7_parcelpanel_tracking\";s:4:\"size\";i:65536;s:4:\"rows\";s:1:\"0\";}s:31:\"wpj7_parcelpanel_tracking_items\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:31:\"wpj7_parcelpanel_tracking_items\";s:4:\"size\";i:65536;s:4:\"rows\";s:1:\"0\";}s:20:\"wpj7_redirection_404\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:20:\"wpj7_redirection_404\";s:4:\"size\";i:65536;s:4:\"rows\";s:1:\"0\";}s:21:\"wpj7_redirection_logs\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:21:\"wpj7_redirection_logs\";s:4:\"size\";i:65536;s:4:\"rows\";s:1:\"0\";}s:10:\"wpj7_users\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:10:\"wpj7_users\";s:4:\"size\";i:65536;s:4:\"rows\";s:1:\"2\";}s:19:\"wpj7_wc_order_stats\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpj7_wc_order_stats\";s:4:\"size\";i:65536;s:4:\"rows\";s:1:\"0\";}s:14:\"wpj7_wfblocks7\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:14:\"wpj7_wfblocks7\";s:4:\"size\";i:65536;s:4:\"rows\";s:1:\"0\";}s:16:\"wpj7_wfsnipcache\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:16:\"wpj7_wfsnipcache\";s:4:\"size\";i:65536;s:4:\"rows\";s:1:\"1\";}s:21:\"wpj7_wpr_rocket_cache\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:21:\"wpj7_wpr_rocket_cache\";s:4:\"size\";i:65536;s:4:\"rows\";s:2:\"10\";}s:29:\"wpj7_rank_math_internal_links\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:29:\"wpj7_rank_math_internal_links\";s:4:\"size\";i:81920;s:4:\"rows\";s:3:\"257\";}s:23:\"wpj7_wc_order_addresses\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpj7_wc_order_addresses\";s:4:\"size\";i:81920;s:4:\"rows\";s:1:\"0\";}s:28:\"wpj7_wc_order_product_lookup\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:28:\"wpj7_wc_order_product_lookup\";s:4:\"size\";i:81920;s:4:\"rows\";s:1:\"0\";}s:13:\"wpj7_wfissues\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:13:\"wpj7_wfissues\";s:4:\"size\";i:81920;s:4:\"rows\";s:1:\"0\";}s:20:\"wpj7_wfpendingissues\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:20:\"wpj7_wfpendingissues\";s:4:\"size\";i:81920;s:4:\"rows\";s:1:\"0\";}s:49:\"wpj7_woocommerce_downloadable_product_permissions\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:49:\"wpj7_woocommerce_downloadable_product_permissions\";s:4:\"size\";i:81920;s:4:\"rows\";s:1:\"0\";}s:26:\"wpj7_woocommerce_tax_rates\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:26:\"wpj7_woocommerce_tax_rates\";s:4:\"size\";i:81920;s:4:\"rows\";s:1:\"0\";}s:26:\"wpj7_wc_admin_note_actions\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:26:\"wpj7_wc_admin_note_actions\";s:4:\"size\";i:98304;s:4:\"rows\";s:3:\"186\";}s:19:\"wpj7_wc_admin_notes\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpj7_wc_admin_notes\";s:4:\"size\";i:98304;s:4:\"rows\";s:3:\"140\";}s:11:\"wpj7_wfhits\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:11:\"wpj7_wfhits\";s:4:\"size\";i:98304;s:4:\"rows\";s:2:\"76\";}s:13:\"wpj7_wflogins\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:13:\"wpj7_wflogins\";s:4:\"size\";i:98304;s:4:\"rows\";s:3:\"213\";}s:23:\"wpj7_yoast_primary_term\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpj7_yoast_primary_term\";s:4:\"size\";i:98304;s:4:\"rows\";s:3:\"456\";}s:13:\"wpj7_comments\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:13:\"wpj7_comments\";s:4:\"size\";i:114688;s:4:\"rows\";s:1:\"0\";}s:17:\"wpj7_pmxi_imports\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:17:\"wpj7_pmxi_imports\";s:4:\"size\";i:114688;s:4:\"rows\";s:1:\"6\";}s:22:\"wpj7_redirection_items\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:22:\"wpj7_redirection_items\";s:4:\"size\";i:114688;s:4:\"rows\";s:1:\"0\";}s:27:\"wpj7_wc_product_meta_lookup\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:27:\"wpj7_wc_product_meta_lookup\";s:4:\"size\";i:114688;s:4:\"rows\";s:1:\"0\";}s:15:\"wpj7_wpml_mails\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:15:\"wpj7_wpml_mails\";s:4:\"size\";i:114688;s:4:\"rows\";s:2:\"34\";}s:23:\"wpj7_wpr_rucss_used_css\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpj7_wpr_rucss_used_css\";s:4:\"size\";i:114688;s:4:\"rows\";s:1:\"0\";}s:30:\"wpj7_yoast_indexable_hierarchy\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:30:\"wpj7_yoast_indexable_hierarchy\";s:4:\"size\";i:114688;s:4:\"rows\";s:3:\"626\";}s:24:\"wpj7_zorem_email_sms_log\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:24:\"wpj7_zorem_email_sms_log\";s:4:\"size\";i:131072;s:4:\"rows\";s:1:\"0\";}s:19:\"wpj7_mainwp_wp_logs\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpj7_mainwp_wp_logs\";s:4:\"size\";i:147456;s:4:\"rows\";s:1:\"0\";}s:23:\"wpj7_trackship_shipment\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:23:\"wpj7_trackship_shipment\";s:4:\"size\";i:147456;s:4:\"rows\";s:1:\"0\";}s:14:\"wpj7_wc_orders\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:14:\"wpj7_wc_orders\";s:4:\"size\";i:147456;s:4:\"rows\";s:1:\"0\";}s:27:\"wpj7_woo_shippment_provider\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:27:\"wpj7_woo_shippment_provider\";s:4:\"size\";i:147456;s:4:\"rows\";s:3:\"817\";}s:19:\"wpj7_pmxi_templates\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:19:\"wpj7_pmxi_templates\";s:4:\"size\";i:180224;s:4:\"rows\";s:1:\"5\";}s:13:\"wpj7_wfstatus\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:13:\"wpj7_wfstatus\";s:4:\"size\";i:262144;s:4:\"rows\";s:3:\"955\";}s:20:\"wpj7_yoast_seo_links\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:20:\"wpj7_yoast_seo_links\";s:4:\"size\";i:278528;s:4:\"rows\";s:3:\"847\";}s:22:\"wpj7_mainwp_action_log\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:22:\"wpj7_mainwp_action_log\";s:4:\"size\";i:294912;s:4:\"rows\";s:1:\"5\";}s:24:\"wpj7_parcelpanel_courier\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:24:\"wpj7_parcelpanel_courier\";s:4:\"size\";i:327680;s:4:\"rows\";s:4:\"1187\";}s:21:\"wpj7_pmxe_google_cats\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:21:\"wpj7_pmxe_google_cats\";s:4:\"size\";i:409600;s:4:\"rows\";s:4:\"5512\";}s:25:\"wpj7_actionscheduler_logs\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:25:\"wpj7_actionscheduler_logs\";s:4:\"size\";i:1097728;s:4:\"rows\";s:3:\"258\";}s:13:\"wpj7_postmeta\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:13:\"wpj7_postmeta\";s:4:\"size\";i:1114112;s:4:\"rows\";s:3:\"298\";}s:28:\"wpj7_actionscheduler_actions\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:28:\"wpj7_actionscheduler_actions\";s:4:\"size\";i:1196032;s:4:\"rows\";s:2:\"88\";}s:13:\"wpj7_wfconfig\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:13:\"wpj7_wfconfig\";s:4:\"size\";i:1523712;s:4:\"rows\";s:3:\"273\";}s:17:\"wpj7_pmxe_exports\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:17:\"wpj7_pmxe_exports\";s:4:\"size\";i:1589248;s:4:\"rows\";s:1:\"4\";}s:20:\"wpj7_yoast_indexable\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:20:\"wpj7_yoast_indexable\";s:4:\"size\";i:1835008;s:4:\"rows\";s:3:\"596\";}s:36:\"wpj7_woocommerce_gpf_google_taxonomy\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:36:\"wpj7_woocommerce_gpf_google_taxonomy\";s:4:\"size\";i:2260992;s:4:\"rows\";s:4:\"5688\";}s:10:\"wpj7_posts\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:10:\"wpj7_posts\";s:4:\"size\";i:6864896;s:4:\"rows\";s:3:\"362\";}s:12:\"wpj7_options\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:12:\"wpj7_options\";s:4:\"size\";i:7553024;s:4:\"rows\";s:4:\"1394\";}s:20:\"wpj7_wfknownfilelist\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:20:\"wpj7_wfknownfilelist\";s:4:\"size\";i:8929280;s:4:\"rows\";s:5:\"32917\";}s:15:\"wpj7_wffilemods\";a:6:{s:5:\"index\";i:0;s:8:\"finished\";i:0;s:7:\"created\";i:0;s:4:\"name\";s:15:\"wpj7_wffilemods\";s:4:\"size\";i:17350656;s:4:\"rows\";s:5:\"29568\";}}s:16:\"mysql_dump_files\";a:1:{i:0;s:76:\"www.nl.ecom-expansion.com_wpvivid-659b29f0c405c_2024-01-07-23-47.part001.sql\";}s:8:\"zip_file\";a:1:{s:78:\"www.nl.ecom-expansion.com_wpvivid-659b29f0c405c_2024-01-07-23-47_backup_db.zip\";a:2:{s:8:\"filename\";s:78:\"www.nl.ecom-expansion.com_wpvivid-659b29f0c405c_2024-01-07-23-47_backup_db.zip\";s:8:\"finished\";i:1;}}}i:1;a:6:{s:11:\"backup_type\";s:13:\"backup_themes\";s:8:\"finished\";i:1;s:8:\"progress\";i:0;s:10:\"file_index\";i:1;s:5:\"index\";i:2000;s:8:\"zip_file\";a:1:{s:82:\"www.nl.ecom-expansion.com_wpvivid-659b29f0c405c_2024-01-07-23-47_backup_themes.zip\";a:2:{s:8:\"filename\";s:82:\"www.nl.ecom-expansion.com_wpvivid-659b29f0c405c_2024-01-07-23-47_backup_themes.zip\";s:8:\"finished\";i:1;}}}i:2;a:6:{s:11:\"backup_type\";s:13:\"backup_plugin\";s:8:\"finished\";i:1;s:8:\"progress\";i:0;s:10:\"file_index\";i:1;s:5:\"index\";i:23500;s:8:\"zip_file\";a:1:{s:82:\"www.nl.ecom-expansion.com_wpvivid-659b29f0c405c_2024-01-07-23-47_backup_plugin.zip\";a:2:{s:8:\"filename\";s:82:\"www.nl.ecom-expansion.com_wpvivid-659b29f0c405c_2024-01-07-23-47_backup_plugin.zip\";s:8:\"finished\";i:1;}}}i:3;a:6:{s:11:\"backup_type\";s:14:\"backup_uploads\";s:8:\"finished\";i:1;s:8:\"progress\";i:0;s:10:\"file_index\";i:1;s:5:\"index\";i:1000;s:8:\"zip_file\";a:1:{s:83:\"www.nl.ecom-expansion.com_wpvivid-659b29f0c405c_2024-01-07-23-47_backup_uploads.zip\";a:2:{s:8:\"filename\";s:83:\"www.nl.ecom-expansion.com_wpvivid-659b29f0c405c_2024-01-07-23-47_backup_uploads.zip\";s:8:\"finished\";i:1;}}}i:4;a:6:{s:11:\"backup_type\";s:14:\"backup_content\";s:8:\"finished\";i:1;s:8:\"progress\";i:0;s:10:\"file_index\";i:1;s:5:\"index\";i:3000;s:8:\"zip_file\";a:1:{s:83:\"www.nl.ecom-expansion.com_wpvivid-659b29f0c405c_2024-01-07-23-47_backup_content.zip\";a:2:{s:8:\"filename\";s:83:\"www.nl.ecom-expansion.com_wpvivid-659b29f0c405c_2024-01-07-23-47_backup_content.zip\";s:8:\"finished\";i:1;}}}i:5;a:6:{s:11:\"backup_type\";s:11:\"backup_core\";s:8:\"finished\";i:1;s:8:\"progress\";i:0;s:10:\"file_index\";i:1;s:5:\"index\";i:3000;s:8:\"zip_file\";a:1:{s:80:\"www.nl.ecom-expansion.com_wpvivid-659b29f0c405c_2024-01-07-23-47_backup_core.zip\";a:2:{s:8:\"filename\";s:80:\"www.nl.ecom-expansion.com_wpvivid-659b29f0c405c_2024-01-07-23-47_backup_core.zip\";s:8:\"finished\";i:1;}}}i:6;a:7:{s:11:\"backup_type\";s:12:\"backup_merge\";s:8:\"finished\";i:1;s:8:\"progress\";i:0;s:10:\"file_index\";i:1;s:10:\"child_file\";a:6:{s:78:\"www.nl.ecom-expansion.com_wpvivid-659b29f0c405c_2024-01-07-23-47_backup_db.zip\";a:11:{s:5:\"files\";a:1:{i:0;s:78:\"www.nl.ecom-expansion.com_wpvivid-659b29f0c405c_2024-01-07-23-47_backup_db.sql\";}s:6:\"tables\";a:167:{i:0;a:3:{s:4:\"name\";s:21:\"wpj7_wfls_role_counts\";s:4:\"size\";i:0;s:4:\"rows\";s:1:\"0\";}i:1;a:3:{s:4:\"name\";s:22:\"wpj7_EWD_OTP_Customers\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:2;a:3:{s:4:\"name\";s:24:\"wpj7_EWD_OTP_Fields_Meta\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:3;a:3:{s:4:\"name\";s:27:\"wpj7_EWD_OTP_Order_Statuses\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:4;a:3:{s:4:\"name\";s:19:\"wpj7_EWD_OTP_Orders\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:5;a:3:{s:4:\"name\";s:23:\"wpj7_EWD_OTP_Sales_Reps\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:6;a:3:{s:4:\"name\";s:33:\"wpj7_cartflows_ca_email_templates\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"4\";}i:7;a:3:{s:4:\"name\";s:17:\"wpj7_mainwp_group\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:8;a:3:{s:4:\"name\";s:23:\"wpj7_mainwp_request_log\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:9;a:3:{s:4:\"name\";s:17:\"wpj7_mainwp_users\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:10;a:3:{s:4:\"name\";s:22:\"wpj7_mainwp_wp_actions\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:11;a:3:{s:4:\"name\";s:21:\"wpj7_mainwp_wp_backup\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:12;a:3:{s:4:\"name\";s:22:\"wpj7_mainwp_wp_clients\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:13;a:3:{s:4:\"name\";s:21:\"wpj7_mainwp_wp_status\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:14;a:3:{s:4:\"name\";s:20:\"wpj7_mo_campaign_log\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:15;a:3:{s:4:\"name\";s:24:\"wpj7_mo_campaign_logmeta\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:16;a:3:{s:4:\"name\";s:19:\"wpj7_mo_conversions\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:17;a:3:{s:4:\"name\";s:26:\"wpj7_mo_email_campaignmeta\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:18;a:3:{s:4:\"name\";s:26:\"wpj7_mo_optin_campaignmeta\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:19;a:3:{s:4:\"name\";s:25:\"wpj7_parcelpanel_location\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:20;a:3:{s:4:\"name\";s:15:\"wpj7_pmxe_posts\";s:4:\"size\";i:16384;s:4:\"rows\";s:3:\"112\";}i:21;a:3:{s:4:\"name\";s:19:\"wpj7_pmxe_templates\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:22;a:3:{s:4:\"name\";s:15:\"wpj7_pmxi_files\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"6\";}i:23;a:3:{s:4:\"name\";s:14:\"wpj7_pmxi_hash\";s:4:\"size\";i:16384;s:4:\"rows\";s:2:\"28\";}i:24;a:3:{s:4:\"name\";s:17:\"wpj7_pmxi_history\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"3\";}i:25;a:3:{s:4:\"name\";s:16:\"wpj7_pmxi_images\";s:4:\"size\";i:16384;s:4:\"rows\";s:2:\"28\";}i:26;a:3:{s:4:\"name\";s:15:\"wpj7_pmxi_posts\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:27;a:3:{s:4:\"name\";s:28:\"wpj7_rank_math_internal_meta\";s:4:\"size\";i:16384;s:4:\"rows\";s:3:\"216\";}i:28;a:3:{s:4:\"name\";s:29:\"wpj7_s2w_error_product_images\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:29;a:3:{s:4:\"name\";s:24:\"wpj7_sfa_abandoned_carts\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:30;a:3:{s:4:\"name\";s:19:\"wpj7_vi_wbe_history\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:31;a:3:{s:4:\"name\";s:23:\"wpj7_wc_category_lookup\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:32;a:3:{s:4:\"name\";s:22:\"wpj7_wc_reserved_stock\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:33;a:3:{s:4:\"name\";s:19:\"wpj7_wfblockediplog\";s:4:\"size\";i:16384;s:4:\"rows\";s:2:\"48\";}i:34;a:3:{s:4:\"name\";s:15:\"wpj7_wfcrawlers\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"4\";}i:35;a:3:{s:4:\"name\";s:18:\"wpj7_wffilechanges\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:36;a:3:{s:4:\"name\";s:11:\"wpj7_wflocs\";s:4:\"size\";i:16384;s:4:\"rows\";s:2:\"68\";}i:37;a:3:{s:4:\"name\";s:18:\"wpj7_wfls_settings\";s:4:\"size\";i:16384;s:4:\"rows\";s:2:\"30\";}i:38;a:3:{s:4:\"name\";s:19:\"wpj7_wfreversecache\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"1\";}i:39;a:3:{s:4:\"name\";s:21:\"wpj7_wfsecurityevents\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:40;a:3:{s:4:\"name\";s:19:\"wpj7_wftrafficrates\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:41;a:3:{s:4:\"name\";s:18:\"wpj7_wfwaffailures\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:42;a:3:{s:4:\"name\";s:38:\"wpj7_woocommerce_shipping_zone_methods\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"4\";}i:43;a:3:{s:4:\"name\";s:31:\"wpj7_woocommerce_shipping_zones\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:44;a:3:{s:4:\"name\";s:11:\"wpj7_wpaicg\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:45;a:3:{s:4:\"name\";s:20:\"wpj7_wpaicg_chatlogs\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:46;a:3:{s:4:\"name\";s:22:\"wpj7_wpaicg_chattokens\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:47;a:3:{s:4:\"name\";s:25:\"wpj7_wpaicg_form_feedback\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:48;a:3:{s:4:\"name\";s:21:\"wpj7_wpaicg_form_logs\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:49;a:3:{s:4:\"name\";s:22:\"wpj7_wpaicg_formtokens\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:50;a:3:{s:4:\"name\";s:22:\"wpj7_wpaicg_image_logs\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:51;a:3:{s:4:\"name\";s:23:\"wpj7_wpaicg_imagetokens\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:52;a:3:{s:4:\"name\";s:27:\"wpj7_wpaicg_prompt_feedback\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:53;a:3:{s:4:\"name\";s:27:\"wpj7_wpaicg_promptbase_logs\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:54;a:3:{s:4:\"name\";s:24:\"wpj7_wpaicg_prompttokens\";s:4:\"size\";i:16384;s:4:\"rows\";s:1:\"0\";}i:55;a:3:{s:4:\"name\";s:27:\"wpj7_actionscheduler_claims\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:56;a:3:{s:4:\"name\";s:27:\"wpj7_actionscheduler_groups\";s:4:\"size\";i:32768;s:4:\"rows\";s:2:\"10\";}i:57;a:3:{s:4:\"name\";s:23:\"wpj7_adfoin_integration\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:58;a:3:{s:4:\"name\";s:15:\"wpj7_adfoin_log\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:59;a:3:{s:4:\"name\";s:34:\"wpj7_cartflows_ca_cart_abandonment\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:60;a:3:{s:4:\"name\";s:38:\"wpj7_cartflows_ca_email_templates_meta\";s:4:\"size\";i:32768;s:4:\"rows\";s:2:\"42\";}i:61;a:3:{s:4:\"name\";s:10:\"wpj7_links\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:62;a:3:{s:4:\"name\";s:14:\"wpj7_mainwp_wp\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:63;a:3:{s:4:\"name\";s:30:\"wpj7_mainwp_wp_backup_progress\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:64;a:3:{s:4:\"name\";s:31:\"wpj7_mainwp_wp_clients_contacts\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:65;a:3:{s:4:\"name\";s:35:\"wpj7_mainwp_wp_clients_field_values\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:66;a:3:{s:4:\"name\";s:29:\"wpj7_mainwp_wp_clients_fields\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:67;a:3:{s:4:\"name\";s:22:\"wpj7_mainwp_wp_options\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:68;a:3:{s:4:\"name\";s:30:\"wpj7_mainwp_wp_settings_backup\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:69;a:3:{s:4:\"name\";s:19:\"wpj7_mainwp_wp_sync\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:70;a:3:{s:4:\"name\";s:23:\"wpj7_mo_email_campaigns\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:71;a:3:{s:4:\"name\";s:23:\"wpj7_term_relationships\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"3\";}i:72;a:3:{s:4:\"name\";s:28:\"wpj7_trackship_shipment_meta\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"2\";}i:73;a:3:{s:4:\"name\";s:24:\"wpj7_wc_gpf_render_cache\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:74;a:3:{s:4:\"name\";s:33:\"wpj7_wc_product_attributes_lookup\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:75;a:3:{s:4:\"name\";s:36:\"wpj7_wc_product_download_directories\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"2\";}i:76;a:3:{s:4:\"name\";s:19:\"wpj7_wc_rate_limits\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:77;a:3:{s:4:\"name\";s:24:\"wpj7_wc_tax_rate_classes\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"2\";}i:78;a:3:{s:4:\"name\";s:16:\"wpj7_wc_webhooks\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"5\";}i:79;a:3:{s:4:\"name\";s:13:\"wpj7_wfhoover\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:80;a:3:{s:4:\"name\";s:23:\"wpj7_wflivetraffichuman\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:81;a:3:{s:4:\"name\";s:21:\"wpj7_wfls_2fa_secrets\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:82;a:3:{s:4:\"name\";s:37:\"wpj7_woocommerce_attribute_taxonomies\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:83;a:3:{s:4:\"name\";s:20:\"wpj7_woocommerce_log\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:84;a:3:{s:4:\"name\";s:28:\"wpj7_woocommerce_order_items\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:85;a:3:{s:4:\"name\";s:31:\"wpj7_woocommerce_payment_tokens\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:86;a:3:{s:4:\"name\";s:25:\"wpj7_woocommerce_sessions\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"9\";}i:87;a:3:{s:4:\"name\";s:22:\"wpj7_wpaicg_token_logs\";s:4:\"size\";i:32768;s:4:\"rows\";s:1:\"0\";}i:88;a:3:{s:4:\"name\";s:14:\"wpj7_yith_wcwl\";s:4:\"size\";i:32768;s:4:\"rows\";s:2:\"80\";}i:89;a:3:{s:4:\"name\";s:21:\"wpj7_yoast_migrations\";s:4:\"size\";i:32768;s:4:\"rows\";s:2:\"24\";}i:90;a:3:{s:4:\"name\";s:31:\"wpj7_cartflows_ca_email_history\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}i:91;a:3:{s:4:\"name\";s:16:\"wpj7_commentmeta\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}i:92;a:3:{s:4:\"name\";s:20:\"wpj7_mainwp_wp_group\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}i:93;a:3:{s:4:\"name\";s:24:\"wpj7_mainwp_wp_logs_meta\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}i:94;a:3:{s:4:\"name\";s:23:\"wpj7_mo_optin_campaigns\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}i:95;a:3:{s:4:\"name\";s:23:\"wpj7_redirection_groups\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"2\";}i:96;a:3:{s:4:\"name\";s:13:\"wpj7_snippets\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"3\";}i:97;a:3:{s:4:\"name\";s:17:\"wpj7_social_users\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}i:98;a:3:{s:4:\"name\";s:18:\"wpj7_term_taxonomy\";s:4:\"size\";i:49152;s:4:\"rows\";s:2:\"17\";}i:99;a:3:{s:4:\"name\";s:13:\"wpj7_termmeta\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"4\";}i:100;a:3:{s:4:\"name\";s:10:\"wpj7_terms\";s:4:\"size\";i:49152;s:4:\"rows\";s:2:\"18\";}i:101;a:3:{s:4:\"name\";s:32:\"wpj7_trackship_shipping_provider\";s:4:\"size\";i:49152;s:4:\"rows\";s:3:\"490\";}i:102;a:3:{s:4:\"name\";s:13:\"wpj7_usermeta\";s:4:\"size\";i:49152;s:4:\"rows\";s:3:\"104\";}i:103;a:3:{s:4:\"name\";s:23:\"wpj7_wc_customer_lookup\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}i:104;a:3:{s:4:\"name\";s:20:\"wpj7_wc_download_log\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}i:105;a:3:{s:4:\"name\";s:27:\"wpj7_wc_order_coupon_lookup\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}i:106;a:3:{s:4:\"name\";s:30:\"wpj7_wc_order_operational_data\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}i:107;a:3:{s:4:\"name\";s:24:\"wpj7_wc_order_tax_lookup\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}i:108;a:3:{s:4:\"name\";s:19:\"wpj7_wc_orders_meta\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}i:109;a:3:{s:4:\"name\";s:20:\"wpj7_wfnotifications\";s:4:\"size\";i:49152;s:4:\"rows\";s:3:\"116\";}i:110;a:3:{s:4:\"name\";s:25:\"wpj7_woocommerce_api_keys\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}i:111;a:3:{s:4:\"name\";s:31:\"wpj7_woocommerce_order_itemmeta\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}i:112;a:3:{s:4:\"name\";s:34:\"wpj7_woocommerce_payment_tokenmeta\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}i:113;a:3:{s:4:\"name\";s:40:\"wpj7_woocommerce_shipping_zone_locations\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"4\";}i:114;a:3:{s:4:\"name\";s:35:\"wpj7_woocommerce_tax_rate_locations\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}i:115;a:3:{s:4:\"name\";s:19:\"wpj7_wpaicg_rsslogs\";s:4:\"size\";i:49152;s:4:\"rows\";s:1:\"0\";}i:116;a:3:{s:4:\"name\";s:20:\"wpj7_yith_wcwl_lists\";s:4:\"size\";i:49152;s:4:\"rows\";s:2:\"39\";}i:117;a:3:{s:4:\"name\";s:25:\"wpj7_parcelpanel_tracking\";s:4:\"size\";i:65536;s:4:\"rows\";s:1:\"0\";}i:118;a:3:{s:4:\"name\";s:31:\"wpj7_parcelpanel_tracking_items\";s:4:\"size\";i:65536;s:4:\"rows\";s:1:\"0\";}i:119;a:3:{s:4:\"name\";s:20:\"wpj7_redirection_404\";s:4:\"size\";i:65536;s:4:\"rows\";s:1:\"0\";}i:120;a:3:{s:4:\"name\";s:21:\"wpj7_redirection_logs\";s:4:\"size\";i:65536;s:4:\"rows\";s:1:\"0\";}i:121;a:3:{s:4:\"name\";s:10:\"wpj7_users\";s:4:\"size\";i:65536;s:4:\"rows\";s:1:\"2\";}i:122;a:3:{s:4:\"name\";s:19:\"wpj7_wc_order_stats\";s:4:\"size\";i:65536;s:4:\"rows\";s:1:\"0\";}i:123;a:3:{s:4:\"name\";s:14:\"wpj7_wfblocks7\";s:4:\"size\";i:65536;s:4:\"rows\";s:1:\"0\";}i:124;a:3:{s:4:\"name\";s:16:\"wpj7_wfsnipcache\";s:4:\"size\";i:65536;s:4:\"rows\";s:1:\"1\";}i:125;a:3:{s:4:\"name\";s:21:\"wpj7_wpr_rocket_cache\";s:4:\"size\";i:65536;s:4:\"rows\";s:2:\"10\";}i:126;a:3:{s:4:\"name\";s:29:\"wpj7_rank_math_internal_links\";s:4:\"size\";i:81920;s:4:\"rows\";s:3:\"257\";}i:127;a:3:{s:4:\"name\";s:23:\"wpj7_wc_order_addresses\";s:4:\"size\";i:81920;s:4:\"rows\";s:1:\"0\";}i:128;a:3:{s:4:\"name\";s:28:\"wpj7_wc_order_product_lookup\";s:4:\"size\";i:81920;s:4:\"rows\";s:1:\"0\";}i:129;a:3:{s:4:\"name\";s:13:\"wpj7_wfissues\";s:4:\"size\";i:81920;s:4:\"rows\";s:1:\"0\";}i:130;a:3:{s:4:\"name\";s:20:\"wpj7_wfpendingissues\";s:4:\"size\";i:81920;s:4:\"rows\";s:1:\"0\";}i:131;a:3:{s:4:\"name\";s:49:\"wpj7_woocommerce_downloadable_product_permissions\";s:4:\"size\";i:81920;s:4:\"rows\";s:1:\"0\";}i:132;a:3:{s:4:\"name\";s:26:\"wpj7_woocommerce_tax_rates\";s:4:\"size\";i:81920;s:4:\"rows\";s:1:\"0\";}i:133;a:3:{s:4:\"name\";s:26:\"wpj7_wc_admin_note_actions\";s:4:\"size\";i:98304;s:4:\"rows\";s:3:\"186\";}i:134;a:3:{s:4:\"name\";s:19:\"wpj7_wc_admin_notes\";s:4:\"size\";i:98304;s:4:\"rows\";s:3:\"140\";}i:135;a:3:{s:4:\"name\";s:11:\"wpj7_wfhits\";s:4:\"size\";i:98304;s:4:\"rows\";s:2:\"76\";}i:136;a:3:{s:4:\"name\";s:13:\"wpj7_wflogins\";s:4:\"size\";i:98304;s:4:\"rows\";s:3:\"213\";}i:137;a:3:{s:4:\"name\";s:23:\"wpj7_yoast_primary_term\";s:4:\"size\";i:98304;s:4:\"rows\";s:3:\"456\";}i:138;a:3:{s:4:\"name\";s:13:\"wpj7_comments\";s:4:\"size\";i:114688;s:4:\"rows\";s:1:\"0\";}i:139;a:3:{s:4:\"name\";s:17:\"wpj7_pmxi_imports\";s:4:\"size\";i:114688;s:4:\"rows\";s:1:\"6\";}i:140;a:3:{s:4:\"name\";s:22:\"wpj7_redirection_items\";s:4:\"size\";i:114688;s:4:\"rows\";s:1:\"0\";}i:141;a:3:{s:4:\"name\";s:27:\"wpj7_wc_product_meta_lookup\";s:4:\"size\";i:114688;s:4:\"rows\";s:1:\"0\";}i:142;a:3:{s:4:\"name\";s:15:\"wpj7_wpml_mails\";s:4:\"size\";i:114688;s:4:\"rows\";s:2:\"34\";}i:143;a:3:{s:4:\"name\";s:23:\"wpj7_wpr_rucss_used_css\";s:4:\"size\";i:114688;s:4:\"rows\";s:1:\"0\";}i:144;a:3:{s:4:\"name\";s:30:\"wpj7_yoast_indexable_hierarchy\";s:4:\"size\";i:114688;s:4:\"rows\";s:3:\"626\";}i:145;a:3:{s:4:\"name\";s:24:\"wpj7_zorem_email_sms_log\";s:4:\"size\";i:131072;s:4:\"rows\";s:1:\"0\";}i:146;a:3:{s:4:\"name\";s:19:\"wpj7_mainwp_wp_logs\";s:4:\"size\";i:147456;s:4:\"rows\";s:1:\"0\";}i:147;a:3:{s:4:\"name\";s:23:\"wpj7_trackship_shipment\";s:4:\"size\";i:147456;s:4:\"rows\";s:1:\"0\";}i:148;a:3:{s:4:\"name\";s:14:\"wpj7_wc_orders\";s:4:\"size\";i:147456;s:4:\"rows\";s:1:\"0\";}i:149;a:3:{s:4:\"name\";s:27:\"wpj7_woo_shippment_provider\";s:4:\"size\";i:147456;s:4:\"rows\";s:3:\"817\";}i:150;a:3:{s:4:\"name\";s:19:\"wpj7_pmxi_templates\";s:4:\"size\";i:180224;s:4:\"rows\";s:1:\"5\";}i:151;a:3:{s:4:\"name\";s:13:\"wpj7_wfstatus\";s:4:\"size\";i:262144;s:4:\"rows\";s:3:\"955\";}i:152;a:3:{s:4:\"name\";s:20:\"wpj7_yoast_seo_links\";s:4:\"size\";i:278528;s:4:\"rows\";s:3:\"847\";}i:153;a:3:{s:4:\"name\";s:22:\"wpj7_mainwp_action_log\";s:4:\"size\";i:294912;s:4:\"rows\";s:1:\"5\";}i:154;a:3:{s:4:\"name\";s:24:\"wpj7_parcelpanel_courier\";s:4:\"size\";i:327680;s:4:\"rows\";s:4:\"1187\";}i:155;a:3:{s:4:\"name\";s:21:\"wpj7_pmxe_google_cats\";s:4:\"size\";i:409600;s:4:\"rows\";s:4:\"5512\";}i:156;a:3:{s:4:\"name\";s:25:\"wpj7_actionscheduler_logs\";s:4:\"size\";i:1097728;s:4:\"rows\";s:3:\"258\";}i:157;a:3:{s:4:\"name\";s:13:\"wpj7_postmeta\";s:4:\"size\";i:1114112;s:4:\"rows\";s:3:\"298\";}i:158;a:3:{s:4:\"name\";s:28:\"wpj7_actionscheduler_actions\";s:4:\"size\";i:1196032;s:4:\"rows\";s:2:\"88\";}i:159;a:3:{s:4:\"name\";s:13:\"wpj7_wfconfig\";s:4:\"size\";i:1523712;s:4:\"rows\";s:3:\"273\";}i:160;a:3:{s:4:\"name\";s:17:\"wpj7_pmxe_exports\";s:4:\"size\";i:1589248;s:4:\"rows\";s:1:\"4\";}i:161;a:3:{s:4:\"name\";s:20:\"wpj7_yoast_indexable\";s:4:\"size\";i:1835008;s:4:\"rows\";s:3:\"596\";}i:162;a:3:{s:4:\"name\";s:36:\"wpj7_woocommerce_gpf_google_taxonomy\";s:4:\"size\";i:2260992;s:4:\"rows\";s:4:\"5688\";}i:163;a:3:{s:4:\"name\";s:10:\"wpj7_posts\";s:4:\"size\";i:6864896;s:4:\"rows\";s:3:\"362\";}i:164;a:3:{s:4:\"name\";s:12:\"wpj7_options\";s:4:\"size\";i:7553024;s:4:\"rows\";s:4:\"1394\";}i:165;a:3:{s:4:\"name\";s:20:\"wpj7_wfknownfilelist\";s:4:\"size\";i:8929280;s:4:\"rows\";s:5:\"32917\";}i:166;a:3:{s:4:\"name\";s:15:\"wpj7_wffilemods\";s:4:\"size\";i:17350656;s:4:\"rows\";s:5:\"29568\";}}s:7:\"dump_db\";i:1;s:9:\"file_type\";s:9:\"databases\";s:8:\"home_url\";s:33:\"https://www.nl.ecom-expansion.com\";s:9:\"root_flag\";s:6:\"custom\";s:11:\"php_version\";s:6:\"8.0.30\";s:13:\"mysql_version\";s:7:\"10.6.16\";s:10:\"wp_version\";s:5:\"6.4.2\";s:14:\"find_zero_date\";i:1;s:4:\"file\";s:86:\"www.nl.ecom-expansion.com_wpvivid-659b29f0c405c_2024-01-07-23-47_backup_db.part001.zip\";}s:82:\"www.nl.ecom-expansion.com_wpvivid-659b29f0c405c_2024-01-07-23-47_backup_themes.zip\";a:7:{s:9:\"file_type\";s:6:\"themes\";s:9:\"root_flag\";s:10:\"wp-content\";s:11:\"php_version\";s:6:\"8.0.30\";s:13:\"mysql_version\";s:7:\"10.6.16\";s:10:\"wp_version\";s:5:\"6.4.2\";s:6:\"themes\";a:2:{s:14:\"flatsome-child\";a:1:{s:4:\"slug\";s:14:\"flatsome-child\";}s:8:\"flatsome\";a:1:{s:4:\"slug\";s:8:\"flatsome\";}}s:4:\"file\";s:90:\"www.nl.ecom-expansion.com_wpvivid-659b29f0c405c_2024-01-07-23-47_backup_themes.part001.zip\";}s:82:\"www.nl.ecom-expansion.com_wpvivid-659b29f0c405c_2024-01-07-23-47_backup_plugin.zip\";a:7:{s:9:\"file_type\";s:6:\"plugin\";s:9:\"root_flag\";s:10:\"wp-content\";s:11:\"php_version\";s:6:\"8.0.30\";s:13:\"mysql_version\";s:7:\"10.6.16\";s:10:\"wp_version\";s:5:\"6.4.2\";s:6:\"plugin\";a:43:{s:42:\"wc-abandoned-carts-by-small-fish-analytics\";a:1:{s:4:\"slug\";s:42:\"wc-abandoned-carts-by-small-fish-analytics\";}s:22:\"advanced-custom-fields\";a:1:{s:4:\"slug\";s:22:\"advanced-custom-fields\";}s:7:\"ast-pro\";a:1:{s:4:\"slug\";s:7:\"ast-pro\";}s:33:\"gpt3-ai-content-generator-premium\";a:1:{s:4:\"slug\";s:33:\"gpt3-ai-content-generator-premium\";}s:14:\"classic-editor\";a:1:{s:4:\"slug\";s:14:\"classic-editor\";}s:13:\"code-snippets\";a:1:{s:4:\"slug\";s:13:\"code-snippets\";}s:11:\"coming-soon\";a:1:{s:4:\"slug\";s:11:\"coming-soon\";}s:14:\"contact-form-7\";a:1:{s:4:\"slug\";s:14:\"contact-form-7\";}s:24:\"webp-converter-for-media\";a:1:{s:4:\"slug\";s:24:\"webp-converter-for-media\";}s:31:\"duracelltomi-google-tag-manager\";a:1:{s:4:\"slug\";s:31:\"duracelltomi-google-tag-manager\";}s:34:\"jwt-authentication-for-wp-rest-api\";a:1:{s:4:\"slug\";s:34:\"jwt-authentication-for-wp-rest-api\";}s:14:\"loco-translate\";a:1:{s:4:\"slug\";s:14:\"loco-translate\";}s:9:\"mailoptin\";a:1:{s:4:\"slug\";s:9:\"mailoptin\";}s:12:\"mainwp-child\";a:1:{s:4:\"slug\";s:12:\"mainwp-child\";}s:22:\"media-file-renamer-pro\";a:1:{s:4:\"slug\";s:22:\"media-file-renamer-pro\";}s:7:\"members\";a:1:{s:4:\"slug\";s:7:\"members\";}s:12:\"o2s-wp-tiger\";a:1:{s:4:\"slug\";s:12:\"o2s-wp-tiger\";}s:38:\"woocommerce-pdf-invoices-packing-slips\";a:1:{s:4:\"slug\";s:38:\"woocommerce-pdf-invoices-packing-slips\";}s:26:\"product-size-chart-for-woo\";a:1:{s:4:\"slug\";s:26:\"product-size-chart-for-woo\";}s:16:\"seo-by-rank-math\";a:1:{s:4:\"slug\";s:16:\"seo-by-rank-math\";}s:11:\"redirection\";a:1:{s:4:\"slug\";s:11:\"redirection\";}s:19:\"shortcodes-ultimate\";a:1:{s:4:\"slug\";s:19:\"shortcodes-ultimate\";}s:15:\"google-site-kit\";a:1:{s:4:\"slug\";s:15:\"google-site-kit\";}s:11:\"svg-support\";a:1:{s:4:\"slug\";s:11:\"svg-support\";}s:22:\"woo-variation-swatches\";a:1:{s:4:\"slug\";s:22:\"woo-variation-swatches\";}s:11:\"woocommerce\";a:1:{s:4:\"slug\";s:11:\"woocommerce\";}s:34:\"woocommerce-advanced-free-shipping\";a:1:{s:4:\"slug\";s:34:\"woocommerce-advanced-free-shipping\";}s:29:\"woo-cart-abandonment-recovery\";a:1:{s:4:\"slug\";s:29:\"woo-cart-abandonment-recovery\";}s:25:\"woocommerce-product-feeds\";a:1:{s:4:\"slug\";s:25:\"woocommerce-product-feeds\";}s:27:\"woocommerce-paypal-payments\";a:1:{s:4:\"slug\";s:27:\"woocommerce-paypal-payments\";}s:26:\"woocommerce-gateway-stripe\";a:1:{s:4:\"slug\";s:26:\"woocommerce-gateway-stripe\";}s:9:\"wordfence\";a:1:{s:4:\"slug\";s:9:\"wordfence\";}s:15:\"wpae-acf-add-on\";a:1:{s:4:\"slug\";s:15:\"wpae-acf-add-on\";}s:23:\"wpae-woocommerce-add-on\";a:1:{s:4:\"slug\";s:23:\"wpae-woocommerce-add-on\";}s:17:\"wp-all-export-pro\";a:1:{s:4:\"slug\";s:17:\"wp-all-export-pro\";}s:15:\"wpai-acf-add-on\";a:1:{s:4:\"slug\";s:15:\"wpai-acf-add-on\";}s:23:\"wpai-woocommerce-add-on\";a:1:{s:4:\"slug\";s:23:\"wpai-woocommerce-add-on\";}s:17:\"wp-all-import-pro\";a:1:{s:4:\"slug\";s:17:\"wp-all-import-pro\";}s:15:\"wp-mail-logging\";a:1:{s:4:\"slug\";s:15:\"wp-mail-logging\";}s:9:\"wp-rocket\";a:1:{s:4:\"slug\";s:9:\"wp-rocket\";}s:23:\"wp-sheet-editor-premium\";a:1:{s:4:\"slug\";s:23:\"wp-sheet-editor-premium\";}s:33:\"bulk-edit-categories-tags-premium\";a:1:{s:4:\"slug\";s:33:\"bulk-edit-categories-tags-premium\";}s:32:\"woo-products-bulk-editor-premium\";a:1:{s:4:\"slug\";s:32:\"woo-products-bulk-editor-premium\";}}s:4:\"file\";s:90:\"www.nl.ecom-expansion.com_wpvivid-659b29f0c405c_2024-01-07-23-47_backup_plugin.part001.zip\";}s:83:\"www.nl.ecom-expansion.com_wpvivid-659b29f0c405c_2024-01-07-23-47_backup_uploads.zip\";a:6:{s:9:\"file_type\";s:6:\"upload\";s:9:\"root_flag\";s:10:\"wp-content\";s:11:\"php_version\";s:6:\"8.0.30\";s:13:\"mysql_version\";s:7:\"10.6.16\";s:10:\"wp_version\";s:5:\"6.4.2\";s:4:\"file\";s:91:\"www.nl.ecom-expansion.com_wpvivid-659b29f0c405c_2024-01-07-23-47_backup_uploads.part001.zip\";}s:83:\"www.nl.ecom-expansion.com_wpvivid-659b29f0c405c_2024-01-07-23-47_backup_content.zip\";a:6:{s:9:\"file_type\";s:10:\"wp-content\";s:9:\"root_flag\";s:10:\"wp-content\";s:11:\"php_version\";s:6:\"8.0.30\";s:13:\"mysql_version\";s:7:\"10.6.16\";s:10:\"wp_version\";s:5:\"6.4.2\";s:4:\"file\";s:91:\"www.nl.ecom-expansion.com_wpvivid-659b29f0c405c_2024-01-07-23-47_backup_content.part001.zip\";}s:80:\"www.nl.ecom-expansion.com_wpvivid-659b29f0c405c_2024-01-07-23-47_backup_core.zip\";a:6:{s:9:\"file_type\";s:7:\"wp-core\";s:12:\"include_path\";a:2:{i:0;s:11:\"wp-includes\";i:1;s:8:\"wp-admin\";}s:7:\"wp_core\";i:1;s:9:\"root_flag\";s:4:\"root\";s:8:\"home_url\";s:33:\"https://www.nl.ecom-expansion.com\";s:4:\"file\";s:88:\"www.nl.ecom-expansion.com_wpvivid-659b29f0c405c_2024-01-07-23-47_backup_core.part001.zip\";}}s:5:\"index\";i:6;s:8:\"zip_file\";a:1:{s:79:\"www.nl.ecom-expansion.com_wpvivid-659b29f0c405c_2024-01-07-23-47_backup_all.zip\";a:2:{s:8:\"filename\";s:79:\"www.nl.ecom-expansion.com_wpvivid-659b29f0c405c_2024-01-07-23-47_backup_all.zip\";s:8:\"finished\";i:1;}}}}s:12:\"dump_setting\";a:14:{s:8:\"database\";s:14:\"cach0166_wp840\";s:4:\"host\";s:9:\"localhost\";s:4:\"user\";s:14:\"cach0166_wp840\";s:4:\"pass\";s:10:\"]SXQ-7pe45\";s:8:\"site_url\";s:33:\"https://www.nl.ecom-expansion.com\";s:8:\"home_url\";s:33:\"https://www.nl.ecom-expansion.com\";s:11:\"content_url\";s:44:\"https://www.nl.ecom-expansion.com/wp-content\";s:6:\"prefix\";s:5:\"wpj7_\";s:17:\"db_connect_method\";s:4:\"wpdb\";s:11:\"file_prefix\";s:64:\"www.nl.ecom-expansion.com_wpvivid-659b29f0c405c_2024-01-07-23-47\";s:4:\"path\";s:62:\"/home/cach0166/nl.ecom-expansion.com/wp-content/wpvividbackups\";s:13:\"max_file_size\";i:209715200;s:14:\"exclude-tables\";a:6:{i:0;s:16:\"wpj7_wpvivid_log\";i:1;s:30:\"wpj7_wpvivid_increment_big_ids\";i:2;s:20:\"wpj7_wpvivid_options\";i:3;s:24:\"wpj7_wpvivid_record_task\";i:4;s:21:\"wpj7_wpvivid_merge_db\";i:5;s:22:\"wpj7_wpvivid_merge_ids\";}s:14:\"include-tables\";a:0:{}}}','no'),(291263,'wpvivid_user_history','a:0:{}','no'),(291264,'wpvivid_backup_list','a:1:{s:21:\"wpvivid-659b29f0c405c\";a:11:{s:4:\"type\";s:6:\"Manual\";s:11:\"create_time\";i:1704668155;s:13:\"manual_delete\";i:0;s:5:\"local\";a:1:{s:4:\"path\";s:14:\"wpvividbackups\";}s:8:\"compress\";a:1:{s:13:\"compress_type\";s:3:\"zip\";}s:10:\"save_local\";i:1;s:13:\"backup_prefix\";s:25:\"www.nl.ecom-expansion.com\";s:3:\"log\";s:111:\"/home/cach0166/nl.ecom-expansion.com/wp-content/wpvividbackups/wpvivid_log/wpvivid-659b29f0c405c_backup_log.txt\";s:6:\"backup\";a:2:{s:6:\"result\";s:7:\"success\";s:5:\"files\";a:1:{i:0;a:2:{s:9:\"file_name\";s:79:\"www.nl.ecom-expansion.com_wpvivid-659b29f0c405c_2024-01-07-23-47_backup_all.zip\";s:4:\"size\";i:159823713;}}}s:6:\"remote\";a:0:{}s:4:\"lock\";s:1:\"0\";}}','no'),(291265,'wpvivid_need_review','not','no'),(291266,'cron_backup_count','a:0:{}','no'),(291267,'wpvivid_review_msg','a:0:{}','no'),(291272,'_transient_wp_core_block_css_files','a:2:{s:7:\"version\";s:5:\"6.4.2\";s:5:\"files\";a:500:{i:0;s:23:\"archives/editor-rtl.css\";i:1;s:27:\"archives/editor-rtl.min.css\";i:2;s:19:\"archives/editor.css\";i:3;s:23:\"archives/editor.min.css\";i:4;s:22:\"archives/style-rtl.css\";i:5;s:26:\"archives/style-rtl.min.css\";i:6;s:18:\"archives/style.css\";i:7;s:22:\"archives/style.min.css\";i:8;s:20:\"audio/editor-rtl.css\";i:9;s:24:\"audio/editor-rtl.min.css\";i:10;s:16:\"audio/editor.css\";i:11;s:20:\"audio/editor.min.css\";i:12;s:19:\"audio/style-rtl.css\";i:13;s:23:\"audio/style-rtl.min.css\";i:14;s:15:\"audio/style.css\";i:15;s:19:\"audio/style.min.css\";i:16;s:19:\"audio/theme-rtl.css\";i:17;s:23:\"audio/theme-rtl.min.css\";i:18;s:15:\"audio/theme.css\";i:19;s:19:\"audio/theme.min.css\";i:20;s:21:\"avatar/editor-rtl.css\";i:21;s:25:\"avatar/editor-rtl.min.css\";i:22;s:17:\"avatar/editor.css\";i:23;s:21:\"avatar/editor.min.css\";i:24;s:20:\"avatar/style-rtl.css\";i:25;s:24:\"avatar/style-rtl.min.css\";i:26;s:16:\"avatar/style.css\";i:27;s:20:\"avatar/style.min.css\";i:28;s:20:\"block/editor-rtl.css\";i:29;s:24:\"block/editor-rtl.min.css\";i:30;s:16:\"block/editor.css\";i:31;s:20:\"block/editor.min.css\";i:32;s:21:\"button/editor-rtl.css\";i:33;s:25:\"button/editor-rtl.min.css\";i:34;s:17:\"button/editor.css\";i:35;s:21:\"button/editor.min.css\";i:36;s:20:\"button/style-rtl.css\";i:37;s:24:\"button/style-rtl.min.css\";i:38;s:16:\"button/style.css\";i:39;s:20:\"button/style.min.css\";i:40;s:22:\"buttons/editor-rtl.css\";i:41;s:26:\"buttons/editor-rtl.min.css\";i:42;s:18:\"buttons/editor.css\";i:43;s:22:\"buttons/editor.min.css\";i:44;s:21:\"buttons/style-rtl.css\";i:45;s:25:\"buttons/style-rtl.min.css\";i:46;s:17:\"buttons/style.css\";i:47;s:21:\"buttons/style.min.css\";i:48;s:22:\"calendar/style-rtl.css\";i:49;s:26:\"calendar/style-rtl.min.css\";i:50;s:18:\"calendar/style.css\";i:51;s:22:\"calendar/style.min.css\";i:52;s:25:\"categories/editor-rtl.css\";i:53;s:29:\"categories/editor-rtl.min.css\";i:54;s:21:\"categories/editor.css\";i:55;s:25:\"categories/editor.min.css\";i:56;s:24:\"categories/style-rtl.css\";i:57;s:28:\"categories/style-rtl.min.css\";i:58;s:20:\"categories/style.css\";i:59;s:24:\"categories/style.min.css\";i:60;s:19:\"code/editor-rtl.css\";i:61;s:23:\"code/editor-rtl.min.css\";i:62;s:15:\"code/editor.css\";i:63;s:19:\"code/editor.min.css\";i:64;s:18:\"code/style-rtl.css\";i:65;s:22:\"code/style-rtl.min.css\";i:66;s:14:\"code/style.css\";i:67;s:18:\"code/style.min.css\";i:68;s:18:\"code/theme-rtl.css\";i:69;s:22:\"code/theme-rtl.min.css\";i:70;s:14:\"code/theme.css\";i:71;s:18:\"code/theme.min.css\";i:72;s:22:\"columns/editor-rtl.css\";i:73;s:26:\"columns/editor-rtl.min.css\";i:74;s:18:\"columns/editor.css\";i:75;s:22:\"columns/editor.min.css\";i:76;s:21:\"columns/style-rtl.css\";i:77;s:25:\"columns/style-rtl.min.css\";i:78;s:17:\"columns/style.css\";i:79;s:21:\"columns/style.min.css\";i:80;s:29:\"comment-content/style-rtl.css\";i:81;s:33:\"comment-content/style-rtl.min.css\";i:82;s:25:\"comment-content/style.css\";i:83;s:29:\"comment-content/style.min.css\";i:84;s:30:\"comment-template/style-rtl.css\";i:85;s:34:\"comment-template/style-rtl.min.css\";i:86;s:26:\"comment-template/style.css\";i:87;s:30:\"comment-template/style.min.css\";i:88;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:89;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:90;s:38:\"comments-pagination-numbers/editor.css\";i:91;s:42:\"comments-pagination-numbers/editor.min.css\";i:92;s:34:\"comments-pagination/editor-rtl.css\";i:93;s:38:\"comments-pagination/editor-rtl.min.css\";i:94;s:30:\"comments-pagination/editor.css\";i:95;s:34:\"comments-pagination/editor.min.css\";i:96;s:33:\"comments-pagination/style-rtl.css\";i:97;s:37:\"comments-pagination/style-rtl.min.css\";i:98;s:29:\"comments-pagination/style.css\";i:99;s:33:\"comments-pagination/style.min.css\";i:100;s:29:\"comments-title/editor-rtl.css\";i:101;s:33:\"comments-title/editor-rtl.min.css\";i:102;s:25:\"comments-title/editor.css\";i:103;s:29:\"comments-title/editor.min.css\";i:104;s:23:\"comments/editor-rtl.css\";i:105;s:27:\"comments/editor-rtl.min.css\";i:106;s:19:\"comments/editor.css\";i:107;s:23:\"comments/editor.min.css\";i:108;s:22:\"comments/style-rtl.css\";i:109;s:26:\"comments/style-rtl.min.css\";i:110;s:18:\"comments/style.css\";i:111;s:22:\"comments/style.min.css\";i:112;s:20:\"cover/editor-rtl.css\";i:113;s:24:\"cover/editor-rtl.min.css\";i:114;s:16:\"cover/editor.css\";i:115;s:20:\"cover/editor.min.css\";i:116;s:19:\"cover/style-rtl.css\";i:117;s:23:\"cover/style-rtl.min.css\";i:118;s:15:\"cover/style.css\";i:119;s:19:\"cover/style.min.css\";i:120;s:22:\"details/editor-rtl.css\";i:121;s:26:\"details/editor-rtl.min.css\";i:122;s:18:\"details/editor.css\";i:123;s:22:\"details/editor.min.css\";i:124;s:21:\"details/style-rtl.css\";i:125;s:25:\"details/style-rtl.min.css\";i:126;s:17:\"details/style.css\";i:127;s:21:\"details/style.min.css\";i:128;s:20:\"embed/editor-rtl.css\";i:129;s:24:\"embed/editor-rtl.min.css\";i:130;s:16:\"embed/editor.css\";i:131;s:20:\"embed/editor.min.css\";i:132;s:19:\"embed/style-rtl.css\";i:133;s:23:\"embed/style-rtl.min.css\";i:134;s:15:\"embed/style.css\";i:135;s:19:\"embed/style.min.css\";i:136;s:19:\"embed/theme-rtl.css\";i:137;s:23:\"embed/theme-rtl.min.css\";i:138;s:15:\"embed/theme.css\";i:139;s:19:\"embed/theme.min.css\";i:140;s:19:\"file/editor-rtl.css\";i:141;s:23:\"file/editor-rtl.min.css\";i:142;s:15:\"file/editor.css\";i:143;s:19:\"file/editor.min.css\";i:144;s:18:\"file/style-rtl.css\";i:145;s:22:\"file/style-rtl.min.css\";i:146;s:14:\"file/style.css\";i:147;s:18:\"file/style.min.css\";i:148;s:23:\"footnotes/style-rtl.css\";i:149;s:27:\"footnotes/style-rtl.min.css\";i:150;s:19:\"footnotes/style.css\";i:151;s:23:\"footnotes/style.min.css\";i:152;s:23:\"freeform/editor-rtl.css\";i:153;s:27:\"freeform/editor-rtl.min.css\";i:154;s:19:\"freeform/editor.css\";i:155;s:23:\"freeform/editor.min.css\";i:156;s:22:\"gallery/editor-rtl.css\";i:157;s:26:\"gallery/editor-rtl.min.css\";i:158;s:18:\"gallery/editor.css\";i:159;s:22:\"gallery/editor.min.css\";i:160;s:21:\"gallery/style-rtl.css\";i:161;s:25:\"gallery/style-rtl.min.css\";i:162;s:17:\"gallery/style.css\";i:163;s:21:\"gallery/style.min.css\";i:164;s:21:\"gallery/theme-rtl.css\";i:165;s:25:\"gallery/theme-rtl.min.css\";i:166;s:17:\"gallery/theme.css\";i:167;s:21:\"gallery/theme.min.css\";i:168;s:20:\"group/editor-rtl.css\";i:169;s:24:\"group/editor-rtl.min.css\";i:170;s:16:\"group/editor.css\";i:171;s:20:\"group/editor.min.css\";i:172;s:19:\"group/style-rtl.css\";i:173;s:23:\"group/style-rtl.min.css\";i:174;s:15:\"group/style.css\";i:175;s:19:\"group/style.min.css\";i:176;s:19:\"group/theme-rtl.css\";i:177;s:23:\"group/theme-rtl.min.css\";i:178;s:15:\"group/theme.css\";i:179;s:19:\"group/theme.min.css\";i:180;s:21:\"heading/style-rtl.css\";i:181;s:25:\"heading/style-rtl.min.css\";i:182;s:17:\"heading/style.css\";i:183;s:21:\"heading/style.min.css\";i:184;s:19:\"html/editor-rtl.css\";i:185;s:23:\"html/editor-rtl.min.css\";i:186;s:15:\"html/editor.css\";i:187;s:19:\"html/editor.min.css\";i:188;s:20:\"image/editor-rtl.css\";i:189;s:24:\"image/editor-rtl.min.css\";i:190;s:16:\"image/editor.css\";i:191;s:20:\"image/editor.min.css\";i:192;s:19:\"image/style-rtl.css\";i:193;s:23:\"image/style-rtl.min.css\";i:194;s:15:\"image/style.css\";i:195;s:19:\"image/style.min.css\";i:196;s:19:\"image/theme-rtl.css\";i:197;s:23:\"image/theme-rtl.min.css\";i:198;s:15:\"image/theme.css\";i:199;s:19:\"image/theme.min.css\";i:200;s:29:\"latest-comments/style-rtl.css\";i:201;s:33:\"latest-comments/style-rtl.min.css\";i:202;s:25:\"latest-comments/style.css\";i:203;s:29:\"latest-comments/style.min.css\";i:204;s:27:\"latest-posts/editor-rtl.css\";i:205;s:31:\"latest-posts/editor-rtl.min.css\";i:206;s:23:\"latest-posts/editor.css\";i:207;s:27:\"latest-posts/editor.min.css\";i:208;s:26:\"latest-posts/style-rtl.css\";i:209;s:30:\"latest-posts/style-rtl.min.css\";i:210;s:22:\"latest-posts/style.css\";i:211;s:26:\"latest-posts/style.min.css\";i:212;s:18:\"list/style-rtl.css\";i:213;s:22:\"list/style-rtl.min.css\";i:214;s:14:\"list/style.css\";i:215;s:18:\"list/style.min.css\";i:216;s:25:\"media-text/editor-rtl.css\";i:217;s:29:\"media-text/editor-rtl.min.css\";i:218;s:21:\"media-text/editor.css\";i:219;s:25:\"media-text/editor.min.css\";i:220;s:24:\"media-text/style-rtl.css\";i:221;s:28:\"media-text/style-rtl.min.css\";i:222;s:20:\"media-text/style.css\";i:223;s:24:\"media-text/style.min.css\";i:224;s:19:\"more/editor-rtl.css\";i:225;s:23:\"more/editor-rtl.min.css\";i:226;s:15:\"more/editor.css\";i:227;s:19:\"more/editor.min.css\";i:228;s:30:\"navigation-link/editor-rtl.css\";i:229;s:34:\"navigation-link/editor-rtl.min.css\";i:230;s:26:\"navigation-link/editor.css\";i:231;s:30:\"navigation-link/editor.min.css\";i:232;s:29:\"navigation-link/style-rtl.css\";i:233;s:33:\"navigation-link/style-rtl.min.css\";i:234;s:25:\"navigation-link/style.css\";i:235;s:29:\"navigation-link/style.min.css\";i:236;s:33:\"navigation-submenu/editor-rtl.css\";i:237;s:37:\"navigation-submenu/editor-rtl.min.css\";i:238;s:29:\"navigation-submenu/editor.css\";i:239;s:33:\"navigation-submenu/editor.min.css\";i:240;s:25:\"navigation/editor-rtl.css\";i:241;s:29:\"navigation/editor-rtl.min.css\";i:242;s:21:\"navigation/editor.css\";i:243;s:25:\"navigation/editor.min.css\";i:244;s:24:\"navigation/style-rtl.css\";i:245;s:28:\"navigation/style-rtl.min.css\";i:246;s:20:\"navigation/style.css\";i:247;s:24:\"navigation/style.min.css\";i:248;s:23:\"nextpage/editor-rtl.css\";i:249;s:27:\"nextpage/editor-rtl.min.css\";i:250;s:19:\"nextpage/editor.css\";i:251;s:23:\"nextpage/editor.min.css\";i:252;s:24:\"page-list/editor-rtl.css\";i:253;s:28:\"page-list/editor-rtl.min.css\";i:254;s:20:\"page-list/editor.css\";i:255;s:24:\"page-list/editor.min.css\";i:256;s:23:\"page-list/style-rtl.css\";i:257;s:27:\"page-list/style-rtl.min.css\";i:258;s:19:\"page-list/style.css\";i:259;s:23:\"page-list/style.min.css\";i:260;s:24:\"paragraph/editor-rtl.css\";i:261;s:28:\"paragraph/editor-rtl.min.css\";i:262;s:20:\"paragraph/editor.css\";i:263;s:24:\"paragraph/editor.min.css\";i:264;s:23:\"paragraph/style-rtl.css\";i:265;s:27:\"paragraph/style-rtl.min.css\";i:266;s:19:\"paragraph/style.css\";i:267;s:23:\"paragraph/style.min.css\";i:268;s:25:\"post-author/style-rtl.css\";i:269;s:29:\"post-author/style-rtl.min.css\";i:270;s:21:\"post-author/style.css\";i:271;s:25:\"post-author/style.min.css\";i:272;s:33:\"post-comments-form/editor-rtl.css\";i:273;s:37:\"post-comments-form/editor-rtl.min.css\";i:274;s:29:\"post-comments-form/editor.css\";i:275;s:33:\"post-comments-form/editor.min.css\";i:276;s:32:\"post-comments-form/style-rtl.css\";i:277;s:36:\"post-comments-form/style-rtl.min.css\";i:278;s:28:\"post-comments-form/style.css\";i:279;s:32:\"post-comments-form/style.min.css\";i:280;s:23:\"post-date/style-rtl.css\";i:281;s:27:\"post-date/style-rtl.min.css\";i:282;s:19:\"post-date/style.css\";i:283;s:23:\"post-date/style.min.css\";i:284;s:27:\"post-excerpt/editor-rtl.css\";i:285;s:31:\"post-excerpt/editor-rtl.min.css\";i:286;s:23:\"post-excerpt/editor.css\";i:287;s:27:\"post-excerpt/editor.min.css\";i:288;s:26:\"post-excerpt/style-rtl.css\";i:289;s:30:\"post-excerpt/style-rtl.min.css\";i:290;s:22:\"post-excerpt/style.css\";i:291;s:26:\"post-excerpt/style.min.css\";i:292;s:34:\"post-featured-image/editor-rtl.css\";i:293;s:38:\"post-featured-image/editor-rtl.min.css\";i:294;s:30:\"post-featured-image/editor.css\";i:295;s:34:\"post-featured-image/editor.min.css\";i:296;s:33:\"post-featured-image/style-rtl.css\";i:297;s:37:\"post-featured-image/style-rtl.min.css\";i:298;s:29:\"post-featured-image/style.css\";i:299;s:33:\"post-featured-image/style.min.css\";i:300;s:34:\"post-navigation-link/style-rtl.css\";i:301;s:38:\"post-navigation-link/style-rtl.min.css\";i:302;s:30:\"post-navigation-link/style.css\";i:303;s:34:\"post-navigation-link/style.min.css\";i:304;s:28:\"post-template/editor-rtl.css\";i:305;s:32:\"post-template/editor-rtl.min.css\";i:306;s:24:\"post-template/editor.css\";i:307;s:28:\"post-template/editor.min.css\";i:308;s:27:\"post-template/style-rtl.css\";i:309;s:31:\"post-template/style-rtl.min.css\";i:310;s:23:\"post-template/style.css\";i:311;s:27:\"post-template/style.min.css\";i:312;s:24:\"post-terms/style-rtl.css\";i:313;s:28:\"post-terms/style-rtl.min.css\";i:314;s:20:\"post-terms/style.css\";i:315;s:24:\"post-terms/style.min.css\";i:316;s:24:\"post-title/style-rtl.css\";i:317;s:28:\"post-title/style-rtl.min.css\";i:318;s:20:\"post-title/style.css\";i:319;s:24:\"post-title/style.min.css\";i:320;s:26:\"preformatted/style-rtl.css\";i:321;s:30:\"preformatted/style-rtl.min.css\";i:322;s:22:\"preformatted/style.css\";i:323;s:26:\"preformatted/style.min.css\";i:324;s:24:\"pullquote/editor-rtl.css\";i:325;s:28:\"pullquote/editor-rtl.min.css\";i:326;s:20:\"pullquote/editor.css\";i:327;s:24:\"pullquote/editor.min.css\";i:328;s:23:\"pullquote/style-rtl.css\";i:329;s:27:\"pullquote/style-rtl.min.css\";i:330;s:19:\"pullquote/style.css\";i:331;s:23:\"pullquote/style.min.css\";i:332;s:23:\"pullquote/theme-rtl.css\";i:333;s:27:\"pullquote/theme-rtl.min.css\";i:334;s:19:\"pullquote/theme.css\";i:335;s:23:\"pullquote/theme.min.css\";i:336;s:39:\"query-pagination-numbers/editor-rtl.css\";i:337;s:43:\"query-pagination-numbers/editor-rtl.min.css\";i:338;s:35:\"query-pagination-numbers/editor.css\";i:339;s:39:\"query-pagination-numbers/editor.min.css\";i:340;s:31:\"query-pagination/editor-rtl.css\";i:341;s:35:\"query-pagination/editor-rtl.min.css\";i:342;s:27:\"query-pagination/editor.css\";i:343;s:31:\"query-pagination/editor.min.css\";i:344;s:30:\"query-pagination/style-rtl.css\";i:345;s:34:\"query-pagination/style-rtl.min.css\";i:346;s:26:\"query-pagination/style.css\";i:347;s:30:\"query-pagination/style.min.css\";i:348;s:25:\"query-title/style-rtl.css\";i:349;s:29:\"query-title/style-rtl.min.css\";i:350;s:21:\"query-title/style.css\";i:351;s:25:\"query-title/style.min.css\";i:352;s:20:\"query/editor-rtl.css\";i:353;s:24:\"query/editor-rtl.min.css\";i:354;s:16:\"query/editor.css\";i:355;s:20:\"query/editor.min.css\";i:356;s:19:\"query/style-rtl.css\";i:357;s:23:\"query/style-rtl.min.css\";i:358;s:15:\"query/style.css\";i:359;s:19:\"query/style.min.css\";i:360;s:19:\"quote/style-rtl.css\";i:361;s:23:\"quote/style-rtl.min.css\";i:362;s:15:\"quote/style.css\";i:363;s:19:\"quote/style.min.css\";i:364;s:19:\"quote/theme-rtl.css\";i:365;s:23:\"quote/theme-rtl.min.css\";i:366;s:15:\"quote/theme.css\";i:367;s:19:\"quote/theme.min.css\";i:368;s:23:\"read-more/style-rtl.css\";i:369;s:27:\"read-more/style-rtl.min.css\";i:370;s:19:\"read-more/style.css\";i:371;s:23:\"read-more/style.min.css\";i:372;s:18:\"rss/editor-rtl.css\";i:373;s:22:\"rss/editor-rtl.min.css\";i:374;s:14:\"rss/editor.css\";i:375;s:18:\"rss/editor.min.css\";i:376;s:17:\"rss/style-rtl.css\";i:377;s:21:\"rss/style-rtl.min.css\";i:378;s:13:\"rss/style.css\";i:379;s:17:\"rss/style.min.css\";i:380;s:21:\"search/editor-rtl.css\";i:381;s:25:\"search/editor-rtl.min.css\";i:382;s:17:\"search/editor.css\";i:383;s:21:\"search/editor.min.css\";i:384;s:20:\"search/style-rtl.css\";i:385;s:24:\"search/style-rtl.min.css\";i:386;s:16:\"search/style.css\";i:387;s:20:\"search/style.min.css\";i:388;s:20:\"search/theme-rtl.css\";i:389;s:24:\"search/theme-rtl.min.css\";i:390;s:16:\"search/theme.css\";i:391;s:20:\"search/theme.min.css\";i:392;s:24:\"separator/editor-rtl.css\";i:393;s:28:\"separator/editor-rtl.min.css\";i:394;s:20:\"separator/editor.css\";i:395;s:24:\"separator/editor.min.css\";i:396;s:23:\"separator/style-rtl.css\";i:397;s:27:\"separator/style-rtl.min.css\";i:398;s:19:\"separator/style.css\";i:399;s:23:\"separator/style.min.css\";i:400;s:23:\"separator/theme-rtl.css\";i:401;s:27:\"separator/theme-rtl.min.css\";i:402;s:19:\"separator/theme.css\";i:403;s:23:\"separator/theme.min.css\";i:404;s:24:\"shortcode/editor-rtl.css\";i:405;s:28:\"shortcode/editor-rtl.min.css\";i:406;s:20:\"shortcode/editor.css\";i:407;s:24:\"shortcode/editor.min.css\";i:408;s:24:\"site-logo/editor-rtl.css\";i:409;s:28:\"site-logo/editor-rtl.min.css\";i:410;s:20:\"site-logo/editor.css\";i:411;s:24:\"site-logo/editor.min.css\";i:412;s:23:\"site-logo/style-rtl.css\";i:413;s:27:\"site-logo/style-rtl.min.css\";i:414;s:19:\"site-logo/style.css\";i:415;s:23:\"site-logo/style.min.css\";i:416;s:27:\"site-tagline/editor-rtl.css\";i:417;s:31:\"site-tagline/editor-rtl.min.css\";i:418;s:23:\"site-tagline/editor.css\";i:419;s:27:\"site-tagline/editor.min.css\";i:420;s:25:\"site-title/editor-rtl.css\";i:421;s:29:\"site-title/editor-rtl.min.css\";i:422;s:21:\"site-title/editor.css\";i:423;s:25:\"site-title/editor.min.css\";i:424;s:24:\"site-title/style-rtl.css\";i:425;s:28:\"site-title/style-rtl.min.css\";i:426;s:20:\"site-title/style.css\";i:427;s:24:\"site-title/style.min.css\";i:428;s:26:\"social-link/editor-rtl.css\";i:429;s:30:\"social-link/editor-rtl.min.css\";i:430;s:22:\"social-link/editor.css\";i:431;s:26:\"social-link/editor.min.css\";i:432;s:27:\"social-links/editor-rtl.css\";i:433;s:31:\"social-links/editor-rtl.min.css\";i:434;s:23:\"social-links/editor.css\";i:435;s:27:\"social-links/editor.min.css\";i:436;s:26:\"social-links/style-rtl.css\";i:437;s:30:\"social-links/style-rtl.min.css\";i:438;s:22:\"social-links/style.css\";i:439;s:26:\"social-links/style.min.css\";i:440;s:21:\"spacer/editor-rtl.css\";i:441;s:25:\"spacer/editor-rtl.min.css\";i:442;s:17:\"spacer/editor.css\";i:443;s:21:\"spacer/editor.min.css\";i:444;s:20:\"spacer/style-rtl.css\";i:445;s:24:\"spacer/style-rtl.min.css\";i:446;s:16:\"spacer/style.css\";i:447;s:20:\"spacer/style.min.css\";i:448;s:20:\"table/editor-rtl.css\";i:449;s:24:\"table/editor-rtl.min.css\";i:450;s:16:\"table/editor.css\";i:451;s:20:\"table/editor.min.css\";i:452;s:19:\"table/style-rtl.css\";i:453;s:23:\"table/style-rtl.min.css\";i:454;s:15:\"table/style.css\";i:455;s:19:\"table/style.min.css\";i:456;s:19:\"table/theme-rtl.css\";i:457;s:23:\"table/theme-rtl.min.css\";i:458;s:15:\"table/theme.css\";i:459;s:19:\"table/theme.min.css\";i:460;s:23:\"tag-cloud/style-rtl.css\";i:461;s:27:\"tag-cloud/style-rtl.min.css\";i:462;s:19:\"tag-cloud/style.css\";i:463;s:23:\"tag-cloud/style.min.css\";i:464;s:28:\"template-part/editor-rtl.css\";i:465;s:32:\"template-part/editor-rtl.min.css\";i:466;s:24:\"template-part/editor.css\";i:467;s:28:\"template-part/editor.min.css\";i:468;s:27:\"template-part/theme-rtl.css\";i:469;s:31:\"template-part/theme-rtl.min.css\";i:470;s:23:\"template-part/theme.css\";i:471;s:27:\"template-part/theme.min.css\";i:472;s:30:\"term-description/style-rtl.css\";i:473;s:34:\"term-description/style-rtl.min.css\";i:474;s:26:\"term-description/style.css\";i:475;s:30:\"term-description/style.min.css\";i:476;s:27:\"text-columns/editor-rtl.css\";i:477;s:31:\"text-columns/editor-rtl.min.css\";i:478;s:23:\"text-columns/editor.css\";i:479;s:27:\"text-columns/editor.min.css\";i:480;s:26:\"text-columns/style-rtl.css\";i:481;s:30:\"text-columns/style-rtl.min.css\";i:482;s:22:\"text-columns/style.css\";i:483;s:26:\"text-columns/style.min.css\";i:484;s:19:\"verse/style-rtl.css\";i:485;s:23:\"verse/style-rtl.min.css\";i:486;s:15:\"verse/style.css\";i:487;s:19:\"verse/style.min.css\";i:488;s:20:\"video/editor-rtl.css\";i:489;s:24:\"video/editor-rtl.min.css\";i:490;s:16:\"video/editor.css\";i:491;s:20:\"video/editor.min.css\";i:492;s:19:\"video/style-rtl.css\";i:493;s:23:\"video/style-rtl.min.css\";i:494;s:15:\"video/style.css\";i:495;s:19:\"video/style.min.css\";i:496;s:19:\"video/theme-rtl.css\";i:497;s:23:\"video/theme-rtl.min.css\";i:498;s:15:\"video/theme.css\";i:499;s:19:\"video/theme.min.css\";}}','yes'),(291294,'mwp_key_last_used_fe890fdc-bb69-4d91-ac27-bc1f4c0e56f4','1700176183','yes'),(291298,'mwp_key_last_used_13194377','1700751212','yes'),(291396,'woocommerce_attribute_lookup_enabled','yes','yes'),(291593,'category_children','a:0:{}','yes'),(291742,'woocommerce_stripe_ideal_settings','a:7:{s:10:\"geo_target\";s:0:\"\";s:5:\"guide\";s:0:\"\";s:10:\"activation\";s:0:\"\";s:7:\"enabled\";s:3:\"yes\";s:5:\"title\";s:5:\"iDEAL\";s:11:\"description\";s:33:\"Je wordt doorgestuurd naar iDEAL.\";s:7:\"webhook\";s:0:\"\";}','yes'),(291744,'woocommerce_stripe_bancontact_settings','a:7:{s:10:\"geo_target\";s:0:\"\";s:5:\"guide\";s:0:\"\";s:10:\"activation\";s:0:\"\";s:7:\"enabled\";s:3:\"yes\";s:5:\"title\";s:10:\"Bancontact\";s:11:\"description\";s:38:\"Je wordt doorgestuurd naar Bancontact.\";s:7:\"webhook\";s:0:\"\";}','yes'),(291756,'woocommerce-ppcp-version','2.4.3','yes'),(291776,'woocommerce-ppcp-settings','a:59:{s:5:\"title\";s:6:\"PayPal\";s:11:\"description\";s:19:\"Betalen via PayPal.\";s:22:\"smart_button_locations\";a:1:{i:0;s:8:\"checkout\";}s:40:\"smart_button_enable_styling_per_location\";b:1;s:27:\"pay_later_messaging_enabled\";b:0;s:24:\"pay_later_button_enabled\";b:1;s:26:\"pay_later_button_locations\";a:5:{i:0;s:7:\"product\";i:1;s:4:\"cart\";i:2;s:8:\"checkout\";i:3;s:4:\"shop\";i:4;s:4:\"home\";}s:29:\"pay_later_messaging_locations\";a:5:{i:0;s:7:\"product\";i:1;s:4:\"cart\";i:2;s:8:\"checkout\";i:3;s:4:\"shop\";i:4;s:4:\"home\";}s:10:\"brand_name\";s:9:\"Teng Shop\";s:17:\"dcc_gateway_title\";s:20:\"Debit & Credit Cards\";s:23:\"dcc_gateway_description\";s:26:\"Pay with your credit card.\";s:10:\"sandbox_on\";b:0;s:20:\"products_dcc_enabled\";b:0;s:20:\"products_pui_enabled\";b:0;s:24:\"client_secret_production\";s:80:\"EKFvv3qZBGMwBUxRcsCE9tRULPPJNusK8fIVPTesXDfSCuErqq64XWqdMqZ_aJBYW3FOFaM05X4f5jrB\";s:20:\"client_id_production\";s:80:\"AQTGuU1gSGqSpM60v27R4NsbOkzw5pwLIpj81S6_6jQszTcT2-GvPc46aBrQS0L6hjps8uMxKxRsbTfD\";s:13:\"client_secret\";s:80:\"EKFvv3qZBGMwBUxRcsCE9tRULPPJNusK8fIVPTesXDfSCuErqq64XWqdMqZ_aJBYW3FOFaM05X4f5jrB\";s:9:\"client_id\";s:80:\"AQTGuU1gSGqSpM60v27R4NsbOkzw5pwLIpj81S6_6jQszTcT2-GvPc46aBrQS0L6hjps8uMxKxRsbTfD\";s:15:\"disable_funding\";a:1:{i:0;s:4:\"card\";}s:11:\"merchant_id\";s:13:\"8DD3MT5SDDZBW\";s:14:\"merchant_email\";s:26:\"contact@ecom-expansion.com\";s:22:\"merchant_id_production\";s:13:\"8DD3MT5SDDZBW\";s:25:\"merchant_email_production\";s:26:\"contact@ecom-expansion.com\";s:6:\"intent\";s:7:\"capture\";s:24:\"capture_on_status_change\";b:0;s:24:\"capture_for_virtual_only\";b:0;s:15:\"payee_preferred\";b:0;s:12:\"landing_page\";s:5:\"LOGIN\";s:22:\"card_billing_data_mode\";s:13:\"minimal_input\";s:25:\"allow_card_button_gateway\";b:1;s:27:\"blocks_final_review_enabled\";b:1;s:21:\"smart_button_language\";s:0:\"\";s:21:\"button_general_layout\";s:8:\"vertical\";s:22:\"button_general_tagline\";b:0;s:20:\"button_general_label\";s:6:\"paypal\";s:20:\"button_general_color\";s:4:\"gold\";s:20:\"button_general_shape\";s:4:\"rect\";s:13:\"button_layout\";s:8:\"vertical\";s:14:\"button_tagline\";b:0;s:12:\"button_label\";s:6:\"paypal\";s:12:\"button_color\";s:4:\"gold\";s:12:\"button_shape\";s:4:\"rect\";s:21:\"button_product_layout\";s:10:\"horizontal\";s:22:\"button_product_tagline\";b:0;s:20:\"button_product_label\";s:6:\"paypal\";s:20:\"button_product_color\";s:4:\"gold\";s:20:\"button_product_shape\";s:4:\"rect\";s:18:\"button_cart_layout\";s:10:\"horizontal\";s:19:\"button_cart_tagline\";b:0;s:17:\"button_cart_label\";s:6:\"paypal\";s:17:\"button_cart_color\";s:4:\"gold\";s:17:\"button_cart_shape\";s:4:\"rect\";s:23:\"button_mini-cart_layout\";s:8:\"vertical\";s:24:\"button_mini-cart_tagline\";b:0;s:22:\"button_mini-cart_label\";s:6:\"paypal\";s:22:\"button_mini-cart_color\";s:4:\"gold\";s:22:\"button_mini-cart_shape\";s:4:\"rect\";s:23:\"button_mini-cart_height\";s:2:\"35\";s:7:\"enabled\";b:1;}','yes'),(291823,'woocommerce_ppcp-gateway_settings','a:2:{s:7:\"enabled\";s:3:\"yes\";s:4:\"ppcp\";s:0:\"\";}','yes'),(291861,'_transient_ppcp-paypal-bearerppcp-bearer','{\"scope\":\"https:\\/\\/uri.paypal.com\\/services\\/checkout\\/one-click-with-merchant-issued-token https:\\/\\/uri.paypal.com\\/services\\/payments\\/futurepayments https:\\/\\/uri.paypal.com\\/services\\/invoicing https:\\/\\/uri.paypal.com\\/services\\/vault\\/payment-tokens\\/read https:\\/\\/uri.paypal.com\\/services\\/disputes\\/read-buyer https:\\/\\/uri.paypal.com\\/services\\/payments\\/realtimepayment https:\\/\\/uri.paypal.com\\/services\\/disputes\\/update-seller https:\\/\\/uri.paypal.com\\/services\\/payments\\/payment\\/authcapture openid https:\\/\\/uri.paypal.com\\/services\\/disputes\\/read-seller Braintree:Vault https:\\/\\/uri.paypal.com\\/services\\/payments\\/refund https:\\/\\/api.paypal.com\\/v1\\/vault\\/credit-card https:\\/\\/api.paypal.com\\/v1\\/payments\\/.* https:\\/\\/uri.paypal.com\\/services\\/reporting\\/search\\/read https:\\/\\/uri.paypal.com\\/services\\/payments\\/initiatepayment https:\\/\\/uri.paypal.com\\/payments\\/payouts https:\\/\\/uri.paypal.com\\/services\\/vault\\/payment-tokens\\/readwrite https:\\/\\/api.paypal.com\\/v1\\/vault\\/credit-card\\/.* https:\\/\\/uri.paypal.com\\/services\\/shipping\\/trackers\\/readwrite https:\\/\\/uri.paypal.com\\/services\\/subscriptions https:\\/\\/uri.paypal.com\\/services\\/applications\\/webhooks\",\"access_token\":\"A21AAOuPeI-r9AGCcVMI5Ele6OpbByY7Mdm_97fl8FB7ImrqXDJOSMMIHaPvxfrunaYoZIKVay1Su-iZadhSdhu7W90iXLEOQ\",\"token_type\":\"Bearer\",\"app_id\":\"APP-975476464N830202K\",\"expires_in\":32396,\"nonce\":\"2024-01-04T20:17:31ZTDpqEbZjxRoO57TBPSgOrbzxdk4BSKax6JMvn3daIk4\",\"token\":\"A21AAOuPeI-r9AGCcVMI5Ele6OpbByY7Mdm_97fl8FB7ImrqXDJOSMMIHaPvxfrunaYoZIKVay1Su-iZadhSdhu7W90iXLEOQ\",\"created\":1704399455}','yes'),(291866,'woocommerce_ppcp-card-button-gateway_settings','a:4:{s:7:\"enabled\";s:2:\"no\";s:5:\"title\";s:24:\"Debit &amp; Credit Cards\";s:11:\"description\";s:0:\"\";s:4:\"ppcp\";s:0:\"\";}','yes'),(292377,'jwt_auth_admin_notice','1','yes'),(292496,'product_cat_children','a:0:{}','yes'),(293600,'mainwp_child_uniqueId','','no'),(293850,'mwp_key_last_used_a2af20e7-a6a8-4091-9d9d-087fef61cca9','1700751078','yes'),(293851,'mwp_potential_key','5818761a-55e8-4cb8-8c64-6988a8554672','yes'),(293852,'mwp_potential_key_time','1700751089','yes'),(294606,'woocommerce_ppcp-is_pay_later_settings_migrated','1','yes'),(294607,'woocommerce_ppcp-is_smart_button_settings_migrated','1','yes'),(294960,'perfmatters_options','a:26:{s:14:\"disable_xmlrpc\";s:1:\"1\";s:21:\"remove_jquery_migrate\";s:1:\"1\";s:15:\"hide_wp_version\";s:1:\"1\";s:23:\"remove_wlwmanifest_link\";s:1:\"1\";s:15:\"remove_rsd_link\";s:1:\"1\";s:16:\"remove_shortlink\";s:1:\"1\";s:22:\"disable_self_pingbacks\";s:1:\"1\";s:16:\"disable_rest_api\";s:0:\"\";s:19:\"disable_google_maps\";s:1:\"1\";s:30:\"disable_google_maps_exclusions\";s:0:\"\";s:16:\"disable_comments\";s:1:\"1\";s:20:\"remove_global_styles\";s:1:\"1\";s:17:\"disable_heartbeat\";s:0:\"\";s:19:\"heartbeat_frequency\";s:0:\"\";s:20:\"limit_post_revisions\";s:0:\"\";s:17:\"autosave_interval\";s:3:\"180\";s:9:\"login_url\";s:0:\"\";s:18:\"login_url_behavior\";s:0:\"\";s:17:\"login_url_message\";s:0:\"\";s:18:\"login_url_redirect\";s:0:\"\";s:6:\"assets\";a:14:{s:13:\"js_exclusions\";s:0:\"\";s:8:\"delay_js\";s:1:\"1\";s:17:\"delay_js_behavior\";s:0:\"\";s:19:\"delay_js_inclusions\";s:0:\"\";s:19:\"delay_js_exclusions\";s:0:\"\";s:17:\"remove_unused_css\";s:1:\"1\";s:12:\"rucss_method\";s:0:\"\";s:25:\"rucss_stylesheet_behavior\";s:0:\"\";s:26:\"rucss_excluded_stylesheets\";s:0:\"\";s:24:\"rucss_excluded_selectors\";s:0:\"\";s:13:\"rucss_cdn_url\";s:0:\"\";s:11:\"header_code\";s:0:\"\";s:9:\"body_code\";s:0:\"\";s:11:\"footer_code\";s:0:\"\";}s:7:\"preload\";a:6:{s:12:\"instant_page\";s:1:\"1\";s:15:\"critical_images\";s:0:\"\";s:7:\"preload\";a:0:{}s:14:\"fetch_priority\";a:0:{}s:10:\"preconnect\";a:0:{}s:12:\"dns_prefetch\";s:0:\"\";}s:8:\"lazyload\";a:5:{s:22:\"exclude_leading_images\";s:0:\"\";s:23:\"lazy_loading_exclusions\";s:0:\"\";s:30:\"lazy_loading_parent_exclusions\";s:0:\"\";s:9:\"threshold\";s:0:\"\";s:24:\"css_background_selectors\";s:0:\"\";}s:5:\"fonts\";a:1:{s:7:\"cdn_url\";s:0:\"\";}s:3:\"cdn\";a:3:{s:7:\"cdn_url\";s:0:\"\";s:15:\"cdn_directories\";s:0:\"\";s:14:\"cdn_exclusions\";s:0:\"\";}s:9:\"analytics\";a:6:{s:11:\"tracking_id\";s:0:\"\";s:22:\"tracking_code_position\";s:0:\"\";s:11:\"script_type\";s:0:\"\";s:20:\"adjusted_bounce_rate\";s:0:\"\";s:7:\"cdn_url\";s:0:\"\";s:14:\"measurement_id\";s:0:\"\";}}','yes'),(294961,'perfmatters_tools','a:1:{s:8:\"database\";a:1:{s:17:\"optimize_schedule\";s:0:\"\";}}','yes'),(294962,'perfmatters_version','2.2.0','no'),(294974,'edd_sl_73499b5e164c73711a5f2eb6801dfa83','a:2:{s:7:\"timeout\";i:1701975816;s:5:\"value\";s:156142:\"{\"new_version\":\"2.2.0\",\"stable_version\":\"2.2.0\",\"name\":\"perfmatters\",\"slug\":\"perfmatters\",\"url\":\"https:\\/\\/perfmatters.io\\/downloads\\/perfmatters\\/?changelog=1\",\"last_updated\":\"2023-11-22 16:27:49\",\"homepage\":\"https:\\/\\/perfmatters.io\",\"package\":\"\",\"download_link\":\"\",\"sections\":{\"description\":\"<p><a href=\\\"https:\\/\\/perfmatters.io\\/\\\">Perfmatters<\\/a> is a lightweight web performance plugin designed to help increase Google Core Web Vitals scores and fine-tune how assets load on your site.<\\/p>\\n<h4> Features <\\/h4>\\n<ul>\\n<li>Easy quick toggle options to turn off resources that shouldn\'t be loading. <\\/li>\\n<li>Disable scripts and plugins on a per post\\/page or sitewide basis with the Script Manager. <\\/li>\\n<li>Defer and delay JavaScript, including third-party scripts.<\\/li>\\n<li>Automatically remove unused CSS.<\\/li>\\n<li>Preload resources, critical images, and prefetch links for quicker load times.<\\/li>\\n<li>Lazy load images and enable click-to-play thumbnails on videos.<\\/li>\\n<li>Host Google Analytics and Google Fonts locally.<\\/li>\\n<li>Change your WordPress login URL. <\\/li>\\n<li>Disable and limit WordPress revisions.<\\/li>\\n<li>Add code to your header, body, and footer.<\\/li>\\n<li>Optimize your database.<\\/li>\\n<\\/ul>\\n<h4> Documentation <\\/h4>\\n<p>Check out our <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/\\\">documentation<\\/a> for more information on how to use Perfmatters.<\\/p>\",\"changelog\":\"<p>2.2.0 - 11.22.2023<\\/p>\\n<ul>\\n<li>Added Delay JS quick exclusion and REST route exception for WS Form.<\\/li>\\n<li>Adjusted built-in WooCommerce stylesheet exclusions for better compatibility.<\\/li>\\n<li>Updated instant.page and FastClick script names for ad blocker compatibility.<\\/li>\\n<li>Fixed a PHP 8.2 deprecated warning coming from the CSS class.<\\/li>\\n<li>Fixed a Script Manager CSS issue where certain disable controls weren\'t hiding correctly in some cases.<\\/li>\\n<li>Removed unnecessary .git directory from background processor library folder.<\\/li>\\n<li>Script Manager security updates to fix XSS vulnerability.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.1.9 - 11.09.2023<\\/p>\\n<ul>\\n<li>Added Delay JS quick exclusions for Presto Player, Raptive Ads, Slickstream, and WP Recipe Maker.<\\/li>\\n<li>Added new WP-CLI command to clear used CSS with multisite support.<\\/li>\\n<li>Added support for Google Material Symbols and Icons to local font feature.<\\/li>\\n<li>Added support for excluding by no-lazy class to CSS Background Images.<\\/li>\\n<li>Added support for lazy loading the poster attribute when set for a video tag.<\\/li>\\n<li>Made adjustments to CSS class to allow for stylesheet\'s to be excluded by any portion of their attribute string.<\\/li>\\n<li>Made some styling improvements to the YouTube preview thumbnail play button on hover.<\\/li>\\n<li>Fixed an issue where delayed stylesheets would be loaded in twice if individual JS delay was also being used.<\\/li>\\n<li>Updated Google Analytics 4 minimal script to version 1.10.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.1.8 - 10.13.2023<\\/p>\\n<ul>\\n<li>Fixed a compatibility issue with local fonts and WordPress 6.3.2 that was causing an error when new font files were requested.<\\/li>\\n<\\/ul>\\n<p>2.1.7 - 09.29.2023<\\/p>\\n<ul>\\n<li>Added Delay JS quick exclusion for WP Forms.<\\/li>\\n<li>Script Manager style updates to match some recent changes to the main settings UI.<\\/li>\\n<li>Script Manager security updates to form submission handling.<\\/li>\\n<li>Added logic to strip whitespace from input row text fields used for preloads, preconnects, and fetch priority options.<\\/li>\\n<li>Adjusted CDN Regex slightly to account for certain subdirectory formats.<\\/li>\\n<li>Added specification to lazyload exclusion to only skip the fetchpriority attribute when set to high.<\\/li>\\n<li>Added Cornerstone request parameter to excluded page builders array.<\\/li>\\n<li>Updated certain AJAX action names to be specific to Perfmatters to prevent conflicts.<\\/li>\\n<li>Updated missing image dimension function to better handle images that have been prepped by lazy loaders outside of Perfmatters.<\\/li>\\n<li>Added Novashare discount link to plugin settings UI for Perfmatters customers.<\\/li>\\n<li>Fixed an issue where the database optimization process would not run correctly if selected toggles were not saved first.<\\/li>\\n<li>Fixed an issue in MU Mode where core cookie constants were not set in a specific instance when checking for the current post ID.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.1.6 - 08.31.2023<\\/p>\\n<ul>\\n<li>Fixed an issue that was preventing CodeMirror input fields from saving correctly.<\\/li>\\n<\\/ul>\\n<p>2.1.5 - 08.30.2023<\\/p>\\n<ul>\\n<li>Reworked the majority of the UI to use WordPress AJAX to save data and perform plugin actions.<\\/li>\\n<li>Renamed Bricks Delay JS quick exclusion, as it can be used to target more than just their slider.<\\/li>\\n<li>Adjusted clean_html utility function regex to better handle large inline data scripts.<\\/li>\\n<li>Added skip-lazy class to built-in lazy loading exclusions.<\\/li>\\n<li>Added right-to-left admin styles for better usability on RTL sites.<\\/li>\\n<li>Fixed an issue where certain HTML characters would not print correctly when saved in a fetch priority selector input field.<\\/li>\\n<li>Fixed an issue where fetch priority selectors would sometimes not get the correct priority applied when set to low.<\\/li>\\n<li>Fixed a typo in the fetch priority tooltip.<\\/li>\\n<li>Updated background processing library to version 1.1.1.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.1.4 - 08.08.2023<\\/p>\\n<ul>\\n<li>Added new preload option to add the <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/fetch-priority\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Fetch Priority<\\/a> attribute to different resources on the site to help improve LCP.<\\/li>\\n<li>Added built-in lazy loading exclusion for fetchpriority attribute.<\\/li>\\n<li>Added Delay JS quick exclusion for Termageddon + Usercentrics.<\\/li>\\n<li>Switched individual JS delay to use the same inline script as delay all to take advantage of delayed triggering of event listeners.<\\/li>\\n<li>Fixed an issue where an empty notice was appearing when a database optimization process completed.<\\/li>\\n<li>Fixed an issue with critical image preloads where an image with an empty src attribute would prevent other similar ones from being added on the same URL.<\\/li>\\n<li>UI improvements to input row sections.<\\/li>\\n<\\/ul>\\n<p>2.1.3 - 07.02.2023<\\/p>\\n<ul>\\n<li>Fixed an issue that was preventing existing Script Manager settings from showing up in certain instances.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.1.2 - 06.29.2023<\\/p>\\n<ul>\\n<li>Added new lazy loading advanced option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/lazy-load-wordpress\\/#exclude-parent-selector\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Exclude Images by Parent Selector<\\/a>.<\\/li>\\n<li>Added built-in exclusion to Delay JS for jqueryParams inline script to prevent load order issues.<\\/li>\\n<li>Added additional built-in exclusions to Remove Unused CSS for better compatibility with Elementor.<\\/li>\\n<li>Added HTTPS check to PERFMATTERS_CACHE_URL definition.<\\/li>\\n<li>Updated Script Manager UI to sort plugins alphabetically by plugin name as well as assets inside each individual section alphabetically by script handle.<\\/li>\\n<li>Fixed an issue where plugins without any enqueued scripts would not always show up in the Script Manager (MU Mode) after visiting the global view.<\\/li>\\n<li>Updated background processing library to version 1.1.0.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.1.1<\\/p>\\n<ul>\\n<li>Added <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/wp-cli\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">WP-CLI<\\/a> support for managing plugin license key activation.<\\/li>\\n<li>Changed behavior of Disable Cart Fragments toggle to only load cart fragmentation script when there are items in the cart.<\\/li>\\n<li>Added default array for critical image preload exclusions that are always needed.<\\/li>\\n<li>Added additional Delay JS quick exclusions for Bricks Slider and WP Armour.<\\/li>\\n<li>Added additional built-in exclusions for Remove Unused CSS for better compatibility with Elementor and Google Reviews Widget.<\\/li>\\n<li>Updated lazy loading fade-in effect to use CSS animation property instead of transition for better compatibility with existing element transitions.<\\/li>\\n<li>Added requirement for advanced options to be turned on to be able to defer jQuery.<\\/li>\\n<li>Added WP-CLI request exclusion to MU plugin functions.<\\/li>\\n<li>Fixed a PHP warning that could sometimes be generated if an image was not able to be parsed for missing dimensions.<\\/li>\\n<li>Updated instant.page library to version 5.2.0.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.1.0<\\/p>\\n<ul>\\n<li>Added new delay JS option for <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/delay-javascript\\/#quick-exclusions\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Quick Exclusions<\\/a> that will show up when certain popular plugins and themes are activated.<\\/li>\\n<li>Made some updates to the Script Manager UI to match recent changes to the main plugin settings.<\\/li>\\n<li>Cleared out some code for the previous settings admin header that was no longer needed.<\\/li>\\n<li>Made an adjustment to CDN URL function to work even if a trailing slash was entered.<\\/li>\\n<li>Rearranged our local and Google font options to give frequently used options more priority.<\\/li>\\n<li>Fixed a bug where multiple settings sections were displaying at the same time after saving from the database tab.<\\/li>\\n<li>Fixed an issue where accessibility mode tooltips were not getting styled properly in the plugin UI.<\\/li>\\n<li>Fixed a styling issue where link and button colors were getting applied outside of the main Perfmatters admin container.<\\/li>\\n<li>Fixed an issue in MU Mode where the global filtered plugin list would not always return correctly.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.0.9<\\/p>\\n<ul>\\n<li>Updated Request library functions used to download local font files to fix a compatibility issue with WordPress 6.2.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_preloads_ready\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_preloads_ready<\\/a> filter.<\\/li>\\n<li>Fixed a styling issue in Safari where the settings UI logo was getting clipped.<\\/li>\\n<\\/ul>\\n<p>2.0.8<\\/p>\\n<ul>\\n<li>Updated plugin settings UI. Completely overhauled admin header and navigation. Made additional improvements to various elements (icons, buttons, toggles, etc.).<\\/li>\\n<li>Added additional checks to allow PERFMATTERS_CACHE_DIR and PERFMATTERS_CACHE_URL to be manually set in wp-config.php.<\\/li>\\n<li>Updated user agent for local font remote request.<\\/li>\\n<li>Fixed an issue where multiple preload tags for the same resource could be printed if the resource was matched more than once in the DOM.<\\/li>\\n<li>Fixed an issue where an individually delayed script would fail to load if it matched more than one delayed script entry.<\\/li>\\n<li>Fixed an issue where FastClick script could still load even if Delay JS was turned off.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.0.7<\\/p>\\n<ul>\\n<li>Fixed an issue that was introduced in the last update that was causing certain images that had their HTML modified by another tool not to lazy load correctly.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.0.6<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/local-analytics\\/#minimal-v4\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Minimal v4<\\/a> script type option in local analytics.<\\/li>\\n<li>Added support for ::after pseudo element when lazy loading CSS background images.<\\/li>\\n<li>Added support for AVIF images in a source tag to preload critical images feature.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_preload_critical_images\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_preload_critical_images<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_image_dimensions_exclusions\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_image_dimensions_exclusions<\\/a> filter.<\\/li>\\n<li>Added notice to plugin update row if there is not an active license key.<\\/li>\\n<li>Added async attribute to Instant Page script tag.<\\/li>\\n<li>Added async attribute to all relevant local analytics script tags.<\\/li>\\n<li>Reworked preload class to allow managing preloads entirely with perfmatters_preloads filter if needed.<\\/li>\\n<li>Fixed an issue in MU Mode where plugins would not always disable correctly when helper plugins with similar directories were also active.<\\/li>\\n<li>Fixed a couple of PHP warnings in MU plugin that would show up when certain variables were not declared.<\\/li>\\n<li>Fixed an issue where our lazy loading script was attempting to load in images that had been prepped by another active lazy loader.<\\/li>\\n<li>Fixed an issue where base64 encoded images were being picked up by missing image dimensions feature.<\\/li>\\n<li>Removed BETA tag from preload critical images option.<\\/li>\\n<\\/ul>\\n<p>2.0.5<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_exclude_leading_images\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_exclude_leading_images<\\/a> filter.<\\/li>\\n<li>Fixed an issue that was affecting lazy loaded inline background images in certain formats.<\\/li>\\n<li>Fixed a PHP warning related to Fastclick and the built-in exclusion for WooCommerce pages.<\\/li>\\n<li>Updated license key field to prevent it from getting auto-filled by browser extensions.<\\/li>\\n<\\/ul>\\n<p>2.0.4<\\/p>\\n<ul>\\n<li>Fixed an issue that was causing the Perfmatters admin bar menu and meta options to not show up in the admin.<\\/li>\\n<li>Added additional nopin attribute for Pinterest to YouTube preview thumbnails.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.0.3<\\/p>\\n<ul>\\n<li>Added new local Google fonts advanced option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/host-google-fonts-locally\\/#async\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Load Asynchronously<\\/a>.<\\/li>\\n<li>Added user agent check before running output buffer with initial exclusion for Usercentrics scanner.<\\/li>\\n<li>Added support for CSS variables when they are being used for lazy loaded inline background images.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_lazyload_youtube_autoplay\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_lazyload_youtube_autoplay<\\/a> filter.<\\/li>\\n<li>Improved delay all script handling of jQuery load event.<\\/li>\\n<li>Changed all WooCommerce checks to use class_exists for better compatibility.<\\/li>\\n<li>Adjusted the order of preloads in the buffer to make sure they print above used CSS.<\\/li>\\n<li>Moved buffer class initialization to wp action hook to improve filtering possibilities.<\\/li>\\n<li>Moved WooCommerce built-in exclusions to apply to select individual features instead of the entire buffer.<\\/li>\\n<li>Slight modification to previous MU Mode addition to fix an issue.<\\/li>\\n<li>Fixed an issue where custom heartbeat interval was not being applied correctly when editing certain custom post types.<\\/li>\\n<li>Fixed an issue with the local stylesheet CDN URL when advanced options were turned on but no URL was set.<\\/li>\\n<li>Fixed an issue where delay script was printing out more than once if multiple closing body tags were present in the DOM.<\\/li>\\n<\\/ul>\\n<p>2.0.2<\\/p>\\n<ul>\\n<li>Fixed an issue that was preventing Removed Unused CSS from running correctly in certain cases when Advanced Options were toggled on.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.0.1<\\/p>\\n<ul>\\n<li>Added new toggle to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/advanced-options\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Show Advanced Options<\\/a> in the Perfmatters UI.<\\/li>\\n<li>Added new advanced option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/delay-javascript\\/#disable-click-delay\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Disable Click Delay<\\/a> in JavaScript section.<\\/li>\\n<li>Added new advanced option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/delay-javascript\\/#fastclick\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Enable FastClick<\\/a> in JavaScript section.<\\/li>\\n<li>Added new advanced option to specify a <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/remove-unused-css\\/#cdn-url\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">CDN URL<\\/a> in CSS section.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/change-wordpress-login-url\\/#local-redirect\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Local Redirect<\\/a> option to existing login URL disabled behavior selection.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_buffer_excluded_extensions\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_buffer_excluded_extensions<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_rucss_excluded_stylesheets\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_rucss_excluded_stylesheets<\\/a> filter.<\\/li>\\n<li>Added additional built-in exclusions for Remove Unused CSS for better compatibility with Elementor, Divi, Slider Revolution, OptimizePress, and WordPress core.<\\/li>\\n<li>Added additional logic in MU Mode to more reliably retrieve the ID for certain custom post types.<\\/li>\\n<li>Moved lazyload functions to new class structure to be more inline with current codebase.<\\/li>\\n<li>Modified regex for lazy loading inline background images to support additional formats.<\\/li>\\n<li>Integrated lazyload functions into the main output buffer to allow interaction with other existing features.<\\/li>\\n<li>Fixed an issue where dynamic preloads were not recognizing existing query strings in some cases.<\\/li>\\n<li>Fixed a PHP warning that would show up in some cases by adding additional string check when looping through rewrite array.<\\/li>\\n<li>Fixed an issue with MU Mode where sometimes the wrong plugin would get disabled if there were multiple plugins using similar directory paths.<\\/li>\\n<li>Fixed an issue where images inside script tags were being picked up by the Preload Critical Images function.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.0.0<\\/p>\\n<ul>\\n<li>Added new system for query string timestamps for Used CSS file method to help see changes quicker in environments with caching.<\\/li>\\n<li>Added support for ?perfmattersoff query string which gives the ability to quickly prevent the majority of Perfmatters features from running on the front end for testing purposes.<\\/li>\\n<li>Added additional support for updating the plugin via WP-CLI.<\\/li>\\n<li>Made some changes to admin bar menu item. There is now a Perfmatters top-level admin bar menu item that links to our plugin settings page. The Script Manager and Clear Used CSS function can be accessed by hovering over that main menu item if those features are enabled.<\\/li>\\n<li>Added new toggle in tools to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/hide-admin-bar-menu\\/\\\" target=\\\"_blank\\\" rel=\\\"noreferrer noopener\\\">Hide Admin Bar Menu<\\/a>.<\\/li>\\n<li>Disabled certain features from running on WooCommerce cart, checkout, and account pages for better compatibility.<\\/li>\\n<li>Increased site limit in dropdowns on Multisite network settings page.<\\/li>\\n<li>Added additional compatibility styles to the Script Manager.<\\/li>\\n<li>Added additional built-in exclusions for Remove Unused CSS for better compatibility with Elementor, Astra, Kadence, and GenerateBlocks.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_login_url\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_login_url<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_lazyload_noscript\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_lazyload_noscript<\\/a> filter.<\\/li>\\n<li>Fixed an issue where YouTube preview thumbnails were generating a preload warning in certain instances.<\\/li>\\n<li>Fixed an issue that was causing analytics.js not to be served over HTTPS in instances where an SSL migration had been done previously on the site.<\\/li>\\n<li>Fixed an issue where delayed style attribute was applied to preloaded stylesheets that already existed in the DOM.<\\/li>\\n<li>Fixed an issue where some features were being allowed to run on XML sitemap URLs in certain cases.<\\/li>\\n<li>Fixed an issue where theme and plugin files were not falling back to a WordPress version query string when present in a dynamic preload.<\\/li>\\n<\\/ul>\\n<p>1.9.9<\\/p>\\n<ul>\\n<li>Added additional autosave interval options.<\\/li>\\n<li>Added WPBakery query string parameter to excluded page builders array.<\\/li>\\n<li>Changed certain lazy loading classes to be more specific to prevent conflicts.<\\/li>\\n<li>Adjusted lazy loading image attribute filter to not run unless images specifically are meant to be lazy loaded by Perfmatters.<\\/li>\\n<li>Added an additional function_exists check in the JS class to prevent an error from being thrown in some cases.<\\/li>\\n<\\/ul>\\n<p>1.9.8<\\/p>\\n<ul>\\n<li>Made adjustments to the CSS Background Image styles to work with some changes in the latest version of our lazy loading library.<\\/li>\\n<li>Fixed an issue that was preventing quotations from being stripped from background image URLs when prepping an inline background image for lazy loading.<\\/li>\\n<li>Fixed an issue where delayed CSS was not loading properly when using individual JS delay.<\\/li>\\n<li>Fixed an error that was being logged in some cases when checking for an active plugin in the JS class.<\\/li>\\n<\\/ul>\\n<p>1.9.7<\\/p>\\n<ul>\\n<li>Made an adjustment to how inline background images are prepped to work with some changes in the latest version of our lazy loading library.<\\/li>\\n<\\/ul>\\n<p>1.9.6<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_delay_js_delay_click\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_delay_js_delay_click<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_local_stylesheet_url\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_local_stylesheet_url<\\/a> filter.<\\/li>\\n<li>Made some performance improvements to the way the lazy loading script and inline code are loaded.<\\/li>\\n<li>Added additional compatibility for Elementor animations when using Delay JS.<\\/li>\\n<li>Added additional details in the Script Manager global view for individual stored settings.<\\/li>\\n<li>Added the ability to identify and clear outdated post IDs set in the Script Manager options from the global view.<\\/li>\\n<li>Script Manager global view organization and style improvements.<\\/li>\\n<li>Updated lazy loading library to version 17.8.<\\/li>\\n<li>Updated instant.page library to version 5.1.1.<\\/li>\\n<li>Added Bricks query string parameter to excluded page builders array.<\\/li>\\n<li>Fixed an issue that was causing the cache directory to not create unique subsite paths for specific multisite setups.<\\/li>\\n<li>Fixed an issue where delayed stylesheets were not being loaded if Delay JS was toggled off in the post meta options.<\\/li>\\n<\\/ul>\\n<p>1.9.5<\\/p>\\n<ul>\\n<li>Added additional logic to Delay JS script to make sure the initial interaction is processed.<\\/li>\\n<li>Added additional styles to CSS Background Image feature to work with background images set on ::before selectors.<\\/li>\\n<li>Added additional default tags to various dropdowns in plugin settings for better clarification.<\\/li>\\n<li>Added default arrays for stylesheet and selector exclusions that are always needed.<\\/li>\\n<li>Adjusted perfmatters_cdn filter location for compatibility.<\\/li>\\n<li>Made some adjustments to CDN Rewrite Regex to fix some issues where unwanted strings were getting picked up as URLs in some cases.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>1.9.4<\\/p>\\n<ul>\\n<li>Updated EDD plugin updater class to version 1.9.2.<\\/li>\\n<li>Added default exclusion to REST API option for compatibility.<\\/li>\\n<\\/ul>\\n<p>1.9.3<\\/p>\\n<ul>\\n<li>Remove Used CSS filter adjustment to fix an issue where certain WordPress post functions wouldn\'t be available when trying to selectively disable the feature.<\\/li>\\n<li>Rolled back minor plugin UI JavaScript addition, as it was interfering with entering data on multiple lines in certain input fields.<\\/li>\\n<\\/ul>\\n<p>1.9.2<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_allow_buffer https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_used_css\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_used_css<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_allow_buffer\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_allow_buffer<\\/a> filter.<\\/li>\\n<li>Added a notice in the Script Manager when Testing Mode is enabled.<\\/li>\\n<li>Improved reliability of CSS Background Image function when child elements with additional background images are present.<\\/li>\\n<li>Script Manager style compatibility fixes.<\\/li>\\n<li>Fixed an issue where some post specific meta options were not being respected when determining if a feature should run.<\\/li>\\n<li>Fixed an issue where pressing enter on the main plugin settings page would trigger a specific form action instead of save settings.<\\/li>\\n<li>Changed CSS class initialization hook to be in the correct order with other output buffer functions.<\\/li>\\n<li>Made an adjustment to how we generate the local used stylesheet URL for better compatibility.<\\/li>\\n<li>Fixed an issue where loading attribute was still getting applied to images that were excluded from lazy loading.<\\/li>\\n<li>Fixed an issue where images inside an excluded picture element were not also getting excluded.<\\/li>\\n<li>Fixed an issue in the Script Manager where archives were not being grouped together with their respective post type.<\\/li>\\n<li>Additions to plugin UI JavaScript to allow for disabled sections to be hidden even when nested controllers are present.<\\/li>\\n<li>Moved background process library to composer autoloader.<\\/li>\\n<li>Removed BETA tag from Remove Unused CSS option.<\\/li>\\n<\\/ul>\\n<p>1.9.1<\\/p>\\n<ul>\\n<li>Added new option to lazy load <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/lazy-load-wordpress\\/#css-background-images\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">CSS Background Images<\\/a>.<\\/li>\\n<li>Added new option for <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/local-analytics\\/#dual-tracking\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Dual Tracking<\\/a> when using gtag.js in local analytics.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_rest_api_exceptions\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_rest_api_exceptions<\\/a> filter.<\\/li>\\n<li>Fixed an issue where individually delayed local scripts would not get correctly rewritten to load from the CDN.<\\/li>\\n<li>Fixed an issue where lazy loading would run into an error if no px or % was specified with the threshold value.<\\/li>\\n<li>Fixed an issue with buffer validation that was conflicting with certain caching setups.<\\/li>\\n<li>Fixed an issue where existing font preconnect and prefetch tags were not being detected properly when using Local Fonts.<\\/li>\\n<li>Fixed an error related to cookie constants when running MU Mode in certain environments.<\\/li>\\n<li>Fixed multiple AMP validation errors and added additional checks to prevent certain functions from running on AMP URLs.<\\/li>\\n<li>Minor adjustment to CDN rewrite regex pattern to work with encoded quotation characters.<\\/li>\\n<li>Changed toggle CSS selectors to be more specific to prevent conflicts.<\\/li>\\n<li>Moved plugin settings header output to in_admin_header action hook for compatibility.<\\/li>\\n<li>Moved JS optimization functions to new class structure to be more inline with current codebase.<\\/li>\\n<li>Improvements to critical image preloading allowed for a move to a singular output buffer.<\\/li>\\n<\\/ul>\\n<p>1.9.0<\\/p>\\n<ul>\\n<li>Fixed an issue that was causing excluded selectors to not be recognized properly after Used CSS was cleared.<\\/li>\\n<li>Minor adjustments to the new plugin UI.<\\/li>\\n<\\/ul>\\n<p>1.8.9<\\/p>\\n<ul>\\n<li>Updated plugin settings UI.<\\/li>\\n<li>Added new post meta option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/remove-unused-css\\/#clear-individual\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Clear Used CSS<\\/a> for an individual page or post type.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_rucss_excluded_selectors\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_rucss_excluded_selectors<\\/a> filter.<\\/li>\\n<li>Fixed a lazy loading issue that was preventing some images from loading properly in Safari.<\\/li>\\n<li>Migrated Delay JS Timeout dropdown to a simpler on\\/off toggle that will default to 10 seconds. Our filter is also still available to set a custom timeout value.<\\/li>\\n<li>Fixed an issue with MU plugin that was interfering with rewrite rules in some instances.<\\/li>\\n<li>Added additional excluded page builder parameter for Flatsome UX.<\\/li>\\n<li>Moved restore default functionality to a separate option on the tools page.<\\/li>\\n<li>Code refactoring.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>1.8.8<\\/p>\\n<ul>\\n<li>Changed default setting for Used CSS Method from file to inline, as we think this will be the more compatible solution for most users going forward. If you were previously using the file method, you may need to save that option again.<\\/li>\\n<li>Added width and height parameters to placeholder SVGs to prevent warnings for a ratio mismatch that would happen for some images.<\\/li>\\n<li>Fixed an issue where the noscript tags were getting malformed for some images inside picture tags after lazy loading.<\\/li>\\n<li>Removed placeholder SVGs on source tags since the image tag will already have one.<\\/li>\\n<li>Changed settings export file name date format to be easier to organize when managing multiples.<\\/li>\\n<li>Updated tooltip for Blank Favicon option to be more clear.<\\/li>\\n<\\/ul>\\n<p>1.8.7<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/remove-unused-css\\/#css-method\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Used CSS Method<\\/a> option to choose whether to load used CSS from a file or inline.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_cache_path\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_cache_path<\\/a> filter.<\\/li>\\n<li>Updated metabox functions to restrict metabox display to administrators only.<\\/li>\\n<li>Made some adjustments to custom login URL function to better support 3rd party tools using WP CLI.<\\/li>\\n<li>Added Fusion Builder query string parameters to excluded page builders array.<\\/li>\\n<li>Adjusted Unused CSS regex to be more consistent when stylesheets are placed in between other link tags.<\\/li>\\n<li>Changes to instances where ABSPATH was used to determine a directory location for better compatibility with certain hosts.<\\/li>\\n<li>Fixed an issue with Remove Global Styles option where duotone SVGs were not being removed on WordPress 5.9.2.<\\/li>\\n<li>Fixed an issue where WooCommerce block stylesheets were not getting correctly dequeued when Disable Scripts option was set.<\\/li>\\n<li>Fixed an issue that was causing the CSS Parser library not to get included correctly in certain cases.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>1.8.6<\\/p>\\n<ul>\\n<li>Added new option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/remove-global-inline-styles-wordpress\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Remove Global Styles<\\/a> related to duotone filters.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_script_manager_locale\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_script_manager_locale<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_disable_woocommerce_scripts\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_disable_woocommerce_scripts<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_page_builders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_page_builders<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_delay_js_behavior\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_delay_js_behavior<\\/a> filter.<\\/li>\\n<li>Fixed an issue with the unused CSS parser that was incorrectly rewriting relative URLs if there was no query string present on the original stylesheet src.<\\/li>\\n<li>Added additional parameter to page builders array for compatibility.<\\/li>\\n<li>Fixed an issue that was causing the login URL disabled 404 behavior to result in an error if a 404 template was not found.<\\/li>\\n<li>Added some additional checks before creating cache directories for local fonts and used CSS.<\\/li>\\n<li>Fixed an issue that was causing the fade-in effect to conflict with child images inside a lazy loaded container.<\\/li>\\n<li>Fixed an undefined index warning coming from unused CSS settings update function.<\\/li>\\n<li>Added a default delay JS exclusion for admin only inline customize-support script.<\\/li>\\n<li>Refactored entire meta.php code to be more efficient (38% smaller) and in line with current structure.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>1.8.5<\\/p>\\n<ul>\\n<li>Added new feature to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/remove-unused-css\\/#remove-unused-css\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Remove Unused CSS<\\/a> (BETA).<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_remove_unused_css\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_remove_unused_css<\\/a> filter.<\\/li>\\n<li>Adjusted CDN Rewrite buffer priority for better compatibility with other features.<\\/li>\\n<li>Made an improvement to the Disable XML-RPC function to return a 403 error when xmlrpc.php is accessed directly.<\\/li>\\n<li>Script Manager stylesheet updates for better compatibility.<\\/li>\\n<li>Fixed an issue in the Script Manager where the input controls were sometimes not displaying after toggling a script off.<\\/li>\\n<li>Added additional style for YouTube preview thumbnail play button to fix an alignment issue with certain setups.<\\/li>\\n<li>Buffer adjustments for compatibility.<\\/li>\\n<\\/ul>\\n<p>1.8.4<\\/p>\\n<ul>\\n<li>Fixed an issue that was interfering with sitemap display in certain configurations.<\\/li>\\n<li>Added &lt;a&gt; element support for lazy loading inline background images.<\\/li>\\n<\\/ul>\\n<p>1.8.3<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_fade_in_speed\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_fade_in_speed<\\/a> filter.<\\/li>\\n<li>Fixed an issue that was preventing lazy loading fade in from working correctly with certain background images.<\\/li>\\n<li>Fixed an issue that was interfering with the display of certain inline SVG elements.<\\/li>\\n<li>Adjusted local analytics hook priority for better compatibility.<\\/li>\\n<li>Script Manager style updates for better compatibility.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>1.8.2<\\/p>\\n<ul>\\n<li>New Lazy Loading option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/lazy-load-wordpress\\/#exclude-leading-images\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Exclude Leading Images<\\/a>.<\\/li>\\n<li>New Lazy Loading option to add a <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/lazy-load-wordpress\\/#fade-in\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Fade In<\\/a> effect.<\\/li>\\n<li>New option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/preload\\/#critical-images\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Preload Critical Images<\\/a> (BETA).<\\/li>\\n<li>Expanded Disable XML-RPC function to also remove pingback link tag if it is present in the document.<\\/li>\\n<li>Added new Delay JavaScript checkbox to meta options in the post editor.<\\/li>\\n<li>Added additional integration with perfmatters_delay_js filter.<\\/li>\\n<li>Moved YouTube autoplay parameter placement on lazy loaded iframes for better compatibility with existing query strings.<\\/li>\\n<li>Optimizations to lazy loading inline CSS functions.<\\/li>\\n<li>Various optimizations and improvements to the output buffer.<\\/li>\\n<li>Migrated manual preload functionality to use the output buffer which will allow for easier integration with new features.<\\/li>\\n<li>Made some adjustments to MU plugin functions to more reliably detect post IDs when using specific permalink setups.<\\/li>\\n<li>Fixed an issue where some Current URL links in the Script Manager\'s Global View were not pointing to the right posts.<\\/li>\\n<li>Fixed an issue with a certain endpoint that was redirecting to the custom login URL.<\\/li>\\n<li>Fixed a PHP notice that was sometimes appearing when refreshing local fonts.<\\/li>\\n<li>Removed BETA tag from Delay All JS option.<\\/li>\\n<\\/ul>\\n<p>1.8.1<\\/p>\\n<ul>\\n<li>Updated Local Google Font function to more effectively remove existing font preconnect and prefetch tags.<\\/li>\\n<li>Updated Local Google Font function for better compatibility with sites that still have remnants from a previous http to https migration.<\\/li>\\n<li>Fixed an issue in the Script Manager where the home page was being treated as a post if set to display the blog feed.<\\/li>\\n<\\/ul>\\n<p>1.8.0<\\/p>\\n<ul>\\n<li>Fixed an issue with Delay All JS that was preventing certain async scripts from fully loading.<\\/li>\\n<\\/ul>\\n<p>1.7.9<\\/p>\\n<ul>\\n<li>Added new options to the Script Manager to disable assets directly by post type, archive, user status, and device type.<\\/li>\\n<li>Added support for dynamic preloading by handle for enqueued scripts and styles.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_lazyload\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_lazyload<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_cdn\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_cdn<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_delay_js_timeout\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_delay_js_timeout<\\/a> filter.<\\/li>\\n<li>Fix to Delay All JS script for better compatibility with certain page builder animations.<\\/li>\\n<li>Updated class initialization for better compatibility.<\\/li>\\n<li>Fixed an issue where the Script Manager was interpreting certain array keys as shortcodes if they were identical.<\\/li>\\n<li>Added an additional check to prevent the Script Manager from being able to load on top of a page builder.<\\/li>\\n<li>Fixed a PHP notice coming from the MU plugin.<\\/li>\\n<li>Made some changes to our plugin updater function that should help with auto-updates in a multisite environment.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>1.7.8<\\/p>\\n<ul>\\n<li>Added new option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/missing-width-height-images\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Add Missing Image Dimensions<\\/a>.<\\/li>\\n<li>Added the ability to delete individual Script Manager options from the Global View.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_delay_js\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_delay_js<\\/a> filter.<\\/li>\\n<li>Updated EDD plugin updater class to version 1.9.0.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>1.7.7<\\/p>\\n<ul>\\n<li>Fixed a PHP warning related to JavaScript deferral for specific configurations.<\\/li>\\n<li>Fixed an issue with lazy loading exclusions not being loaded correctly in some cases.<\\/li>\\n<\\/ul>\\n<p>1.7.6<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/delay-javascript\\/#behavior\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Delay Behavior<\\/a> dropdown with a new option to Delay All Scripts.<\\/li>\\n<li>Added new Lazy Loading <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/lazy-load-wordpress\\/#threshold\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Threshold<\\/a> option and adjusted the default value if not set to improve performance.<\\/li>\\n<li>Added confirmation message when manually running the database optimization tool.<\\/li>\\n<li>Updated disable emoji function to get rid of a PHP notice.<\\/li>\\n<li>Added additional check to MU Mode to only filter GET requests.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/defer-javascript-wordpress\\/#perfmatters_defer_js-filter\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_defer_js<\\/a> filter.<\\/li>\\n<li>Fixed an issue where Instant Page was attempting to run on the new widgets screen in WordPress 5.8.<\\/li>\\n<li>Fixed an issue with Local Google Fonts where certain invalid font URLs would still attempt to be downloaded and served.<\\/li>\\n<li>Removed BETA tag from fonts section.<\\/li>\\n<li>Delay JavaScript compatibility improvements.<\\/li>\\n<li>Added additional input validation functionality to plugin settings page.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>1.7.5<\\/p>\\n<ul>\\n<li>Added new custom login URL options to change the <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/change-wordpress-login-url\\/#disabled-behavior\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Disabled Behavior<\\/a> and set a custom <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/change-wordpress-login-url\\/#message\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Message<\\/a>.<\\/li>\\n<li>Migrated CDN, Analytics, and Extras tab data to separate sections in the Options tab for better organization and easier access.<\\/li>\\n<li>CDN rewrite improvements to better handle sites with multiple domain URLs.<\\/li>\\n<li>Regex adjustments to Local Fonts function for better reliability.<\\/li>\\n<li>Added exclusion checks to individual &lt;source&gt; tags when using WebP images.<\\/li>\\n<li>Added function to disable capital_P_dangit filter.<\\/li>\\n<li>Fixed a lazy loading warning that was showing in Microsoft Edge.<\\/li>\\n<li>Removed loading attribute that was getting applied to &lt;picture&gt; tags in some cases when using WebP images.<\\/li>\\n<li>Plugin UI navigation performance improvements.<\\/li>\\n<li>Plugin UI style fixes.<\\/li>\\n<li>Added a conditional check to only show WooCommerce options when WooCommerce is installed and activated.<\\/li>\\n<li>Fixed an MU Mode issue where the Home URL did not trigger a match if a query string was present.<\\/li>\\n<li>Fixed an issue where the Customizer was getting certain optimizations applied.<\\/li>\\n<li>Fixed an issue where the Disable Embeds toggle was interfering with responsive video styles.<\\/li>\\n<li>Script Manager UI fixes.<\\/li>\\n<li>Updated uninstall function to remove Perfmatters cache folder.<\\/li>\\n<li>Added readme.txt file.<\\/li>\\n<\\/ul>\\n<p>1.7.4<\\/p>\\n<ul>\\n<li>Re-enabled Local Google Fonts functionality.<\\/li>\\n<li>Refactoring of buffer-related code and various functions that were already using our main buffer filter.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>1.7.3<\\/p>\\n<ul>\\n<li>Rolled back the latest changes related to the new universal buffer class and Local Google Fonts while we do some more in-depth testing. We\'ll be working to release this feature next week using an alternative method.<\\/li>\\n<\\/ul>\\n<p>1.7.2<\\/p>\\n<ul>\\n<li>Added new Fonts section inside of the main Options tab.<\\/li>\\n<li>Added new option to use <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/font-display-swap\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Display Swap<\\/a> for Google fonts.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/host-google-fonts-locally\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Local Google Fonts<\\/a> option which will attempt to download any Google Font files and serve them from your local server or CDN.<\\/li>\\n<li>Integrated new universal HTML buffer library to help going forward with plugin features that manipulate DOM elements.<\\/li>\\n<li>Migrated CDN Rewrite feature to the universal buffer class.<\\/li>\\n<li>Added new perfmatters_delayed_scripts filter to modify the Delay JavaScript input array before any scripts are delayed.<\\/li>\\n<li>Added new perfmatters_preload filter to modify the Preloads data array before anything is printed.<\\/li>\\n<li>Made some compatibility improvements to the inline lazy loading JavaScript.<\\/li>\\n<li>Added attributes to delayed scripts to exclude them from being picked up by Litespeed Cache.<\\/li>\\n<li>Added exclusion for SiteGround Optimizer to the main Script Manager JavaScript file.<\\/li>\\n<li>Added CodeMirror support to all code text area inputs in plugin settings.<\\/li>\\n<li>Removed license activation check and corresponding links from the plugins page to improve back-end performance.<\\/li>\\n<\\/ul>\\n<p>1.7.1<\\/p>\\n<ul>\\n<li>Added expiration date row to license tab in plugin settings.<\\/li>\\n<li>Added support for WooCommerce shop page when setting a preload location by post ID.<\\/li>\\n<li>Fixed an issue with device exceptions not working correctly in MU Mode.<\\/li>\\n<li>Fixed a query string encoding issue that was affecting some email templates when using a custom login URL.<\\/li>\\n<\\/ul>\\n<p>1.7.0<\\/p>\\n<ul>\\n<li>Fixed an issue where Preload tags were still being printed on archive pages even if a location was set.<\\/li>\\n<li>Fixed a compatibility issue with older WordPress versions when using certain functions that check for a JSON request.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>1.6.9<\\/p>\\n<ul>\\n<li>New additions to preload feature, allowing specification for device type and location.<\\/li>\\n<li>Script Manager improvements to allow for Regex disable to be used alongside Current URL disables for the same script.<\\/li>\\n<li>Added new Script Manager exception for device type.<\\/li>\\n<li>Add new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/delay-javascript\\/#timeout\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Delay Timeout<\\/a> option when delaying JavaScript.<\\/li>\\n<li>Added new wheel event to user interaction script for delay function.<\\/li>\\n<li>Added new multisite network administration tool to apply default site settings to all subsites.<\\/li>\\n<li>Multiple improvements to WooCommerce disable scripts toggle for increased effectiveness.<\\/li>\\n<li>Added additional exclusions for JSON and REST requests to all asset optimization functions.<\\/li>\\n<li>Fixed an undefined index warning coming from local analytics function.<\\/li>\\n<li>Fixed an issue where YouTube preview thumbnails were getting a layout shift warning when using a theme with responsive embed support.<\\/li>\\n<li>Fixed a Script Manager bug that was not fully clearing exceptions when changing disable away from everywhere.<\\/li>\\n<li>Script Manager styling compatibility fixes.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>1.6.8<\\/p>\\n<ul>\\n<li>Compatibility fixes for local analytics when using MonsterInsights.<\\/li>\\n<li>Local analytics improvements for multisite.<\\/li>\\n<li>Added alt tag to YouTube preview thumbnail images.<\\/li>\\n<li>Fixed a PHP undefined index notice coming from functions.php.<\\/li>\\n<li>Translation file updates.<\\/li>\\n<\\/ul>\\n<p>1.6.7<\\/p>\\n<ul>\\n<li>Added new tool to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/purge-meta-options\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Purge Perfmatters Meta Options<\\/a>.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/disable-google-maps-api-wordpress\\/#exclude\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Exclude Post IDs<\\/a> input for existing Disable Google Maps option.<\\/li>\\n<li>Added new gtag.js option to local analytics script type selection.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/local-analytics\\/#gtag-cdn\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">CDN URL<\\/a> input to local analytics options when using gtag.js.<\\/li>\\n<li>Added new option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/local-analytics\\/#amp\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Enable AMP Support<\\/a> to local analytics.<\\/li>\\n<li>Moved Use MonsterInsights option to gtag.js script type and updated script replacement hook.<\\/li>\\n<li>Added onload function to style preloads to prevent duplicate preloads from occurring.<\\/li>\\n<li>Added exception for WP Rocket script deferral to our lazy load script.<\\/li>\\n<li>Added exception for site health tool to disable heartbeat function.<\\/li>\\n<li>Fixed an issue where background images weren\\u2019t being lazy loaded if the style attribute was the first attribute declared on the element.<\\/li>\\n<li>Script Manager styling fixes.<\\/li>\\n<li>Fixed a PHP warning coming from settings.php.<\\/li>\\n<li>Translation file updates.<\\/li>\\n<\\/ul>\\n<p>1.6.6<\\/p>\\n<ul>\\n<li>Added new Script Manager exception to select <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/script-manager-logged-in-logged-out\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">logged in or logged out<\\/a> users.<\\/li>\\n<li>Added new option in Script Manager settings to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/script-dependencies\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Display Dependencies<\\/a>.<\\/li>\\n<li>Added total plugin sizes in the Script Manager.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/lazy-load-wordpress\\/#viewport-threshold\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_lazyload_threshold<\\/a> filter to adjust the distance at which lazy elements are loaded.<\\/li>\\n<li>Multiple Script Manager style and UI improvements.<\\/li>\\n<li>Fixed an issue where MU mode script was attempting to run on wp-login.php.<\\/li>\\n<li>Multiple page builder compatibility fixes.<\\/li>\\n<li>Made an adjustment to prevent YouTube preview thumbnails from getting picked up by Pinterest image hover tools.<\\/li>\\n<li>Removed deprecated plugin option to Remove Query Strings. Make sure to double-check your preloads as Google needs the exact URL when preloading.<\\/li>\\n<li>PHP 8 compatibility testing.<\\/li>\\n<li>Minor adjustments to lazy load inline scripts to fix invalid markup warnings.<\\/li>\\n<\\/ul>\\n<p>1.6.5<\\/p>\\n<ul>\\n<li>Added new option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/delay-javascript\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Delay JavaScript<\\/a> from loading until user interaction.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/local-analytics\\/#script-type\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">gtag.js v4<\\/a> option to local analytics.<\\/li>\\n<li>Added new built-in option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/lazy-load-wordpress\\/#exclude\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Exclude from Lazy Loading<\\/a> which can be used in addition to the existing filter.<\\/li>\\n<li>Add new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/lazy-load-wordpress\\/#youtube-preview-thumbnails\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_lazyload_youtube_thumbnail_resolution<\\/a> filter to adjust YouTube preview thumbnail quality.<\\/li>\\n<li>Optimized analytics updater function.<\\/li>\\n<li>Updated EDD plugin updater class which will now allow for WordPress auto-update support.<\\/li>\\n<li>Removed option to Defer Inline JavaScript which is now being replaced by the new Delay JavaScript option.<\\/li>\\n<li>Adjusted Script Manager hook priority for better compatibility.<\\/li>\\n<li>Compatability fix to the DOM Monitoring lazy load option.<\\/li>\\n<li>Added compatibility fix for jQuery fitVids to lazy loading function.<\\/li>\\n<li>Fixed an issue where lazy loading was attempting to run on AMP pages.<\\/li>\\n<\\/ul>\\n<p>1.6.4<\\/p>\\n<ul>\\n<li>Fixed an issue that was causing the Reset Script Manager button to not work correctly.<\\/li>\\n<li>Fixed an issue where the Perfmatters meta box wouldn\'t display if only using Lazy Loading.<\\/li>\\n<li>Adjusted Script Manager hook priority for better compatibility.<\\/li>\\n<li>Added additional checks to MU Mode plugin file to prevent it from interfering with certain REST API requests. (Fixes a bug when running the Yoast SEO data indexer.)<\\/li>\\n<li>Added additional checks to confirm user functions are available before verifying admin status.<\\/li>\\n<li>Updated translation files.<\\/li>\\n<\\/ul>\\n<p>1.6.3<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/testing-mode\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Testing Mode<\\/a> option to the Script Manager settings.<\\/li>\\n<li>Rewrote script-manager.js entirely using vanilla JavaScript to get rid of jQuery dependency.<\\/li>\\n<li>Added additional MU Mode check to help prevent certain configurations from interfering with AJAX requests.<\\/li>\\n<li>Improved Script Manager form handling.<\\/li>\\n<li>Adjusted Script Manager disclaimer text and added a close button.<\\/li>\\n<li>Moved the Script Manager print function from the wp_footer hook to shutdown for better compatibility.<\\/li>\\n<li>Fixed an undefined index warning in the Lazy Load function.<\\/li>\\n<li>Added a Lazy Load exclusion for Gravity Forms iframes.<\\/li>\\n<li>Added a Rocket Loader exclusion to the Instant Page JS file.<\\/li>\\n<li>Added an exclusion to the CDN Rewrite for script-manager.js.<\\/li>\\n<li>Script Manager styling fixes for better compatibility.<\\/li>\\n<\\/ul>\\n<p>1.6.2<\\/p>\\n<ul>\\n<li>Updated placeholder text in Preload UI.<\\/li>\\n<li>Fixed an issue where the Password Strength Meter script was getting disabled in the admin.<\\/li>\\n<li>Small tweak to JS Deferral buffer to make sure HTML is being filtered correctly.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>1.6.1<\\/p>\\n<ul>\\n<li>New Local Analytics Script Type toggle with new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/local-analytics\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Minimal Analytics<\\/a> options.<\\/li>\\n<li>New <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/defer-javascript-wordpress\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">JavaScript Deferral<\\/a> options in Extras &gt; Assets.<\\/li>\\n<li>Updates to Cart Fragments and Password Strength Meter toggles to improve effectiveness.<\\/li>\\n<li>Multiple updates to Instant Page functionality for better compatibility.<\\/li>\\n<li>Multiple plugin admin UI updates and improvements.<\\/li>\\n<li>Script Manager style updates for better compatibility.<\\/li>\\n<li>MU Mode improvements for increased stability.<\\/li>\\n<li>Fixed an issue causing Preload and Preconnect settings to not save correctly in some cases.<\\/li>\\n<\\/ul>\\n<p>1.6.0<\\/p>\\n<ul>\\n<li>Added a filter to disable WordPress\' native lazy loading when Perfmatters\' lazy loading is active.<\\/li>\\n<li>Adjusted Script Manager styles to more effectively overlay the entire page while still allowing admin bar functions to be fully available.<\\/li>\\n<li>Fixed an undefined index notice that was appearing on specific lazy loading and script manager functions.<\\/li>\\n<li>Updated translation files.<\\/li>\\n<\\/ul>\\n<p>1.5.9<\\/p>\\n<ul>\\n<li>Added new Preloading section in the Extras tab, with new options for <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/link-prefetch\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Instant Page<\\/a> and <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/preload\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Preload<\\/a>.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/lazy-load-wordpress\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_lazyload_forced_attributes<\\/a> filter to allow for matched elements to be skipped when checking for exclusions.<\\/li>\\n<li>Added support for WooCommerce Shop page to show up as a Current URL option in the Script Manager.<\\/li>\\n<li>Added exclusions for REST and AJAX requests to MU Mode function.<\\/li>\\n<li>Fixed a bug that was causing the MU Mode function to still run even if the Script Manager was disabled.<\\/li>\\n<li>Fixed an issue where images were being prepped for lazy loading on feed URLs.<\\/li>\\n<li>Fixed an issue where lazy loading was breaking images in embeds from the same site.<\\/li>\\n<li>Compatibility fixes for lazy load script with Autoptimize and Litespeed Cache.<\\/li>\\n<\\/ul>\\n<p>1.5.8<\\/p>\\n<ul>\\n<li>Added support for lazy loading background images, iframes, and videos.<\\/li>\\n<li>Added new lazy loading option to enable Youtube Preview Thumbnails.<\\/li>\\n<li>Added multiple page builder exclusions to our lazy load functions.<\\/li>\\n<li>Added proper support for 404 templates in the Script Manager (non-MU).<\\/li>\\n<li>Fixed some minor styling issues in the Script Manager UI.<\\/li>\\n<li>Fixed an undefined index in the database optimizer class.<\\/li>\\n<li>Removed customer email row from the license tab.<\\/li>\\n<\\/ul>\\n<p>1.5.7<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/optimize-wordpress-database\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Database Optimization<\\/a> section in the Extras tab.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/lazy-load-wordpress\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">DOM Monitoring<\\/a> option to complement our existing lazy load settings.<\\/li>\\n<li>Added additional input styles in the Script Manager for better compatibility<\\/li>\\n<li>Made some changes to the Script Manager file include process for better compatibility.<\\/li>\\n<li>Fixed multiple undefined index notices.<\\/li>\\n<li>Updated translation files.<\\/li>\\n<\\/ul>\\n<p>1.5.6<\\/p>\\n<ul>\\n<li>Plugin UI improvements, new tooltip styles.<\\/li>\\n<li>Licensing workflow improvements. Simpler UI, license no longer deactivated on plugin deactivation, license auto-activates on input.<\\/li>\\n<li>Moved Script Manager javascript back to a separate plugin file for better compatibility.<\\/li>\\n<li>Added Remove Query Strings exemption to the Script Manager javascript file.<\\/li>\\n<li>Code refactoring.<\\/li>\\n<\\/ul>\\n<p>1.5.5<\\/p>\\n<ul>\\n<li>Added a new modified function to the MU plugin file which should be able to get the current post ID more effectively for certain types of URLs (custom post types, blog page, etc...).<\\/li>\\n<li>Made some improvements to the MU plugin file detection and update process.<\\/li>\\n<\\/ul>\\n<p>1.5.4<\\/p>\\n<ul>\\n<li>Added additional tooltip warning text to the MU Mode toggle.<\\/li>\\n<li>Added <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/mu-mode\\/#debug-mode\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">mu_mode=off<\\/a> URL parameter to force the page to load with MU Mode settings disabled.<\\/li>\\n<li>Added an additi0nal check to make sure MU Mode settings don\'t run if the base Perfmatters plugin is not activated.<\\/li>\\n<\\/ul>\\n<p>1.5.3<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/mu-mode\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">MU Mode<\\/a> (BETA) feature in the Script Manager which can be used to disable plugins per page.<\\/li>\\n<li>Reworked main Script Manager update function to dynamically save settings via AJAX to prevent having to reload the page every time options are saved.<\\/li>\\n<li>Moved Script Manager javascript inline to better support further updates.<\\/li>\\n<li>Fixed an issue in the Script Manager where a Current URL disable would not function correctly for an individual script if the plugin\'s scripts were disabled globally on a different Current URL.<\\/li>\\n<li>Changed hooks for Disable Google Maps and Disable Google Fonts toggles to prevent a conflict with Gutenberg.<\\/li>\\n<li>Added an exclusion attribute to our LazyLoad script to prevent it from conflicting with WP Rocket\'s JS deferral feature.<\\/li>\\n<li>Updated EDD Plugin Updater Class to version 1.7.1.<\\/li>\\n<li>Updated various translation files.<\\/li>\\n<\\/ul>\\n<p>1.5.2<\\/p>\\n<ul>\\n<li>Added new options in Extras \\u2192 Tools to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/import-export\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Import and Export Plugin Settings<\\/a>.<\\/li>\\n<li>Updated Script Manager form input names to be more specific to prevent conflicts when saving Script Manager settings.<\\/li>\\n<li>Added compatibility fix for Beaver Builder to the Script Manager dequeue function.<\\/li>\\n<li>Updated French and German translation files.<\\/li>\\n<\\/ul>\\n<p>1.5.1<\\/p>\\n<ul>\\n<li>Adjusted the Script Manager styles for better compatibility with other admin bar tools when the Script Manager UI is being displayed.<\\/li>\\n<li>Fixed an issue in the Script Manager that was causing individual script settings to not work correctly when the parent group had previously been disabled.<\\/li>\\n<li>Updated Russian (ru_RU) translation files.<\\/li>\\n<li>Updated plugin description.<\\/li>\\n<\\/ul>\\n<p>1.5.0<\\/p>\\n<ul>\\n<li>Fixed a bug that was causing the Script Manager dequeue function to interfere with the query loop in certain cases.<\\/li>\\n<\\/ul>\\n<p>1.4.9<\\/p>\\n<ul>\\n<li>Performance update to Script Manager form submission function which should help dramatically reduce the footprint when saving script configurations.<\\/li>\\n<li>Removed the Current URL option in the Script Manager when loaded on URLs without a valid post ID. (ex. dynamically generated archive templates)<\\/li>\\n<li>Added plugin settings page header with links to Contact and Support.<\\/li>\\n<li>Minor styling fixes in plugin settings UI.<\\/li>\\n<li>Updated Russian (ru_RU) translation files.<\\/li>\\n<\\/ul>\\n<p>1.4.8<\\/p>\\n<ul>\\n<li>Added new \'Body Code\' box in the Extras tab to go along with our existing header + footer boxes to give some more control there.<\\/li>\\n<li>Added some limits to the Script Manager action links in WP Admin to ensure they are only showing up for public post types.<\\/li>\\n<li>Fixed a bug that was causing the admin stylesheet not to load on the network settings page when running on a multisite.<\\/li>\\n<li>Added Russian (ru_RU) translation files. (credit: Sergey Shljahov)<\\/li>\\n<\\/ul>\\n<p>1.4.7<\\/p>\\n<ul>\\n<li>Added an exception for Gravity Forms to the Disable Heartbeat function.<\\/li>\\n<li>Added an exception for Contact Form 7 to the Disable REST API function.<\\/li>\\n<li>Added updated German (de_DE) translation files. (credit: Daniel Luttermann)<\\/li>\\n<\\/ul>\\n<p>1.4.6<\\/p>\\n<ul>\\n<li>Added a specific and more generous threshold for lazy loading.<\\/li>\\n<li>Added some additional dequeues to the Disable WooCommerce function to target inline CSS and JS.<\\/li>\\n<\\/ul>\\n<p>1.4.5<\\/p>\\n<ul>\\n<li>Updated Disable Google Maps and Disable Google Fonts toggles to not run in WP Admin.<\\/li>\\n<li>Turned off native lazy loading by default and added new option to Use Native.<\\/li>\\n<li>Added perfmatters_lazyload_excluded_attributes filter which allows for an array of attribute strings to be given that if found will exclude the matched image\\/s from lazy loading.<\\/li>\\n<li>Made some compatibility improvements to the Script Manager function that gets the ID of the current post.<\\/li>\\n<li>Added perfmatters_get_current_ID filter which allows the user to extend or modify the functionality of the Script Manager\'s current ID function.<\\/li>\\n<\\/ul>\\n<p>1.4.4<\\/p>\\n<ul>\\n<li>Fixed undefined index PHP Notice coming from the Preconnect settings display function.<\\/li>\\n<li>Added additional compatibility with Elementor when using the Script Manager to disable certain Elementor scripts + styles.<\\/li>\\n<li>Added a ignore flag class to all Lazy Load functions. Simply add the \'no-lazy\' class to any image element you want to be exempt from lazy loading.<\\/li>\\n<li>Added validation filter to Login URL input to prevent incompatible characters from being entered.<\\/li>\\n<\\/ul>\\n<p>1.4.3<\\/p>\\n<ul>\\n<li>Fixed an issue with the Lazy Load function that was causing an error with some older PHP versions.<\\/li>\\n<\\/ul>\\n<p>1.4.2<\\/p>\\n<ul>\\n<li>Added new option for <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/lazy-load-wordpress\\/\\\">Lazy Loading<\\/a> images (BETA).<\\/li>\\n<\\/ul>\\n<p>1.4.1<\\/p>\\n<ul>\\n<li>New addition to the Preconnect option, you can now choose to whether or not to add the crossorigin property for each Preconnect URL.<\\/li>\\n<li>Optimization to the loading of Perfmatters admin scripts + styles.<\\/li>\\n<li>Added additional Script Manager styles for better compatibility.<\\/li>\\n<li>Added an additional function for the Custom Login URL to help rewrite certain wp-admin links in specific multisite setups.<\\/li>\\n<li>Reorganized plugin action links in the plugins table.<\\/li>\\n<\\/ul>\\n<p>1.4.0<\\/p>\\n<ul>\\n<li>Fixed an issue where the Current URL Exceptions were not loading correctly after saving in the Script Manager.<\\/li>\\n<\\/ul>\\n<p>1.3.9<\\/p>\\n<ul>\\n<li>Added new Extra options to Add Header Code and Add Footer Code.<\\/li>\\n<li>Added missing blank defaults for DNS Prefetch and Preconnect options.<\\/li>\\n<li>Added functionality to force the Admin Bar to display when the Script Manager is loaded.<\\/li>\\n<li>Script Manager styling adjustments.<\\/li>\\n<li>Added success message on save when the Script Manager options are updated.<\\/li>\\n<li>Added support for 404 page when trying to disable or enable on the Current URL.<\\/li>\\n<\\/ul>\\n<p>1.3.8<\\/p>\\n<ul>\\n<li>Added new option to Disable Comments.<\\/li>\\n<li>Updated a section of the Script Manager to better reflect the Current URL when determining if it is a match for the given regex pattern.<\\/li>\\n<\\/ul>\\n<p>1.3.7<\\/p>\\n<ul>\\n<li>Added links to the Script Manager from the posts list page and post edit page which will take you to the front end and load the Script Manager for the corresponding post.<\\/li>\\n<li>Added warning notices for both WP_POST_REVISIONS and AUTOSAVE_INTERVAL if they are set in Perfmatters while also defined elsewhere.<\\/li>\\n<\\/ul>\\n<p>1.3.6<\\/p>\\n<ul>\\n<li>Added new option to Disable Google Fonts.<\\/li>\\n<li>Removed option to Disable Completely from the Disable REST API dropdown to due core WordPress compatibility issues.<\\/li>\\n<li>Added additional object check to prevent PHP warning in certain cases when using the Separate Archives option in the Script Manager.<\\/li>\\n<li>Added some additional logic to filter duplicate scripts out of the Script Manager master array if they are present.<\\/li>\\n<li>CSS fixes in the Script Manager for better compatibility.<\\/li>\\n<li>Expanded the Script Manager current ID function for better reliability.<\\/li>\\n<\\/ul>\\n<p>1.3.5<\\/p>\\n<ul>\\n<li>Added new Disable REST API option which will disable REST API requests and display an authentication error message if the requester doesn\'t have permission.<\\/li>\\n<li>Added additional action removal to the Remove REST API Links function.<\\/li>\\n<li>Made some changes to the Script Manager save button. It is now fixed on the bottom of the screen for easier access without having to scroll.<\\/li>\\n<li>Additional Script Manager style adjustments.<\\/li>\\n<\\/ul>\\n<p>1.3.4<\\/p>\\n<ul>\\n<li>Minor update to Remove Comment URLs function priority for better compatibility with theme templates.<\\/li>\\n<\\/ul>\\n<p>1.3.3<\\/p>\\n<ul>\\n<li>Added new option to Remove Comment URLs.<\\/li>\\n<li>Added French (fr_FR) language translation.<\\/li>\\n<li>Fixed a PHP warning that would occur when saving Script Manager settings in some instances when Display Archives was also enabled.<\\/li>\\n<\\/ul>\\n<p>1.3.2<\\/p>\\n<ul>\\n<li>Added new option to Add Blank Favicon in the Extras tab.<\\/li>\\n<li>Fixed an issue in the Script Manager Global View where options set for the home page would show up as a 0 with a broken link.<\\/li>\\n<li>Added some additional styles to the main Script Manager view for better compatibility.<\\/li>\\n<\\/ul>\\n<p>1.3.1<\\/p>\\n<ul>\\n<li>Fixed a bug that would sometimes cause an enabled message to display on the front end when using the Regex option in the Script Manager.<\\/li>\\n<\\/ul>\\n<p>1.3.0<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/regex\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Regex<\\/a> option the Script Manager for both disables and exceptions.<\\/li>\\n<li>Added new Reset option in the Script Manager settings which allows for a complete wipe + reset of all configured Script Manager options.<\\/li>\\n<li>Added additional Script Manager styles to improve compatability.<\\/li>\\n<li>Added new status message in Script Manager global view when no options have been set.<\\/li>\\n<\\/ul>\\n<p>1.2.9<\\/p>\\n<ul>\\n<li>Updated uninstallation function to account for new Script Manager settings<\\/li>\\n<li>Updated Google Analytics Disable Display Features function to work correctly with Google\'s new format.<\\/li>\\n<li>Added support to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/local-analytics\\/#monster-insights\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Use MonsterInsights<\\/a> along with Perfmatters local analytics functionality.<\\/li>\\n<li>Added new option in Script Manager settings to Display Archives which will allow you to selectively enable scripts on generated archive pages.<\\/li>\\n<\\/ul>\\n<p>1.2.8<\\/p>\\n<ul>\\n<li>Added mobile + responsive styles to the Script Manager navigation.<\\/li>\\n<li>Added additional styles to the Script Manager for compatibility.<\\/li>\\n<li>Script Manager javascript changes + improvements, specifically for compatibility with sites script minification plugins.<\\/li>\\n<li>Fixed a bug where the Script Manager disclaimer would not turn back on after being switched off.<\\/li>\\n<\\/ul>\\n<p>1.2.7<\\/p>\\n<ul>\\n<li>Small patch to check for a required WP function and include core file if necessary for some setups.<\\/li>\\n<\\/ul>\\n<p>1.2.6<\\/p>\\n<ul>\\n<li>All new Script Manager! View updated documentation at\\u00a0<a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/disable-scripts-per-post-page\\/\\\">https:\\/\\/perfmatters.io\\/docs\\/disable-scripts-per-post-page\\/<\\/a>.<\\/li>\\n<li>Fix to remove Emoji DNS Prefetch when Emojis are disabled<\\/li>\\n<\\/ul>\\n<p>1.2.5<\\/p>\\n<ul>\\n<li>Fixed an issue with the Change Login URL function that was causing an error when using WP-CLI.<\\/li>\\n<li>Added some additional compatibility styles to the Script Manager.<\\/li>\\n<\\/ul>\\n<p>1.2.4<\\/p>\\n<ul>\\n<li>Fixed a bug in the Script Manager that caused Current URL Enable checkboxes to not save properly in certain situations.<\\/li>\\n<li>Updated EDD license functions to process proper SSL verification when calling the WordPress HTTP API.<\\/li>\\n<li>Updated perfmatters_default_options array with new options from recent updates.<\\/li>\\n<li>Removed BETA tag from Local Analytics option.<\\/li>\\n<li>Added more details to the Script Manager Global Settings to see which post IDs and post types have settings assigned to them.<\\/li>\\n<li>Additional styles added to the Script Manager for better compatibility.<\\/li>\\n<li>Updated .pot and translation files.<\\/li>\\n<\\/ul>\\n<p>1.2.3<\\/p>\\n<ul>\\n<li>Bugfix - Rolled back some of the heartbeat changes from the previous update to do some additional testing. Should solve some plugin conflicts that popped up.<\\/li>\\n<\\/ul>\\n<p>1.2.2<\\/p>\\n<ul>\\n<li>Added additional WooCommerce checks for WC specific pages before running disable functions.<\\/li>\\n<li>Changes to the Disable Heartbeat function to avoid causing a script dependency error.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/disable-password-meter-strength\\/\\\">Disable Password Strength Meter<\\/a> option.<\\/li>\\n<li>Fixed an issue that was causing Script Manger dropdown colors to not display correctly when jQuery was disabled.<\\/li>\\n<li>Modified admin notice to print our using \'admin_notices\' hook. (credit: Christian Follmann)<\\/li>\\n<li>Made some adjustments to Script Manager copy to remove unnecessary HTML from the translations. (credit: Christian Follmann)<\\/li>\\n<li>Props to Hasan Basri (<a href=\\\"http:\\/\\/www.hasanbasri93.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\" data-saferedirecturl=\\\"https:\\/\\/www.google.com\\/url?q=http:\\/\\/www.hasanbasri93.com&amp;source=gmail&amp;ust=1530375831273000&amp;usg=AFQjCNHnfwHkAwWtNxgfmCyGrwSm3NEyng\\\">www.hasanbasri93.com<\\/a>) for Indonesian (id_ID) translation.\\u00a0&#x1f44f;<\\/li>\\n<li>Updated translations based on the new .pot file.<\\/li>\\n<li>Various other minor tweaks + improvements.<\\/li>\\n<\\/ul>\\n<p>1.2.1<\\/p>\\n<ul>\\n<li>Updated Local Analytics function to improve compatibility with different server setups.<\\/li>\\n<\\/ul>\\n<p>1.2.0<\\/p>\\n<ul>\\n<li>New option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/local-analytics\\/\\\">Enable Local Analytics<\\/a>, along with a new dedicated Google Analytics tab with various related options.<\\/li>\\n<li>Added some additional logic to redirect RSS Feed URLs when Disable RSS Feeds is toggled on.<\\/li>\\n<li>Fixed an issue that was causing certain email links not to work when using a Custom Login URL.<\\/li>\\n<li>Fixed a bug that was causing the password reset link not to function properly when using a Custom Login URL in a multisite environment.<\\/li>\\n<li>Made some adjustments to the Disable Self Pingbacks function to fix an issue with case sensitivity.<\\/li>\\n<li>Updated text domain for translations in the EDD Updater class.<\\/li>\\n<li>Fixed a bug where the Clean Uninstall option would still show up on individual sites in a multisite environment.<\\/li>\\n<li>Props to\\u00a0PDPK di Mauro Panzarola\\u00a0(<a href=\\\"https:\\/\\/pdpkapp.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\" data-saferedirecturl=\\\"https:\\/\\/www.google.com\\/url?q=https:\\/\\/pdpkapp.com&amp;source=gmail&amp;ust=1526653041476000&amp;usg=AFQjCNHfek6Z-CMgUhd0MwvU5QGK6cm0hg\\\">https:\\/\\/pdpkapp.com<\\/a>) for Italian (it_IT) translation.\\u00a0&#x1f44f;<\\/li>\\n<\\/ul>\\n<p>1.1.9<\\/p>\\n<ul>\\n<li>Perfmatters is now translation ready! If you are interested in helping out with a translation, please <a href=\\\"https:\\/\\/perfmatters.io\\/contact\\/\\\">contact us<\\/a>.<\\/li>\\n<li>Props to Christian Foellmann (<a href=\\\"https:\\/\\/github.com\\/cfoellmann\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">cfoellmann@GitHub<\\/a>) for German (de_DE) translation.\\u00a0&#x1f44f;<\\/li>\\n<li>Fixed a PHP undefined index warning in the Script Manager.<\\/li>\\n<li>Fixed a bug that was causing issues with the Change Login URL slug when using certain permalink settings.<\\/li>\\n<\\/ul>\\n<p>1.1.8<\\/p>\\n<ul>\\n<li>Fixed a compatibility issue with Script Manager dequeue priority that could cause it to not function properly.<\\/li>\\n<li>Minor update to the uninstall function.<\\/li>\\n<\\/ul>\\n<p>1.1.7<\\/p>\\n<ul>\\n<li>Fixed a bug that was causing the remove query strings option to conflict with files that have necessary query string parameters (Google Fonts).<\\/li>\\n<\\/ul>\\n<p>1.1.6<\\/p>\\n<ul>\\n<li>Added new Clean Uninstall option in the extras tab.<\\/li>\\n<li>Added new Preconnect option in the extras tab.<\\/li>\\n<\\/ul>\\n<p>1.1.5<\\/p>\\n<ul>\\n<li>Fixed multiple PHP warnings related to settings + option initialization.<\\/li>\\n<\\/ul>\\n<p>1.1.4<\\/p>\\n<ul>\\n<li>Added multisite support with the ability to manage default network settings and network access control.<\\/li>\\n<li>Made some adjustments to plugin naming conventions throughout WordPress admin screens, menus, etc...<\\/li>\\n<li>Removed BETA tag on Change Login URL option.<\\/li>\\n<\\/ul>\\n<p>1.1.3<\\/p>\\n<ul>\\n<li>Added new Change Login URL (BETA) feature to change your WordPress login URL and block the default wp-admin and wp-login endpoints from being directly accessed.<\\/li>\\n<li>Added new Disable Dashicons feature to disable Dashicons from the front end when not logged in.<\\/li>\\n<\\/ul>\\n<p>1.1.2<\\/p>\\n<ul>\\n<li>Added character masking to the license key input field.<\\/li>\\n<\\/ul>\\n<p>1.1.1<\\/p>\\n<ul>\\n<li>Added new CDN URL Rewrite feature in a new settings tab with various settings to customize your configuration.<\\/li>\\n<li>Added new Global Settings section in the Script Manager with a visual representation of the Script Manager options set across the entire site.<\\/li>\\n<li>Made some updates to the Script Manager layout in preparation for future additional features.<\\/li>\\n<\\/ul>\\n<p>1.1.0<\\/p>\\n<ul>\\n<li>Added new Disable Google Maps toggle.<\\/li>\\n<li>Added some backend logic to the Script Manager to hide scripts that have already been disabled sitewide via the main plugin settings.<\\/li>\\n<li>Update to the EDD license activation function variables to help prevent activation conflicts with other plugins.<\\/li>\\n<\\/ul>\\n<p>1.0.9<\\/p>\\n<ul>\\n<li>Removed the toggle to disable WooCommerce reviews, as there is already a WooCommerce setting that provides that functionality.<\\/li>\\n<\\/ul>\\n<p>1.0.8<\\/p>\\n<ul>\\n<li>Added new WooCommerce section to the options tab with multiple toggles to disable or limit certain WooCommerce scripts and functionality.<\\/li>\\n<li>Added some new styles to the plugin admin page to allow for clearer organization of different sections.<\\/li>\\n<li>Fixed an undefined index notice in the Script Manager.<\\/li>\\n<li>Added some additional styles to the checkboxes in the Script Manager to fix a theme compatibility issue.<\\/li>\\n<\\/ul>\\n<p>1.0.7<\\/p>\\n<ul>\\n<li>Added functionality to remove the shortlink\\u00a0HTTP header when \'Remove Shortlink\' is toggled on.<\\/li>\\n<li>Added functionality to remove the xmlrpc.php link as well as the X-Pingback HTTP header when \'Disable XML-RPC\' is toggled on.<\\/li>\\n<\\/ul>\\n<p>1.0.6<\\/p>\\n<ul>\\n<li>Removed BETA label from Script Manager.<\\/li>\\n<li>Added new \'DNS Prefetch\' option in the Extras tab.<\\/li>\\n<\\/ul>\\n<p>1.0.5<\\/p>\\n<ul>\\n<li>Added new toggle to \'Remove REST API Links\'.<\\/li>\\n<li>Renamed \'Remove Feed Links\' toggle for more clarification.<\\/li>\\n<li>UI improvements, hovering tooltips, more links to the web documentation, etc\\u2026<\\/li>\\n<li>Added version numbers to admin scripts to avoid caching on plugin update.<\\/li>\\n<li>Refactored a good portion of the settings initialization code.<\\/li>\\n<li>Removed \\\"Beta\\\" status for script manager. It has been fully tested now and is ready to use in production.<\\/li>\\n<li><\\/li>\\n<\\/ul>\\n<p>1.0.4<\\/p>\\n<ul>\\n<li>Fixed a few PHP warnings dealing with the Script Manager option array management.<\\/li>\\n<li>Fixed a UI bug in the Script Manager causing certain post type checkboxes\\u00a0to not be selectable.<\\/li>\\n<\\/ul>\\n<p>1.0.3<\\/p>\\n<ul>\\n<li>Introduced the new Script Manager feature to disable scripts on a per page\\/post basis.<\\/li>\\n<\\/ul>\\n<p>1.0.2<\\/p>\\n<ul>\\n<li>Added Extras tab with a new option for Accessibility\\u00a0Mode. Enabling this will turn off the custom styles we use for our settings toggles and revert to standard HTML checkboxes.<\\/li>\\n<li>Additional accessibility improvements.<\\/li>\\n<li>A few style fixes.<\\/li>\\n<\\/ul>\\n<p>1.0.1<\\/p>\\n<ul>\\n<li>Accessibility improvements to the plugin settings page.<\\/li>\\n<\\/ul>\\n<p>1.0.0<\\/p>\\n<ul>\\n<li>Plugin launched.<\\/li>\\n<\\/ul>\\n\"},\"banners\":{\"high\":\"https:\\/\\/perfmatters.io\\/wp-content\\/uploads\\/edd\\/2021\\/07\\/perfmatters-plugin-banner-1544x500-1.png\",\"low\":\"https:\\/\\/perfmatters.io\\/wp-content\\/uploads\\/edd\\/2021\\/07\\/perfmatters-plugin-banner-772x250-1.png\"},\"icons\":{\"1x\":\"https:\\/\\/perfmatters.io\\/wp-content\\/uploads\\/edd\\/2021\\/11\\/perfmatters-logo-250x250-1-128x128.png\",\"2x\":\"https:\\/\\/perfmatters.io\\/wp-content\\/uploads\\/edd\\/2021\\/11\\/perfmatters-logo-250x250-1.png\"},\"msg\":\"No license key has been provided.\",\"tested\":\"6.4.2\",\"description\":[\"<p><a href=\\\"https:\\/\\/perfmatters.io\\/\\\">Perfmatters<\\/a> is a lightweight web performance plugin designed to help increase Google Core Web Vitals scores and fine-tune how assets load on your site.<\\/p>\\n<h4> Features <\\/h4>\\n<ul>\\n<li>Easy quick toggle options to turn off resources that shouldn\'t be loading. <\\/li>\\n<li>Disable scripts and plugins on a per post\\/page or sitewide basis with the Script Manager. <\\/li>\\n<li>Defer and delay JavaScript, including third-party scripts.<\\/li>\\n<li>Automatically remove unused CSS.<\\/li>\\n<li>Preload resources, critical images, and prefetch links for quicker load times.<\\/li>\\n<li>Lazy load images and enable click-to-play thumbnails on videos.<\\/li>\\n<li>Host Google Analytics and Google Fonts locally.<\\/li>\\n<li>Change your WordPress login URL. <\\/li>\\n<li>Disable and limit WordPress revisions.<\\/li>\\n<li>Add code to your header, body, and footer.<\\/li>\\n<li>Optimize your database.<\\/li>\\n<\\/ul>\\n<h4> Documentation <\\/h4>\\n<p>Check out our <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/\\\">documentation<\\/a> for more information on how to use Perfmatters.<\\/p>\"],\"changelog\":[\"<p>2.2.0 - 11.22.2023<\\/p>\\n<ul>\\n<li>Added Delay JS quick exclusion and REST route exception for WS Form.<\\/li>\\n<li>Adjusted built-in WooCommerce stylesheet exclusions for better compatibility.<\\/li>\\n<li>Updated instant.page and FastClick script names for ad blocker compatibility.<\\/li>\\n<li>Fixed a PHP 8.2 deprecated warning coming from the CSS class.<\\/li>\\n<li>Fixed a Script Manager CSS issue where certain disable controls weren\'t hiding correctly in some cases.<\\/li>\\n<li>Removed unnecessary .git directory from background processor library folder.<\\/li>\\n<li>Script Manager security updates to fix XSS vulnerability.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.1.9 - 11.09.2023<\\/p>\\n<ul>\\n<li>Added Delay JS quick exclusions for Presto Player, Raptive Ads, Slickstream, and WP Recipe Maker.<\\/li>\\n<li>Added new WP-CLI command to clear used CSS with multisite support.<\\/li>\\n<li>Added support for Google Material Symbols and Icons to local font feature.<\\/li>\\n<li>Added support for excluding by no-lazy class to CSS Background Images.<\\/li>\\n<li>Added support for lazy loading the poster attribute when set for a video tag.<\\/li>\\n<li>Made adjustments to CSS class to allow for stylesheet\'s to be excluded by any portion of their attribute string.<\\/li>\\n<li>Made some styling improvements to the YouTube preview thumbnail play button on hover.<\\/li>\\n<li>Fixed an issue where delayed stylesheets would be loaded in twice if individual JS delay was also being used.<\\/li>\\n<li>Updated Google Analytics 4 minimal script to version 1.10.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.1.8 - 10.13.2023<\\/p>\\n<ul>\\n<li>Fixed a compatibility issue with local fonts and WordPress 6.3.2 that was causing an error when new font files were requested.<\\/li>\\n<\\/ul>\\n<p>2.1.7 - 09.29.2023<\\/p>\\n<ul>\\n<li>Added Delay JS quick exclusion for WP Forms.<\\/li>\\n<li>Script Manager style updates to match some recent changes to the main settings UI.<\\/li>\\n<li>Script Manager security updates to form submission handling.<\\/li>\\n<li>Added logic to strip whitespace from input row text fields used for preloads, preconnects, and fetch priority options.<\\/li>\\n<li>Adjusted CDN Regex slightly to account for certain subdirectory formats.<\\/li>\\n<li>Added specification to lazyload exclusion to only skip the fetchpriority attribute when set to high.<\\/li>\\n<li>Added Cornerstone request parameter to excluded page builders array.<\\/li>\\n<li>Updated certain AJAX action names to be specific to Perfmatters to prevent conflicts.<\\/li>\\n<li>Updated missing image dimension function to better handle images that have been prepped by lazy loaders outside of Perfmatters.<\\/li>\\n<li>Added Novashare discount link to plugin settings UI for Perfmatters customers.<\\/li>\\n<li>Fixed an issue where the database optimization process would not run correctly if selected toggles were not saved first.<\\/li>\\n<li>Fixed an issue in MU Mode where core cookie constants were not set in a specific instance when checking for the current post ID.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.1.6 - 08.31.2023<\\/p>\\n<ul>\\n<li>Fixed an issue that was preventing CodeMirror input fields from saving correctly.<\\/li>\\n<\\/ul>\\n<p>2.1.5 - 08.30.2023<\\/p>\\n<ul>\\n<li>Reworked the majority of the UI to use WordPress AJAX to save data and perform plugin actions.<\\/li>\\n<li>Renamed Bricks Delay JS quick exclusion, as it can be used to target more than just their slider.<\\/li>\\n<li>Adjusted clean_html utility function regex to better handle large inline data scripts.<\\/li>\\n<li>Added skip-lazy class to built-in lazy loading exclusions.<\\/li>\\n<li>Added right-to-left admin styles for better usability on RTL sites.<\\/li>\\n<li>Fixed an issue where certain HTML characters would not print correctly when saved in a fetch priority selector input field.<\\/li>\\n<li>Fixed an issue where fetch priority selectors would sometimes not get the correct priority applied when set to low.<\\/li>\\n<li>Fixed a typo in the fetch priority tooltip.<\\/li>\\n<li>Updated background processing library to version 1.1.1.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.1.4 - 08.08.2023<\\/p>\\n<ul>\\n<li>Added new preload option to add the <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/fetch-priority\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Fetch Priority<\\/a> attribute to different resources on the site to help improve LCP.<\\/li>\\n<li>Added built-in lazy loading exclusion for fetchpriority attribute.<\\/li>\\n<li>Added Delay JS quick exclusion for Termageddon + Usercentrics.<\\/li>\\n<li>Switched individual JS delay to use the same inline script as delay all to take advantage of delayed triggering of event listeners.<\\/li>\\n<li>Fixed an issue where an empty notice was appearing when a database optimization process completed.<\\/li>\\n<li>Fixed an issue with critical image preloads where an image with an empty src attribute would prevent other similar ones from being added on the same URL.<\\/li>\\n<li>UI improvements to input row sections.<\\/li>\\n<\\/ul>\\n<p>2.1.3 - 07.02.2023<\\/p>\\n<ul>\\n<li>Fixed an issue that was preventing existing Script Manager settings from showing up in certain instances.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.1.2 - 06.29.2023<\\/p>\\n<ul>\\n<li>Added new lazy loading advanced option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/lazy-load-wordpress\\/#exclude-parent-selector\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Exclude Images by Parent Selector<\\/a>.<\\/li>\\n<li>Added built-in exclusion to Delay JS for jqueryParams inline script to prevent load order issues.<\\/li>\\n<li>Added additional built-in exclusions to Remove Unused CSS for better compatibility with Elementor.<\\/li>\\n<li>Added HTTPS check to PERFMATTERS_CACHE_URL definition.<\\/li>\\n<li>Updated Script Manager UI to sort plugins alphabetically by plugin name as well as assets inside each individual section alphabetically by script handle.<\\/li>\\n<li>Fixed an issue where plugins without any enqueued scripts would not always show up in the Script Manager (MU Mode) after visiting the global view.<\\/li>\\n<li>Updated background processing library to version 1.1.0.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.1.1<\\/p>\\n<ul>\\n<li>Added <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/wp-cli\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">WP-CLI<\\/a> support for managing plugin license key activation.<\\/li>\\n<li>Changed behavior of Disable Cart Fragments toggle to only load cart fragmentation script when there are items in the cart.<\\/li>\\n<li>Added default array for critical image preload exclusions that are always needed.<\\/li>\\n<li>Added additional Delay JS quick exclusions for Bricks Slider and WP Armour.<\\/li>\\n<li>Added additional built-in exclusions for Remove Unused CSS for better compatibility with Elementor and Google Reviews Widget.<\\/li>\\n<li>Updated lazy loading fade-in effect to use CSS animation property instead of transition for better compatibility with existing element transitions.<\\/li>\\n<li>Added requirement for advanced options to be turned on to be able to defer jQuery.<\\/li>\\n<li>Added WP-CLI request exclusion to MU plugin functions.<\\/li>\\n<li>Fixed a PHP warning that could sometimes be generated if an image was not able to be parsed for missing dimensions.<\\/li>\\n<li>Updated instant.page library to version 5.2.0.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.1.0<\\/p>\\n<ul>\\n<li>Added new delay JS option for <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/delay-javascript\\/#quick-exclusions\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Quick Exclusions<\\/a> that will show up when certain popular plugins and themes are activated.<\\/li>\\n<li>Made some updates to the Script Manager UI to match recent changes to the main plugin settings.<\\/li>\\n<li>Cleared out some code for the previous settings admin header that was no longer needed.<\\/li>\\n<li>Made an adjustment to CDN URL function to work even if a trailing slash was entered.<\\/li>\\n<li>Rearranged our local and Google font options to give frequently used options more priority.<\\/li>\\n<li>Fixed a bug where multiple settings sections were displaying at the same time after saving from the database tab.<\\/li>\\n<li>Fixed an issue where accessibility mode tooltips were not getting styled properly in the plugin UI.<\\/li>\\n<li>Fixed a styling issue where link and button colors were getting applied outside of the main Perfmatters admin container.<\\/li>\\n<li>Fixed an issue in MU Mode where the global filtered plugin list would not always return correctly.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.0.9<\\/p>\\n<ul>\\n<li>Updated Request library functions used to download local font files to fix a compatibility issue with WordPress 6.2.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_preloads_ready\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_preloads_ready<\\/a> filter.<\\/li>\\n<li>Fixed a styling issue in Safari where the settings UI logo was getting clipped.<\\/li>\\n<\\/ul>\\n<p>2.0.8<\\/p>\\n<ul>\\n<li>Updated plugin settings UI. Completely overhauled admin header and navigation. Made additional improvements to various elements (icons, buttons, toggles, etc.).<\\/li>\\n<li>Added additional checks to allow PERFMATTERS_CACHE_DIR and PERFMATTERS_CACHE_URL to be manually set in wp-config.php.<\\/li>\\n<li>Updated user agent for local font remote request.<\\/li>\\n<li>Fixed an issue where multiple preload tags for the same resource could be printed if the resource was matched more than once in the DOM.<\\/li>\\n<li>Fixed an issue where an individually delayed script would fail to load if it matched more than one delayed script entry.<\\/li>\\n<li>Fixed an issue where FastClick script could still load even if Delay JS was turned off.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.0.7<\\/p>\\n<ul>\\n<li>Fixed an issue that was introduced in the last update that was causing certain images that had their HTML modified by another tool not to lazy load correctly.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.0.6<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/local-analytics\\/#minimal-v4\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Minimal v4<\\/a> script type option in local analytics.<\\/li>\\n<li>Added support for ::after pseudo element when lazy loading CSS background images.<\\/li>\\n<li>Added support for AVIF images in a source tag to preload critical images feature.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_preload_critical_images\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_preload_critical_images<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_image_dimensions_exclusions\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_image_dimensions_exclusions<\\/a> filter.<\\/li>\\n<li>Added notice to plugin update row if there is not an active license key.<\\/li>\\n<li>Added async attribute to Instant Page script tag.<\\/li>\\n<li>Added async attribute to all relevant local analytics script tags.<\\/li>\\n<li>Reworked preload class to allow managing preloads entirely with perfmatters_preloads filter if needed.<\\/li>\\n<li>Fixed an issue in MU Mode where plugins would not always disable correctly when helper plugins with similar directories were also active.<\\/li>\\n<li>Fixed a couple of PHP warnings in MU plugin that would show up when certain variables were not declared.<\\/li>\\n<li>Fixed an issue where our lazy loading script was attempting to load in images that had been prepped by another active lazy loader.<\\/li>\\n<li>Fixed an issue where base64 encoded images were being picked up by missing image dimensions feature.<\\/li>\\n<li>Removed BETA tag from preload critical images option.<\\/li>\\n<\\/ul>\\n<p>2.0.5<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_exclude_leading_images\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_exclude_leading_images<\\/a> filter.<\\/li>\\n<li>Fixed an issue that was affecting lazy loaded inline background images in certain formats.<\\/li>\\n<li>Fixed a PHP warning related to Fastclick and the built-in exclusion for WooCommerce pages.<\\/li>\\n<li>Updated license key field to prevent it from getting auto-filled by browser extensions.<\\/li>\\n<\\/ul>\\n<p>2.0.4<\\/p>\\n<ul>\\n<li>Fixed an issue that was causing the Perfmatters admin bar menu and meta options to not show up in the admin.<\\/li>\\n<li>Added additional nopin attribute for Pinterest to YouTube preview thumbnails.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.0.3<\\/p>\\n<ul>\\n<li>Added new local Google fonts advanced option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/host-google-fonts-locally\\/#async\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Load Asynchronously<\\/a>.<\\/li>\\n<li>Added user agent check before running output buffer with initial exclusion for Usercentrics scanner.<\\/li>\\n<li>Added support for CSS variables when they are being used for lazy loaded inline background images.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_lazyload_youtube_autoplay\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_lazyload_youtube_autoplay<\\/a> filter.<\\/li>\\n<li>Improved delay all script handling of jQuery load event.<\\/li>\\n<li>Changed all WooCommerce checks to use class_exists for better compatibility.<\\/li>\\n<li>Adjusted the order of preloads in the buffer to make sure they print above used CSS.<\\/li>\\n<li>Moved buffer class initialization to wp action hook to improve filtering possibilities.<\\/li>\\n<li>Moved WooCommerce built-in exclusions to apply to select individual features instead of the entire buffer.<\\/li>\\n<li>Slight modification to previous MU Mode addition to fix an issue.<\\/li>\\n<li>Fixed an issue where custom heartbeat interval was not being applied correctly when editing certain custom post types.<\\/li>\\n<li>Fixed an issue with the local stylesheet CDN URL when advanced options were turned on but no URL was set.<\\/li>\\n<li>Fixed an issue where delay script was printing out more than once if multiple closing body tags were present in the DOM.<\\/li>\\n<\\/ul>\\n<p>2.0.2<\\/p>\\n<ul>\\n<li>Fixed an issue that was preventing Removed Unused CSS from running correctly in certain cases when Advanced Options were toggled on.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.0.1<\\/p>\\n<ul>\\n<li>Added new toggle to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/advanced-options\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Show Advanced Options<\\/a> in the Perfmatters UI.<\\/li>\\n<li>Added new advanced option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/delay-javascript\\/#disable-click-delay\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Disable Click Delay<\\/a> in JavaScript section.<\\/li>\\n<li>Added new advanced option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/delay-javascript\\/#fastclick\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Enable FastClick<\\/a> in JavaScript section.<\\/li>\\n<li>Added new advanced option to specify a <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/remove-unused-css\\/#cdn-url\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">CDN URL<\\/a> in CSS section.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/change-wordpress-login-url\\/#local-redirect\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Local Redirect<\\/a> option to existing login URL disabled behavior selection.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_buffer_excluded_extensions\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_buffer_excluded_extensions<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_rucss_excluded_stylesheets\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_rucss_excluded_stylesheets<\\/a> filter.<\\/li>\\n<li>Added additional built-in exclusions for Remove Unused CSS for better compatibility with Elementor, Divi, Slider Revolution, OptimizePress, and WordPress core.<\\/li>\\n<li>Added additional logic in MU Mode to more reliably retrieve the ID for certain custom post types.<\\/li>\\n<li>Moved lazyload functions to new class structure to be more inline with current codebase.<\\/li>\\n<li>Modified regex for lazy loading inline background images to support additional formats.<\\/li>\\n<li>Integrated lazyload functions into the main output buffer to allow interaction with other existing features.<\\/li>\\n<li>Fixed an issue where dynamic preloads were not recognizing existing query strings in some cases.<\\/li>\\n<li>Fixed a PHP warning that would show up in some cases by adding additional string check when looping through rewrite array.<\\/li>\\n<li>Fixed an issue with MU Mode where sometimes the wrong plugin would get disabled if there were multiple plugins using similar directory paths.<\\/li>\\n<li>Fixed an issue where images inside script tags were being picked up by the Preload Critical Images function.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.0.0<\\/p>\\n<ul>\\n<li>Added new system for query string timestamps for Used CSS file method to help see changes quicker in environments with caching.<\\/li>\\n<li>Added support for ?perfmattersoff query string which gives the ability to quickly prevent the majority of Perfmatters features from running on the front end for testing purposes.<\\/li>\\n<li>Added additional support for updating the plugin via WP-CLI.<\\/li>\\n<li>Made some changes to admin bar menu item. There is now a Perfmatters top-level admin bar menu item that links to our plugin settings page. The Script Manager and Clear Used CSS function can be accessed by hovering over that main menu item if those features are enabled.<\\/li>\\n<li>Added new toggle in tools to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/hide-admin-bar-menu\\/\\\" target=\\\"_blank\\\" rel=\\\"noreferrer noopener\\\">Hide Admin Bar Menu<\\/a>.<\\/li>\\n<li>Disabled certain features from running on WooCommerce cart, checkout, and account pages for better compatibility.<\\/li>\\n<li>Increased site limit in dropdowns on Multisite network settings page.<\\/li>\\n<li>Added additional compatibility styles to the Script Manager.<\\/li>\\n<li>Added additional built-in exclusions for Remove Unused CSS for better compatibility with Elementor, Astra, Kadence, and GenerateBlocks.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_login_url\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_login_url<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_lazyload_noscript\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_lazyload_noscript<\\/a> filter.<\\/li>\\n<li>Fixed an issue where YouTube preview thumbnails were generating a preload warning in certain instances.<\\/li>\\n<li>Fixed an issue that was causing analytics.js not to be served over HTTPS in instances where an SSL migration had been done previously on the site.<\\/li>\\n<li>Fixed an issue where delayed style attribute was applied to preloaded stylesheets that already existed in the DOM.<\\/li>\\n<li>Fixed an issue where some features were being allowed to run on XML sitemap URLs in certain cases.<\\/li>\\n<li>Fixed an issue where theme and plugin files were not falling back to a WordPress version query string when present in a dynamic preload.<\\/li>\\n<\\/ul>\\n<p>1.9.9<\\/p>\\n<ul>\\n<li>Added additional autosave interval options.<\\/li>\\n<li>Added WPBakery query string parameter to excluded page builders array.<\\/li>\\n<li>Changed certain lazy loading classes to be more specific to prevent conflicts.<\\/li>\\n<li>Adjusted lazy loading image attribute filter to not run unless images specifically are meant to be lazy loaded by Perfmatters.<\\/li>\\n<li>Added an additional function_exists check in the JS class to prevent an error from being thrown in some cases.<\\/li>\\n<\\/ul>\\n<p>1.9.8<\\/p>\\n<ul>\\n<li>Made adjustments to the CSS Background Image styles to work with some changes in the latest version of our lazy loading library.<\\/li>\\n<li>Fixed an issue that was preventing quotations from being stripped from background image URLs when prepping an inline background image for lazy loading.<\\/li>\\n<li>Fixed an issue where delayed CSS was not loading properly when using individual JS delay.<\\/li>\\n<li>Fixed an error that was being logged in some cases when checking for an active plugin in the JS class.<\\/li>\\n<\\/ul>\\n<p>1.9.7<\\/p>\\n<ul>\\n<li>Made an adjustment to how inline background images are prepped to work with some changes in the latest version of our lazy loading library.<\\/li>\\n<\\/ul>\\n<p>1.9.6<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_delay_js_delay_click\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_delay_js_delay_click<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_local_stylesheet_url\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_local_stylesheet_url<\\/a> filter.<\\/li>\\n<li>Made some performance improvements to the way the lazy loading script and inline code are loaded.<\\/li>\\n<li>Added additional compatibility for Elementor animations when using Delay JS.<\\/li>\\n<li>Added additional details in the Script Manager global view for individual stored settings.<\\/li>\\n<li>Added the ability to identify and clear outdated post IDs set in the Script Manager options from the global view.<\\/li>\\n<li>Script Manager global view organization and style improvements.<\\/li>\\n<li>Updated lazy loading library to version 17.8.<\\/li>\\n<li>Updated instant.page library to version 5.1.1.<\\/li>\\n<li>Added Bricks query string parameter to excluded page builders array.<\\/li>\\n<li>Fixed an issue that was causing the cache directory to not create unique subsite paths for specific multisite setups.<\\/li>\\n<li>Fixed an issue where delayed stylesheets were not being loaded if Delay JS was toggled off in the post meta options.<\\/li>\\n<\\/ul>\\n<p>1.9.5<\\/p>\\n<ul>\\n<li>Added additional logic to Delay JS script to make sure the initial interaction is processed.<\\/li>\\n<li>Added additional styles to CSS Background Image feature to work with background images set on ::before selectors.<\\/li>\\n<li>Added additional default tags to various dropdowns in plugin settings for better clarification.<\\/li>\\n<li>Added default arrays for stylesheet and selector exclusions that are always needed.<\\/li>\\n<li>Adjusted perfmatters_cdn filter location for compatibility.<\\/li>\\n<li>Made some adjustments to CDN Rewrite Regex to fix some issues where unwanted strings were getting picked up as URLs in some cases.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>1.9.4<\\/p>\\n<ul>\\n<li>Updated EDD plugin updater class to version 1.9.2.<\\/li>\\n<li>Added default exclusion to REST API option for compatibility.<\\/li>\\n<\\/ul>\\n<p>1.9.3<\\/p>\\n<ul>\\n<li>Remove Used CSS filter adjustment to fix an issue where certain WordPress post functions wouldn\'t be available when trying to selectively disable the feature.<\\/li>\\n<li>Rolled back minor plugin UI JavaScript addition, as it was interfering with entering data on multiple lines in certain input fields.<\\/li>\\n<\\/ul>\\n<p>1.9.2<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_allow_buffer https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_used_css\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_used_css<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_allow_buffer\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_allow_buffer<\\/a> filter.<\\/li>\\n<li>Added a notice in the Script Manager when Testing Mode is enabled.<\\/li>\\n<li>Improved reliability of CSS Background Image function when child elements with additional background images are present.<\\/li>\\n<li>Script Manager style compatibility fixes.<\\/li>\\n<li>Fixed an issue where some post specific meta options were not being respected when determining if a feature should run.<\\/li>\\n<li>Fixed an issue where pressing enter on the main plugin settings page would trigger a specific form action instead of save settings.<\\/li>\\n<li>Changed CSS class initialization hook to be in the correct order with other output buffer functions.<\\/li>\\n<li>Made an adjustment to how we generate the local used stylesheet URL for better compatibility.<\\/li>\\n<li>Fixed an issue where loading attribute was still getting applied to images that were excluded from lazy loading.<\\/li>\\n<li>Fixed an issue where images inside an excluded picture element were not also getting excluded.<\\/li>\\n<li>Fixed an issue in the Script Manager where archives were not being grouped together with their respective post type.<\\/li>\\n<li>Additions to plugin UI JavaScript to allow for disabled sections to be hidden even when nested controllers are present.<\\/li>\\n<li>Moved background process library to composer autoloader.<\\/li>\\n<li>Removed BETA tag from Remove Unused CSS option.<\\/li>\\n<\\/ul>\\n<p>1.9.1<\\/p>\\n<ul>\\n<li>Added new option to lazy load <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/lazy-load-wordpress\\/#css-background-images\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">CSS Background Images<\\/a>.<\\/li>\\n<li>Added new option for <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/local-analytics\\/#dual-tracking\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Dual Tracking<\\/a> when using gtag.js in local analytics.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_rest_api_exceptions\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_rest_api_exceptions<\\/a> filter.<\\/li>\\n<li>Fixed an issue where individually delayed local scripts would not get correctly rewritten to load from the CDN.<\\/li>\\n<li>Fixed an issue where lazy loading would run into an error if no px or % was specified with the threshold value.<\\/li>\\n<li>Fixed an issue with buffer validation that was conflicting with certain caching setups.<\\/li>\\n<li>Fixed an issue where existing font preconnect and prefetch tags were not being detected properly when using Local Fonts.<\\/li>\\n<li>Fixed an error related to cookie constants when running MU Mode in certain environments.<\\/li>\\n<li>Fixed multiple AMP validation errors and added additional checks to prevent certain functions from running on AMP URLs.<\\/li>\\n<li>Minor adjustment to CDN rewrite regex pattern to work with encoded quotation characters.<\\/li>\\n<li>Changed toggle CSS selectors to be more specific to prevent conflicts.<\\/li>\\n<li>Moved plugin settings header output to in_admin_header action hook for compatibility.<\\/li>\\n<li>Moved JS optimization functions to new class structure to be more inline with current codebase.<\\/li>\\n<li>Improvements to critical image preloading allowed for a move to a singular output buffer.<\\/li>\\n<\\/ul>\\n<p>1.9.0<\\/p>\\n<ul>\\n<li>Fixed an issue that was causing excluded selectors to not be recognized properly after Used CSS was cleared.<\\/li>\\n<li>Minor adjustments to the new plugin UI.<\\/li>\\n<\\/ul>\\n<p>1.8.9<\\/p>\\n<ul>\\n<li>Updated plugin settings UI.<\\/li>\\n<li>Added new post meta option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/remove-unused-css\\/#clear-individual\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Clear Used CSS<\\/a> for an individual page or post type.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_rucss_excluded_selectors\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_rucss_excluded_selectors<\\/a> filter.<\\/li>\\n<li>Fixed a lazy loading issue that was preventing some images from loading properly in Safari.<\\/li>\\n<li>Migrated Delay JS Timeout dropdown to a simpler on\\/off toggle that will default to 10 seconds. Our filter is also still available to set a custom timeout value.<\\/li>\\n<li>Fixed an issue with MU plugin that was interfering with rewrite rules in some instances.<\\/li>\\n<li>Added additional excluded page builder parameter for Flatsome UX.<\\/li>\\n<li>Moved restore default functionality to a separate option on the tools page.<\\/li>\\n<li>Code refactoring.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>1.8.8<\\/p>\\n<ul>\\n<li>Changed default setting for Used CSS Method from file to inline, as we think this will be the more compatible solution for most users going forward. If you were previously using the file method, you may need to save that option again.<\\/li>\\n<li>Added width and height parameters to placeholder SVGs to prevent warnings for a ratio mismatch that would happen for some images.<\\/li>\\n<li>Fixed an issue where the noscript tags were getting malformed for some images inside picture tags after lazy loading.<\\/li>\\n<li>Removed placeholder SVGs on source tags since the image tag will already have one.<\\/li>\\n<li>Changed settings export file name date format to be easier to organize when managing multiples.<\\/li>\\n<li>Updated tooltip for Blank Favicon option to be more clear.<\\/li>\\n<\\/ul>\\n<p>1.8.7<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/remove-unused-css\\/#css-method\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Used CSS Method<\\/a> option to choose whether to load used CSS from a file or inline.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_cache_path\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_cache_path<\\/a> filter.<\\/li>\\n<li>Updated metabox functions to restrict metabox display to administrators only.<\\/li>\\n<li>Made some adjustments to custom login URL function to better support 3rd party tools using WP CLI.<\\/li>\\n<li>Added Fusion Builder query string parameters to excluded page builders array.<\\/li>\\n<li>Adjusted Unused CSS regex to be more consistent when stylesheets are placed in between other link tags.<\\/li>\\n<li>Changes to instances where ABSPATH was used to determine a directory location for better compatibility with certain hosts.<\\/li>\\n<li>Fixed an issue with Remove Global Styles option where duotone SVGs were not being removed on WordPress 5.9.2.<\\/li>\\n<li>Fixed an issue where WooCommerce block stylesheets were not getting correctly dequeued when Disable Scripts option was set.<\\/li>\\n<li>Fixed an issue that was causing the CSS Parser library not to get included correctly in certain cases.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>1.8.6<\\/p>\\n<ul>\\n<li>Added new option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/remove-global-inline-styles-wordpress\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Remove Global Styles<\\/a> related to duotone filters.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_script_manager_locale\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_script_manager_locale<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_disable_woocommerce_scripts\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_disable_woocommerce_scripts<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_page_builders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_page_builders<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_delay_js_behavior\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_delay_js_behavior<\\/a> filter.<\\/li>\\n<li>Fixed an issue with the unused CSS parser that was incorrectly rewriting relative URLs if there was no query string present on the original stylesheet src.<\\/li>\\n<li>Added additional parameter to page builders array for compatibility.<\\/li>\\n<li>Fixed an issue that was causing the login URL disabled 404 behavior to result in an error if a 404 template was not found.<\\/li>\\n<li>Added some additional checks before creating cache directories for local fonts and used CSS.<\\/li>\\n<li>Fixed an issue that was causing the fade-in effect to conflict with child images inside a lazy loaded container.<\\/li>\\n<li>Fixed an undefined index warning coming from unused CSS settings update function.<\\/li>\\n<li>Added a default delay JS exclusion for admin only inline customize-support script.<\\/li>\\n<li>Refactored entire meta.php code to be more efficient (38% smaller) and in line with current structure.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>1.8.5<\\/p>\\n<ul>\\n<li>Added new feature to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/remove-unused-css\\/#remove-unused-css\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Remove Unused CSS<\\/a> (BETA).<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_remove_unused_css\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_remove_unused_css<\\/a> filter.<\\/li>\\n<li>Adjusted CDN Rewrite buffer priority for better compatibility with other features.<\\/li>\\n<li>Made an improvement to the Disable XML-RPC function to return a 403 error when xmlrpc.php is accessed directly.<\\/li>\\n<li>Script Manager stylesheet updates for better compatibility.<\\/li>\\n<li>Fixed an issue in the Script Manager where the input controls were sometimes not displaying after toggling a script off.<\\/li>\\n<li>Added additional style for YouTube preview thumbnail play button to fix an alignment issue with certain setups.<\\/li>\\n<li>Buffer adjustments for compatibility.<\\/li>\\n<\\/ul>\\n<p>1.8.4<\\/p>\\n<ul>\\n<li>Fixed an issue that was interfering with sitemap display in certain configurations.<\\/li>\\n<li>Added &lt;a&gt; element support for lazy loading inline background images.<\\/li>\\n<\\/ul>\\n<p>1.8.3<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_fade_in_speed\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_fade_in_speed<\\/a> filter.<\\/li>\\n<li>Fixed an issue that was preventing lazy loading fade in from working correctly with certain background images.<\\/li>\\n<li>Fixed an issue that was interfering with the display of certain inline SVG elements.<\\/li>\\n<li>Adjusted local analytics hook priority for better compatibility.<\\/li>\\n<li>Script Manager style updates for better compatibility.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>1.8.2<\\/p>\\n<ul>\\n<li>New Lazy Loading option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/lazy-load-wordpress\\/#exclude-leading-images\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Exclude Leading Images<\\/a>.<\\/li>\\n<li>New Lazy Loading option to add a <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/lazy-load-wordpress\\/#fade-in\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Fade In<\\/a> effect.<\\/li>\\n<li>New option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/preload\\/#critical-images\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Preload Critical Images<\\/a> (BETA).<\\/li>\\n<li>Expanded Disable XML-RPC function to also remove pingback link tag if it is present in the document.<\\/li>\\n<li>Added new Delay JavaScript checkbox to meta options in the post editor.<\\/li>\\n<li>Added additional integration with perfmatters_delay_js filter.<\\/li>\\n<li>Moved YouTube autoplay parameter placement on lazy loaded iframes for better compatibility with existing query strings.<\\/li>\\n<li>Optimizations to lazy loading inline CSS functions.<\\/li>\\n<li>Various optimizations and improvements to the output buffer.<\\/li>\\n<li>Migrated manual preload functionality to use the output buffer which will allow for easier integration with new features.<\\/li>\\n<li>Made some adjustments to MU plugin functions to more reliably detect post IDs when using specific permalink setups.<\\/li>\\n<li>Fixed an issue where some Current URL links in the Script Manager\'s Global View were not pointing to the right posts.<\\/li>\\n<li>Fixed an issue with a certain endpoint that was redirecting to the custom login URL.<\\/li>\\n<li>Fixed a PHP notice that was sometimes appearing when refreshing local fonts.<\\/li>\\n<li>Removed BETA tag from Delay All JS option.<\\/li>\\n<\\/ul>\\n<p>1.8.1<\\/p>\\n<ul>\\n<li>Updated Local Google Font function to more effectively remove existing font preconnect and prefetch tags.<\\/li>\\n<li>Updated Local Google Font function for better compatibility with sites that still have remnants from a previous http to https migration.<\\/li>\\n<li>Fixed an issue in the Script Manager where the home page was being treated as a post if set to display the blog feed.<\\/li>\\n<\\/ul>\\n<p>1.8.0<\\/p>\\n<ul>\\n<li>Fixed an issue with Delay All JS that was preventing certain async scripts from fully loading.<\\/li>\\n<\\/ul>\\n<p>1.7.9<\\/p>\\n<ul>\\n<li>Added new options to the Script Manager to disable assets directly by post type, archive, user status, and device type.<\\/li>\\n<li>Added support for dynamic preloading by handle for enqueued scripts and styles.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_lazyload\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_lazyload<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_cdn\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_cdn<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_delay_js_timeout\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_delay_js_timeout<\\/a> filter.<\\/li>\\n<li>Fix to Delay All JS script for better compatibility with certain page builder animations.<\\/li>\\n<li>Updated class initialization for better compatibility.<\\/li>\\n<li>Fixed an issue where the Script Manager was interpreting certain array keys as shortcodes if they were identical.<\\/li>\\n<li>Added an additional check to prevent the Script Manager from being able to load on top of a page builder.<\\/li>\\n<li>Fixed a PHP notice coming from the MU plugin.<\\/li>\\n<li>Made some changes to our plugin updater function that should help with auto-updates in a multisite environment.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>1.7.8<\\/p>\\n<ul>\\n<li>Added new option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/missing-width-height-images\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Add Missing Image Dimensions<\\/a>.<\\/li>\\n<li>Added the ability to delete individual Script Manager options from the Global View.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_delay_js\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_delay_js<\\/a> filter.<\\/li>\\n<li>Updated EDD plugin updater class to version 1.9.0.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>1.7.7<\\/p>\\n<ul>\\n<li>Fixed a PHP warning related to JavaScript deferral for specific configurations.<\\/li>\\n<li>Fixed an issue with lazy loading exclusions not being loaded correctly in some cases.<\\/li>\\n<\\/ul>\\n<p>1.7.6<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/delay-javascript\\/#behavior\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Delay Behavior<\\/a> dropdown with a new option to Delay All Scripts.<\\/li>\\n<li>Added new Lazy Loading <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/lazy-load-wordpress\\/#threshold\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Threshold<\\/a> option and adjusted the default value if not set to improve performance.<\\/li>\\n<li>Added confirmation message when manually running the database optimization tool.<\\/li>\\n<li>Updated disable emoji function to get rid of a PHP notice.<\\/li>\\n<li>Added additional check to MU Mode to only filter GET requests.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/defer-javascript-wordpress\\/#perfmatters_defer_js-filter\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_defer_js<\\/a> filter.<\\/li>\\n<li>Fixed an issue where Instant Page was attempting to run on the new widgets screen in WordPress 5.8.<\\/li>\\n<li>Fixed an issue with Local Google Fonts where certain invalid font URLs would still attempt to be downloaded and served.<\\/li>\\n<li>Removed BETA tag from fonts section.<\\/li>\\n<li>Delay JavaScript compatibility improvements.<\\/li>\\n<li>Added additional input validation functionality to plugin settings page.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>1.7.5<\\/p>\\n<ul>\\n<li>Added new custom login URL options to change the <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/change-wordpress-login-url\\/#disabled-behavior\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Disabled Behavior<\\/a> and set a custom <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/change-wordpress-login-url\\/#message\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Message<\\/a>.<\\/li>\\n<li>Migrated CDN, Analytics, and Extras tab data to separate sections in the Options tab for better organization and easier access.<\\/li>\\n<li>CDN rewrite improvements to better handle sites with multiple domain URLs.<\\/li>\\n<li>Regex adjustments to Local Fonts function for better reliability.<\\/li>\\n<li>Added exclusion checks to individual &lt;source&gt; tags when using WebP images.<\\/li>\\n<li>Added function to disable capital_P_dangit filter.<\\/li>\\n<li>Fixed a lazy loading warning that was showing in Microsoft Edge.<\\/li>\\n<li>Removed loading attribute that was getting applied to &lt;picture&gt; tags in some cases when using WebP images.<\\/li>\\n<li>Plugin UI navigation performance improvements.<\\/li>\\n<li>Plugin UI style fixes.<\\/li>\\n<li>Added a conditional check to only show WooCommerce options when WooCommerce is installed and activated.<\\/li>\\n<li>Fixed an MU Mode issue where the Home URL did not trigger a match if a query string was present.<\\/li>\\n<li>Fixed an issue where the Customizer was getting certain optimizations applied.<\\/li>\\n<li>Fixed an issue where the Disable Embeds toggle was interfering with responsive video styles.<\\/li>\\n<li>Script Manager UI fixes.<\\/li>\\n<li>Updated uninstall function to remove Perfmatters cache folder.<\\/li>\\n<li>Added readme.txt file.<\\/li>\\n<\\/ul>\\n<p>1.7.4<\\/p>\\n<ul>\\n<li>Re-enabled Local Google Fonts functionality.<\\/li>\\n<li>Refactoring of buffer-related code and various functions that were already using our main buffer filter.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>1.7.3<\\/p>\\n<ul>\\n<li>Rolled back the latest changes related to the new universal buffer class and Local Google Fonts while we do some more in-depth testing. We\'ll be working to release this feature next week using an alternative method.<\\/li>\\n<\\/ul>\\n<p>1.7.2<\\/p>\\n<ul>\\n<li>Added new Fonts section inside of the main Options tab.<\\/li>\\n<li>Added new option to use <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/font-display-swap\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Display Swap<\\/a> for Google fonts.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/host-google-fonts-locally\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Local Google Fonts<\\/a> option which will attempt to download any Google Font files and serve them from your local server or CDN.<\\/li>\\n<li>Integrated new universal HTML buffer library to help going forward with plugin features that manipulate DOM elements.<\\/li>\\n<li>Migrated CDN Rewrite feature to the universal buffer class.<\\/li>\\n<li>Added new perfmatters_delayed_scripts filter to modify the Delay JavaScript input array before any scripts are delayed.<\\/li>\\n<li>Added new perfmatters_preload filter to modify the Preloads data array before anything is printed.<\\/li>\\n<li>Made some compatibility improvements to the inline lazy loading JavaScript.<\\/li>\\n<li>Added attributes to delayed scripts to exclude them from being picked up by Litespeed Cache.<\\/li>\\n<li>Added exclusion for SiteGround Optimizer to the main Script Manager JavaScript file.<\\/li>\\n<li>Added CodeMirror support to all code text area inputs in plugin settings.<\\/li>\\n<li>Removed license activation check and corresponding links from the plugins page to improve back-end performance.<\\/li>\\n<\\/ul>\\n<p>1.7.1<\\/p>\\n<ul>\\n<li>Added expiration date row to license tab in plugin settings.<\\/li>\\n<li>Added support for WooCommerce shop page when setting a preload location by post ID.<\\/li>\\n<li>Fixed an issue with device exceptions not working correctly in MU Mode.<\\/li>\\n<li>Fixed a query string encoding issue that was affecting some email templates when using a custom login URL.<\\/li>\\n<\\/ul>\\n<p>1.7.0<\\/p>\\n<ul>\\n<li>Fixed an issue where Preload tags were still being printed on archive pages even if a location was set.<\\/li>\\n<li>Fixed a compatibility issue with older WordPress versions when using certain functions that check for a JSON request.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>1.6.9<\\/p>\\n<ul>\\n<li>New additions to preload feature, allowing specification for device type and location.<\\/li>\\n<li>Script Manager improvements to allow for Regex disable to be used alongside Current URL disables for the same script.<\\/li>\\n<li>Added new Script Manager exception for device type.<\\/li>\\n<li>Add new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/delay-javascript\\/#timeout\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Delay Timeout<\\/a> option when delaying JavaScript.<\\/li>\\n<li>Added new wheel event to user interaction script for delay function.<\\/li>\\n<li>Added new multisite network administration tool to apply default site settings to all subsites.<\\/li>\\n<li>Multiple improvements to WooCommerce disable scripts toggle for increased effectiveness.<\\/li>\\n<li>Added additional exclusions for JSON and REST requests to all asset optimization functions.<\\/li>\\n<li>Fixed an undefined index warning coming from local analytics function.<\\/li>\\n<li>Fixed an issue where YouTube preview thumbnails were getting a layout shift warning when using a theme with responsive embed support.<\\/li>\\n<li>Fixed a Script Manager bug that was not fully clearing exceptions when changing disable away from everywhere.<\\/li>\\n<li>Script Manager styling compatibility fixes.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>1.6.8<\\/p>\\n<ul>\\n<li>Compatibility fixes for local analytics when using MonsterInsights.<\\/li>\\n<li>Local analytics improvements for multisite.<\\/li>\\n<li>Added alt tag to YouTube preview thumbnail images.<\\/li>\\n<li>Fixed a PHP undefined index notice coming from functions.php.<\\/li>\\n<li>Translation file updates.<\\/li>\\n<\\/ul>\\n<p>1.6.7<\\/p>\\n<ul>\\n<li>Added new tool to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/purge-meta-options\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Purge Perfmatters Meta Options<\\/a>.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/disable-google-maps-api-wordpress\\/#exclude\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Exclude Post IDs<\\/a> input for existing Disable Google Maps option.<\\/li>\\n<li>Added new gtag.js option to local analytics script type selection.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/local-analytics\\/#gtag-cdn\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">CDN URL<\\/a> input to local analytics options when using gtag.js.<\\/li>\\n<li>Added new option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/local-analytics\\/#amp\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Enable AMP Support<\\/a> to local analytics.<\\/li>\\n<li>Moved Use MonsterInsights option to gtag.js script type and updated script replacement hook.<\\/li>\\n<li>Added onload function to style preloads to prevent duplicate preloads from occurring.<\\/li>\\n<li>Added exception for WP Rocket script deferral to our lazy load script.<\\/li>\\n<li>Added exception for site health tool to disable heartbeat function.<\\/li>\\n<li>Fixed an issue where background images weren\\u2019t being lazy loaded if the style attribute was the first attribute declared on the element.<\\/li>\\n<li>Script Manager styling fixes.<\\/li>\\n<li>Fixed a PHP warning coming from settings.php.<\\/li>\\n<li>Translation file updates.<\\/li>\\n<\\/ul>\\n<p>1.6.6<\\/p>\\n<ul>\\n<li>Added new Script Manager exception to select <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/script-manager-logged-in-logged-out\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">logged in or logged out<\\/a> users.<\\/li>\\n<li>Added new option in Script Manager settings to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/script-dependencies\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Display Dependencies<\\/a>.<\\/li>\\n<li>Added total plugin sizes in the Script Manager.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/lazy-load-wordpress\\/#viewport-threshold\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_lazyload_threshold<\\/a> filter to adjust the distance at which lazy elements are loaded.<\\/li>\\n<li>Multiple Script Manager style and UI improvements.<\\/li>\\n<li>Fixed an issue where MU mode script was attempting to run on wp-login.php.<\\/li>\\n<li>Multiple page builder compatibility fixes.<\\/li>\\n<li>Made an adjustment to prevent YouTube preview thumbnails from getting picked up by Pinterest image hover tools.<\\/li>\\n<li>Removed deprecated plugin option to Remove Query Strings. Make sure to double-check your preloads as Google needs the exact URL when preloading.<\\/li>\\n<li>PHP 8 compatibility testing.<\\/li>\\n<li>Minor adjustments to lazy load inline scripts to fix invalid markup warnings.<\\/li>\\n<\\/ul>\\n<p>1.6.5<\\/p>\\n<ul>\\n<li>Added new option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/delay-javascript\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Delay JavaScript<\\/a> from loading until user interaction.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/local-analytics\\/#script-type\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">gtag.js v4<\\/a> option to local analytics.<\\/li>\\n<li>Added new built-in option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/lazy-load-wordpress\\/#exclude\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Exclude from Lazy Loading<\\/a> which can be used in addition to the existing filter.<\\/li>\\n<li>Add new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/lazy-load-wordpress\\/#youtube-preview-thumbnails\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_lazyload_youtube_thumbnail_resolution<\\/a> filter to adjust YouTube preview thumbnail quality.<\\/li>\\n<li>Optimized analytics updater function.<\\/li>\\n<li>Updated EDD plugin updater class which will now allow for WordPress auto-update support.<\\/li>\\n<li>Removed option to Defer Inline JavaScript which is now being replaced by the new Delay JavaScript option.<\\/li>\\n<li>Adjusted Script Manager hook priority for better compatibility.<\\/li>\\n<li>Compatability fix to the DOM Monitoring lazy load option.<\\/li>\\n<li>Added compatibility fix for jQuery fitVids to lazy loading function.<\\/li>\\n<li>Fixed an issue where lazy loading was attempting to run on AMP pages.<\\/li>\\n<\\/ul>\\n<p>1.6.4<\\/p>\\n<ul>\\n<li>Fixed an issue that was causing the Reset Script Manager button to not work correctly.<\\/li>\\n<li>Fixed an issue where the Perfmatters meta box wouldn\'t display if only using Lazy Loading.<\\/li>\\n<li>Adjusted Script Manager hook priority for better compatibility.<\\/li>\\n<li>Added additional checks to MU Mode plugin file to prevent it from interfering with certain REST API requests. (Fixes a bug when running the Yoast SEO data indexer.)<\\/li>\\n<li>Added additional checks to confirm user functions are available before verifying admin status.<\\/li>\\n<li>Updated translation files.<\\/li>\\n<\\/ul>\\n<p>1.6.3<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/testing-mode\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Testing Mode<\\/a> option to the Script Manager settings.<\\/li>\\n<li>Rewrote script-manager.js entirely using vanilla JavaScript to get rid of jQuery dependency.<\\/li>\\n<li>Added additional MU Mode check to help prevent certain configurations from interfering with AJAX requests.<\\/li>\\n<li>Improved Script Manager form handling.<\\/li>\\n<li>Adjusted Script Manager disclaimer text and added a close button.<\\/li>\\n<li>Moved the Script Manager print function from the wp_footer hook to shutdown for better compatibility.<\\/li>\\n<li>Fixed an undefined index warning in the Lazy Load function.<\\/li>\\n<li>Added a Lazy Load exclusion for Gravity Forms iframes.<\\/li>\\n<li>Added a Rocket Loader exclusion to the Instant Page JS file.<\\/li>\\n<li>Added an exclusion to the CDN Rewrite for script-manager.js.<\\/li>\\n<li>Script Manager styling fixes for better compatibility.<\\/li>\\n<\\/ul>\\n<p>1.6.2<\\/p>\\n<ul>\\n<li>Updated placeholder text in Preload UI.<\\/li>\\n<li>Fixed an issue where the Password Strength Meter script was getting disabled in the admin.<\\/li>\\n<li>Small tweak to JS Deferral buffer to make sure HTML is being filtered correctly.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>1.6.1<\\/p>\\n<ul>\\n<li>New Local Analytics Script Type toggle with new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/local-analytics\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Minimal Analytics<\\/a> options.<\\/li>\\n<li>New <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/defer-javascript-wordpress\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">JavaScript Deferral<\\/a> options in Extras &gt; Assets.<\\/li>\\n<li>Updates to Cart Fragments and Password Strength Meter toggles to improve effectiveness.<\\/li>\\n<li>Multiple updates to Instant Page functionality for better compatibility.<\\/li>\\n<li>Multiple plugin admin UI updates and improvements.<\\/li>\\n<li>Script Manager style updates for better compatibility.<\\/li>\\n<li>MU Mode improvements for increased stability.<\\/li>\\n<li>Fixed an issue causing Preload and Preconnect settings to not save correctly in some cases.<\\/li>\\n<\\/ul>\\n<p>1.6.0<\\/p>\\n<ul>\\n<li>Added a filter to disable WordPress\' native lazy loading when Perfmatters\' lazy loading is active.<\\/li>\\n<li>Adjusted Script Manager styles to more effectively overlay the entire page while still allowing admin bar functions to be fully available.<\\/li>\\n<li>Fixed an undefined index notice that was appearing on specific lazy loading and script manager functions.<\\/li>\\n<li>Updated translation files.<\\/li>\\n<\\/ul>\\n<p>1.5.9<\\/p>\\n<ul>\\n<li>Added new Preloading section in the Extras tab, with new options for <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/link-prefetch\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Instant Page<\\/a> and <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/preload\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Preload<\\/a>.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/lazy-load-wordpress\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_lazyload_forced_attributes<\\/a> filter to allow for matched elements to be skipped when checking for exclusions.<\\/li>\\n<li>Added support for WooCommerce Shop page to show up as a Current URL option in the Script Manager.<\\/li>\\n<li>Added exclusions for REST and AJAX requests to MU Mode function.<\\/li>\\n<li>Fixed a bug that was causing the MU Mode function to still run even if the Script Manager was disabled.<\\/li>\\n<li>Fixed an issue where images were being prepped for lazy loading on feed URLs.<\\/li>\\n<li>Fixed an issue where lazy loading was breaking images in embeds from the same site.<\\/li>\\n<li>Compatibility fixes for lazy load script with Autoptimize and Litespeed Cache.<\\/li>\\n<\\/ul>\\n<p>1.5.8<\\/p>\\n<ul>\\n<li>Added support for lazy loading background images, iframes, and videos.<\\/li>\\n<li>Added new lazy loading option to enable Youtube Preview Thumbnails.<\\/li>\\n<li>Added multiple page builder exclusions to our lazy load functions.<\\/li>\\n<li>Added proper support for 404 templates in the Script Manager (non-MU).<\\/li>\\n<li>Fixed some minor styling issues in the Script Manager UI.<\\/li>\\n<li>Fixed an undefined index in the database optimizer class.<\\/li>\\n<li>Removed customer email row from the license tab.<\\/li>\\n<\\/ul>\\n<p>1.5.7<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/optimize-wordpress-database\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Database Optimization<\\/a> section in the Extras tab.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/lazy-load-wordpress\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">DOM Monitoring<\\/a> option to complement our existing lazy load settings.<\\/li>\\n<li>Added additional input styles in the Script Manager for better compatibility<\\/li>\\n<li>Made some changes to the Script Manager file include process for better compatibility.<\\/li>\\n<li>Fixed multiple undefined index notices.<\\/li>\\n<li>Updated translation files.<\\/li>\\n<\\/ul>\\n<p>1.5.6<\\/p>\\n<ul>\\n<li>Plugin UI improvements, new tooltip styles.<\\/li>\\n<li>Licensing workflow improvements. Simpler UI, license no longer deactivated on plugin deactivation, license auto-activates on input.<\\/li>\\n<li>Moved Script Manager javascript back to a separate plugin file for better compatibility.<\\/li>\\n<li>Added Remove Query Strings exemption to the Script Manager javascript file.<\\/li>\\n<li>Code refactoring.<\\/li>\\n<\\/ul>\\n<p>1.5.5<\\/p>\\n<ul>\\n<li>Added a new modified function to the MU plugin file which should be able to get the current post ID more effectively for certain types of URLs (custom post types, blog page, etc...).<\\/li>\\n<li>Made some improvements to the MU plugin file detection and update process.<\\/li>\\n<\\/ul>\\n<p>1.5.4<\\/p>\\n<ul>\\n<li>Added additional tooltip warning text to the MU Mode toggle.<\\/li>\\n<li>Added <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/mu-mode\\/#debug-mode\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">mu_mode=off<\\/a> URL parameter to force the page to load with MU Mode settings disabled.<\\/li>\\n<li>Added an additi0nal check to make sure MU Mode settings don\'t run if the base Perfmatters plugin is not activated.<\\/li>\\n<\\/ul>\\n<p>1.5.3<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/mu-mode\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">MU Mode<\\/a> (BETA) feature in the Script Manager which can be used to disable plugins per page.<\\/li>\\n<li>Reworked main Script Manager update function to dynamically save settings via AJAX to prevent having to reload the page every time options are saved.<\\/li>\\n<li>Moved Script Manager javascript inline to better support further updates.<\\/li>\\n<li>Fixed an issue in the Script Manager where a Current URL disable would not function correctly for an individual script if the plugin\'s scripts were disabled globally on a different Current URL.<\\/li>\\n<li>Changed hooks for Disable Google Maps and Disable Google Fonts toggles to prevent a conflict with Gutenberg.<\\/li>\\n<li>Added an exclusion attribute to our LazyLoad script to prevent it from conflicting with WP Rocket\'s JS deferral feature.<\\/li>\\n<li>Updated EDD Plugin Updater Class to version 1.7.1.<\\/li>\\n<li>Updated various translation files.<\\/li>\\n<\\/ul>\\n<p>1.5.2<\\/p>\\n<ul>\\n<li>Added new options in Extras \\u2192 Tools to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/import-export\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Import and Export Plugin Settings<\\/a>.<\\/li>\\n<li>Updated Script Manager form input names to be more specific to prevent conflicts when saving Script Manager settings.<\\/li>\\n<li>Added compatibility fix for Beaver Builder to the Script Manager dequeue function.<\\/li>\\n<li>Updated French and German translation files.<\\/li>\\n<\\/ul>\\n<p>1.5.1<\\/p>\\n<ul>\\n<li>Adjusted the Script Manager styles for better compatibility with other admin bar tools when the Script Manager UI is being displayed.<\\/li>\\n<li>Fixed an issue in the Script Manager that was causing individual script settings to not work correctly when the parent group had previously been disabled.<\\/li>\\n<li>Updated Russian (ru_RU) translation files.<\\/li>\\n<li>Updated plugin description.<\\/li>\\n<\\/ul>\\n<p>1.5.0<\\/p>\\n<ul>\\n<li>Fixed a bug that was causing the Script Manager dequeue function to interfere with the query loop in certain cases.<\\/li>\\n<\\/ul>\\n<p>1.4.9<\\/p>\\n<ul>\\n<li>Performance update to Script Manager form submission function which should help dramatically reduce the footprint when saving script configurations.<\\/li>\\n<li>Removed the Current URL option in the Script Manager when loaded on URLs without a valid post ID. (ex. dynamically generated archive templates)<\\/li>\\n<li>Added plugin settings page header with links to Contact and Support.<\\/li>\\n<li>Minor styling fixes in plugin settings UI.<\\/li>\\n<li>Updated Russian (ru_RU) translation files.<\\/li>\\n<\\/ul>\\n<p>1.4.8<\\/p>\\n<ul>\\n<li>Added new \'Body Code\' box in the Extras tab to go along with our existing header + footer boxes to give some more control there.<\\/li>\\n<li>Added some limits to the Script Manager action links in WP Admin to ensure they are only showing up for public post types.<\\/li>\\n<li>Fixed a bug that was causing the admin stylesheet not to load on the network settings page when running on a multisite.<\\/li>\\n<li>Added Russian (ru_RU) translation files. (credit: Sergey Shljahov)<\\/li>\\n<\\/ul>\\n<p>1.4.7<\\/p>\\n<ul>\\n<li>Added an exception for Gravity Forms to the Disable Heartbeat function.<\\/li>\\n<li>Added an exception for Contact Form 7 to the Disable REST API function.<\\/li>\\n<li>Added updated German (de_DE) translation files. (credit: Daniel Luttermann)<\\/li>\\n<\\/ul>\\n<p>1.4.6<\\/p>\\n<ul>\\n<li>Added a specific and more generous threshold for lazy loading.<\\/li>\\n<li>Added some additional dequeues to the Disable WooCommerce function to target inline CSS and JS.<\\/li>\\n<\\/ul>\\n<p>1.4.5<\\/p>\\n<ul>\\n<li>Updated Disable Google Maps and Disable Google Fonts toggles to not run in WP Admin.<\\/li>\\n<li>Turned off native lazy loading by default and added new option to Use Native.<\\/li>\\n<li>Added perfmatters_lazyload_excluded_attributes filter which allows for an array of attribute strings to be given that if found will exclude the matched image\\/s from lazy loading.<\\/li>\\n<li>Made some compatibility improvements to the Script Manager function that gets the ID of the current post.<\\/li>\\n<li>Added perfmatters_get_current_ID filter which allows the user to extend or modify the functionality of the Script Manager\'s current ID function.<\\/li>\\n<\\/ul>\\n<p>1.4.4<\\/p>\\n<ul>\\n<li>Fixed undefined index PHP Notice coming from the Preconnect settings display function.<\\/li>\\n<li>Added additional compatibility with Elementor when using the Script Manager to disable certain Elementor scripts + styles.<\\/li>\\n<li>Added a ignore flag class to all Lazy Load functions. Simply add the \'no-lazy\' class to any image element you want to be exempt from lazy loading.<\\/li>\\n<li>Added validation filter to Login URL input to prevent incompatible characters from being entered.<\\/li>\\n<\\/ul>\\n<p>1.4.3<\\/p>\\n<ul>\\n<li>Fixed an issue with the Lazy Load function that was causing an error with some older PHP versions.<\\/li>\\n<\\/ul>\\n<p>1.4.2<\\/p>\\n<ul>\\n<li>Added new option for <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/lazy-load-wordpress\\/\\\">Lazy Loading<\\/a> images (BETA).<\\/li>\\n<\\/ul>\\n<p>1.4.1<\\/p>\\n<ul>\\n<li>New addition to the Preconnect option, you can now choose to whether or not to add the crossorigin property for each Preconnect URL.<\\/li>\\n<li>Optimization to the loading of Perfmatters admin scripts + styles.<\\/li>\\n<li>Added additional Script Manager styles for better compatibility.<\\/li>\\n<li>Added an additional function for the Custom Login URL to help rewrite certain wp-admin links in specific multisite setups.<\\/li>\\n<li>Reorganized plugin action links in the plugins table.<\\/li>\\n<\\/ul>\\n<p>1.4.0<\\/p>\\n<ul>\\n<li>Fixed an issue where the Current URL Exceptions were not loading correctly after saving in the Script Manager.<\\/li>\\n<\\/ul>\\n<p>1.3.9<\\/p>\\n<ul>\\n<li>Added new Extra options to Add Header Code and Add Footer Code.<\\/li>\\n<li>Added missing blank defaults for DNS Prefetch and Preconnect options.<\\/li>\\n<li>Added functionality to force the Admin Bar to display when the Script Manager is loaded.<\\/li>\\n<li>Script Manager styling adjustments.<\\/li>\\n<li>Added success message on save when the Script Manager options are updated.<\\/li>\\n<li>Added support for 404 page when trying to disable or enable on the Current URL.<\\/li>\\n<\\/ul>\\n<p>1.3.8<\\/p>\\n<ul>\\n<li>Added new option to Disable Comments.<\\/li>\\n<li>Updated a section of the Script Manager to better reflect the Current URL when determining if it is a match for the given regex pattern.<\\/li>\\n<\\/ul>\\n<p>1.3.7<\\/p>\\n<ul>\\n<li>Added links to the Script Manager from the posts list page and post edit page which will take you to the front end and load the Script Manager for the corresponding post.<\\/li>\\n<li>Added warning notices for both WP_POST_REVISIONS and AUTOSAVE_INTERVAL if they are set in Perfmatters while also defined elsewhere.<\\/li>\\n<\\/ul>\\n<p>1.3.6<\\/p>\\n<ul>\\n<li>Added new option to Disable Google Fonts.<\\/li>\\n<li>Removed option to Disable Completely from the Disable REST API dropdown to due core WordPress compatibility issues.<\\/li>\\n<li>Added additional object check to prevent PHP warning in certain cases when using the Separate Archives option in the Script Manager.<\\/li>\\n<li>Added some additional logic to filter duplicate scripts out of the Script Manager master array if they are present.<\\/li>\\n<li>CSS fixes in the Script Manager for better compatibility.<\\/li>\\n<li>Expanded the Script Manager current ID function for better reliability.<\\/li>\\n<\\/ul>\\n<p>1.3.5<\\/p>\\n<ul>\\n<li>Added new Disable REST API option which will disable REST API requests and display an authentication error message if the requester doesn\'t have permission.<\\/li>\\n<li>Added additional action removal to the Remove REST API Links function.<\\/li>\\n<li>Made some changes to the Script Manager save button. It is now fixed on the bottom of the screen for easier access without having to scroll.<\\/li>\\n<li>Additional Script Manager style adjustments.<\\/li>\\n<\\/ul>\\n<p>1.3.4<\\/p>\\n<ul>\\n<li>Minor update to Remove Comment URLs function priority for better compatibility with theme templates.<\\/li>\\n<\\/ul>\\n<p>1.3.3<\\/p>\\n<ul>\\n<li>Added new option to Remove Comment URLs.<\\/li>\\n<li>Added French (fr_FR) language translation.<\\/li>\\n<li>Fixed a PHP warning that would occur when saving Script Manager settings in some instances when Display Archives was also enabled.<\\/li>\\n<\\/ul>\\n<p>1.3.2<\\/p>\\n<ul>\\n<li>Added new option to Add Blank Favicon in the Extras tab.<\\/li>\\n<li>Fixed an issue in the Script Manager Global View where options set for the home page would show up as a 0 with a broken link.<\\/li>\\n<li>Added some additional styles to the main Script Manager view for better compatibility.<\\/li>\\n<\\/ul>\\n<p>1.3.1<\\/p>\\n<ul>\\n<li>Fixed a bug that would sometimes cause an enabled message to display on the front end when using the Regex option in the Script Manager.<\\/li>\\n<\\/ul>\\n<p>1.3.0<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/regex\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Regex<\\/a> option the Script Manager for both disables and exceptions.<\\/li>\\n<li>Added new Reset option in the Script Manager settings which allows for a complete wipe + reset of all configured Script Manager options.<\\/li>\\n<li>Added additional Script Manager styles to improve compatability.<\\/li>\\n<li>Added new status message in Script Manager global view when no options have been set.<\\/li>\\n<\\/ul>\\n<p>1.2.9<\\/p>\\n<ul>\\n<li>Updated uninstallation function to account for new Script Manager settings<\\/li>\\n<li>Updated Google Analytics Disable Display Features function to work correctly with Google\'s new format.<\\/li>\\n<li>Added support to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/local-analytics\\/#monster-insights\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Use MonsterInsights<\\/a> along with Perfmatters local analytics functionality.<\\/li>\\n<li>Added new option in Script Manager settings to Display Archives which will allow you to selectively enable scripts on generated archive pages.<\\/li>\\n<\\/ul>\\n<p>1.2.8<\\/p>\\n<ul>\\n<li>Added mobile + responsive styles to the Script Manager navigation.<\\/li>\\n<li>Added additional styles to the Script Manager for compatibility.<\\/li>\\n<li>Script Manager javascript changes + improvements, specifically for compatibility with sites script minification plugins.<\\/li>\\n<li>Fixed a bug where the Script Manager disclaimer would not turn back on after being switched off.<\\/li>\\n<\\/ul>\\n<p>1.2.7<\\/p>\\n<ul>\\n<li>Small patch to check for a required WP function and include core file if necessary for some setups.<\\/li>\\n<\\/ul>\\n<p>1.2.6<\\/p>\\n<ul>\\n<li>All new Script Manager! View updated documentation at\\u00a0<a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/disable-scripts-per-post-page\\/\\\">https:\\/\\/perfmatters.io\\/docs\\/disable-scripts-per-post-page\\/<\\/a>.<\\/li>\\n<li>Fix to remove Emoji DNS Prefetch when Emojis are disabled<\\/li>\\n<\\/ul>\\n<p>1.2.5<\\/p>\\n<ul>\\n<li>Fixed an issue with the Change Login URL function that was causing an error when using WP-CLI.<\\/li>\\n<li>Added some additional compatibility styles to the Script Manager.<\\/li>\\n<\\/ul>\\n<p>1.2.4<\\/p>\\n<ul>\\n<li>Fixed a bug in the Script Manager that caused Current URL Enable checkboxes to not save properly in certain situations.<\\/li>\\n<li>Updated EDD license functions to process proper SSL verification when calling the WordPress HTTP API.<\\/li>\\n<li>Updated perfmatters_default_options array with new options from recent updates.<\\/li>\\n<li>Removed BETA tag from Local Analytics option.<\\/li>\\n<li>Added more details to the Script Manager Global Settings to see which post IDs and post types have settings assigned to them.<\\/li>\\n<li>Additional styles added to the Script Manager for better compatibility.<\\/li>\\n<li>Updated .pot and translation files.<\\/li>\\n<\\/ul>\\n<p>1.2.3<\\/p>\\n<ul>\\n<li>Bugfix - Rolled back some of the heartbeat changes from the previous update to do some additional testing. Should solve some plugin conflicts that popped up.<\\/li>\\n<\\/ul>\\n<p>1.2.2<\\/p>\\n<ul>\\n<li>Added additional WooCommerce checks for WC specific pages before running disable functions.<\\/li>\\n<li>Changes to the Disable Heartbeat function to avoid causing a script dependency error.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/disable-password-meter-strength\\/\\\">Disable Password Strength Meter<\\/a> option.<\\/li>\\n<li>Fixed an issue that was causing Script Manger dropdown colors to not display correctly when jQuery was disabled.<\\/li>\\n<li>Modified admin notice to print our using \'admin_notices\' hook. (credit: Christian Follmann)<\\/li>\\n<li>Made some adjustments to Script Manager copy to remove unnecessary HTML from the translations. (credit: Christian Follmann)<\\/li>\\n<li>Props to Hasan Basri (<a href=\\\"http:\\/\\/www.hasanbasri93.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\" data-saferedirecturl=\\\"https:\\/\\/www.google.com\\/url?q=http:\\/\\/www.hasanbasri93.com&amp;source=gmail&amp;ust=1530375831273000&amp;usg=AFQjCNHnfwHkAwWtNxgfmCyGrwSm3NEyng\\\">www.hasanbasri93.com<\\/a>) for Indonesian (id_ID) translation.\\u00a0&#x1f44f;<\\/li>\\n<li>Updated translations based on the new .pot file.<\\/li>\\n<li>Various other minor tweaks + improvements.<\\/li>\\n<\\/ul>\\n<p>1.2.1<\\/p>\\n<ul>\\n<li>Updated Local Analytics function to improve compatibility with different server setups.<\\/li>\\n<\\/ul>\\n<p>1.2.0<\\/p>\\n<ul>\\n<li>New option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/local-analytics\\/\\\">Enable Local Analytics<\\/a>, along with a new dedicated Google Analytics tab with various related options.<\\/li>\\n<li>Added some additional logic to redirect RSS Feed URLs when Disable RSS Feeds is toggled on.<\\/li>\\n<li>Fixed an issue that was causing certain email links not to work when using a Custom Login URL.<\\/li>\\n<li>Fixed a bug that was causing the password reset link not to function properly when using a Custom Login URL in a multisite environment.<\\/li>\\n<li>Made some adjustments to the Disable Self Pingbacks function to fix an issue with case sensitivity.<\\/li>\\n<li>Updated text domain for translations in the EDD Updater class.<\\/li>\\n<li>Fixed a bug where the Clean Uninstall option would still show up on individual sites in a multisite environment.<\\/li>\\n<li>Props to\\u00a0PDPK di Mauro Panzarola\\u00a0(<a href=\\\"https:\\/\\/pdpkapp.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\" data-saferedirecturl=\\\"https:\\/\\/www.google.com\\/url?q=https:\\/\\/pdpkapp.com&amp;source=gmail&amp;ust=1526653041476000&amp;usg=AFQjCNHfek6Z-CMgUhd0MwvU5QGK6cm0hg\\\">https:\\/\\/pdpkapp.com<\\/a>) for Italian (it_IT) translation.\\u00a0&#x1f44f;<\\/li>\\n<\\/ul>\\n<p>1.1.9<\\/p>\\n<ul>\\n<li>Perfmatters is now translation ready! If you are interested in helping out with a translation, please <a href=\\\"https:\\/\\/perfmatters.io\\/contact\\/\\\">contact us<\\/a>.<\\/li>\\n<li>Props to Christian Foellmann (<a href=\\\"https:\\/\\/github.com\\/cfoellmann\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">cfoellmann@GitHub<\\/a>) for German (de_DE) translation.\\u00a0&#x1f44f;<\\/li>\\n<li>Fixed a PHP undefined index warning in the Script Manager.<\\/li>\\n<li>Fixed a bug that was causing issues with the Change Login URL slug when using certain permalink settings.<\\/li>\\n<\\/ul>\\n<p>1.1.8<\\/p>\\n<ul>\\n<li>Fixed a compatibility issue with Script Manager dequeue priority that could cause it to not function properly.<\\/li>\\n<li>Minor update to the uninstall function.<\\/li>\\n<\\/ul>\\n<p>1.1.7<\\/p>\\n<ul>\\n<li>Fixed a bug that was causing the remove query strings option to conflict with files that have necessary query string parameters (Google Fonts).<\\/li>\\n<\\/ul>\\n<p>1.1.6<\\/p>\\n<ul>\\n<li>Added new Clean Uninstall option in the extras tab.<\\/li>\\n<li>Added new Preconnect option in the extras tab.<\\/li>\\n<\\/ul>\\n<p>1.1.5<\\/p>\\n<ul>\\n<li>Fixed multiple PHP warnings related to settings + option initialization.<\\/li>\\n<\\/ul>\\n<p>1.1.4<\\/p>\\n<ul>\\n<li>Added multisite support with the ability to manage default network settings and network access control.<\\/li>\\n<li>Made some adjustments to plugin naming conventions throughout WordPress admin screens, menus, etc...<\\/li>\\n<li>Removed BETA tag on Change Login URL option.<\\/li>\\n<\\/ul>\\n<p>1.1.3<\\/p>\\n<ul>\\n<li>Added new Change Login URL (BETA) feature to change your WordPress login URL and block the default wp-admin and wp-login endpoints from being directly accessed.<\\/li>\\n<li>Added new Disable Dashicons feature to disable Dashicons from the front end when not logged in.<\\/li>\\n<\\/ul>\\n<p>1.1.2<\\/p>\\n<ul>\\n<li>Added character masking to the license key input field.<\\/li>\\n<\\/ul>\\n<p>1.1.1<\\/p>\\n<ul>\\n<li>Added new CDN URL Rewrite feature in a new settings tab with various settings to customize your configuration.<\\/li>\\n<li>Added new Global Settings section in the Script Manager with a visual representation of the Script Manager options set across the entire site.<\\/li>\\n<li>Made some updates to the Script Manager layout in preparation for future additional features.<\\/li>\\n<\\/ul>\\n<p>1.1.0<\\/p>\\n<ul>\\n<li>Added new Disable Google Maps toggle.<\\/li>\\n<li>Added some backend logic to the Script Manager to hide scripts that have already been disabled sitewide via the main plugin settings.<\\/li>\\n<li>Update to the EDD license activation function variables to help prevent activation conflicts with other plugins.<\\/li>\\n<\\/ul>\\n<p>1.0.9<\\/p>\\n<ul>\\n<li>Removed the toggle to disable WooCommerce reviews, as there is already a WooCommerce setting that provides that functionality.<\\/li>\\n<\\/ul>\\n<p>1.0.8<\\/p>\\n<ul>\\n<li>Added new WooCommerce section to the options tab with multiple toggles to disable or limit certain WooCommerce scripts and functionality.<\\/li>\\n<li>Added some new styles to the plugin admin page to allow for clearer organization of different sections.<\\/li>\\n<li>Fixed an undefined index notice in the Script Manager.<\\/li>\\n<li>Added some additional styles to the checkboxes in the Script Manager to fix a theme compatibility issue.<\\/li>\\n<\\/ul>\\n<p>1.0.7<\\/p>\\n<ul>\\n<li>Added functionality to remove the shortlink\\u00a0HTTP header when \'Remove Shortlink\' is toggled on.<\\/li>\\n<li>Added functionality to remove the xmlrpc.php link as well as the X-Pingback HTTP header when \'Disable XML-RPC\' is toggled on.<\\/li>\\n<\\/ul>\\n<p>1.0.6<\\/p>\\n<ul>\\n<li>Removed BETA label from Script Manager.<\\/li>\\n<li>Added new \'DNS Prefetch\' option in the Extras tab.<\\/li>\\n<\\/ul>\\n<p>1.0.5<\\/p>\\n<ul>\\n<li>Added new toggle to \'Remove REST API Links\'.<\\/li>\\n<li>Renamed \'Remove Feed Links\' toggle for more clarification.<\\/li>\\n<li>UI improvements, hovering tooltips, more links to the web documentation, etc\\u2026<\\/li>\\n<li>Added version numbers to admin scripts to avoid caching on plugin update.<\\/li>\\n<li>Refactored a good portion of the settings initialization code.<\\/li>\\n<li>Removed \\\"Beta\\\" status for script manager. It has been fully tested now and is ready to use in production.<\\/li>\\n<li><\\/li>\\n<\\/ul>\\n<p>1.0.4<\\/p>\\n<ul>\\n<li>Fixed a few PHP warnings dealing with the Script Manager option array management.<\\/li>\\n<li>Fixed a UI bug in the Script Manager causing certain post type checkboxes\\u00a0to not be selectable.<\\/li>\\n<\\/ul>\\n<p>1.0.3<\\/p>\\n<ul>\\n<li>Introduced the new Script Manager feature to disable scripts on a per page\\/post basis.<\\/li>\\n<\\/ul>\\n<p>1.0.2<\\/p>\\n<ul>\\n<li>Added Extras tab with a new option for Accessibility\\u00a0Mode. Enabling this will turn off the custom styles we use for our settings toggles and revert to standard HTML checkboxes.<\\/li>\\n<li>Additional accessibility improvements.<\\/li>\\n<li>A few style fixes.<\\/li>\\n<\\/ul>\\n<p>1.0.1<\\/p>\\n<ul>\\n<li>Accessibility improvements to the plugin settings page.<\\/li>\\n<\\/ul>\\n<p>1.0.0<\\/p>\\n<ul>\\n<li>Plugin launched.<\\/li>\\n<\\/ul>\\n\"],\"plugin\":\"perfmatters\\/perfmatters.php\",\"id\":\"perfmatters\\/perfmatters.php\"}\";}','no'),(294986,'perfmatters_used_css_time','a:4:{s:5:\"front\";i:1701965030;s:4:\"home\";i:1701965493;s:7:\"archive\";i:1701965496;i:404;i:1701966720;}','yes'),(295155,'wp_mail_logging_activated_time','1701977192','yes'),(295156,'wp_mail_logging_db_version','2','no'),(295157,'WPML_Plugin__version','1.12.0','yes'),(295160,'wp_mail_logging_user_feedback_notice','a:2:{s:4:\"time\";i:1703301890;s:9:\"dismissed\";b:1;}','yes'),(295162,'webpc_token_data','a:4:{s:11:\"token_value\";N;s:12:\"valid_status\";b:0;s:12:\"images_usage\";i:0;s:12:\"images_limit\";i:0;}','yes'),(295163,'webpc_settings','a:15:{s:7:\"quality\";s:2:\"85\";s:14:\"output_formats\";a:1:{i:0;s:4:\"webp\";}s:4:\"dirs\";a:1:{i:0;s:7:\"uploads\";}s:12:\"image_resize\";a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}s:15:\"auto_conversion\";s:3:\"yes\";s:12:\"access_token\";s:0:\"\";s:10:\"extensions\";a:4:{i:0;s:3:\"jpg\";i:1;s:3:\"png\";i:2;s:3:\"gif\";i:3;s:4:\"jpeg\";}s:6:\"method\";s:2:\"gd\";s:11:\"loader_type\";s:8:\"htaccess\";s:24:\"rewrite_inherit_disabled\";s:0:\"\";s:13:\"excluded_dirs\";s:0:\"\";s:8:\"features\";a:1:{i:0;s:12:\"only_smaller\";}s:11:\"media_stats\";s:3:\"yes\";s:18:\"cloudflare_zone_id\";s:0:\"\";s:20:\"cloudflare_api_token\";s:0:\"\";}','yes'),(295164,'webpc_is_new_installation','0','yes'),(295165,'webpc_notice_thanks','1734924187','yes'),(295166,'webpc_notice_upgrade','1734280288','yes'),(295167,'webpc_stats_installation_date','2023-12-07 19:27:42','yes'),(295168,'webpc_stats_first_version','5.11.5','yes'),(295170,'wcf_ca_status','on','yes'),(295171,'wcf_ca_gdpr_status','off','yes'),(295172,'wcf_ca_coupon_code_status','off','yes'),(295173,'wcf_ca_zapier_tracking_status','off','yes'),(295174,'wcf_ca_delete_plugin_data','off','yes'),(295175,'wcf_ca_cut_off_time','15','yes'),(295176,'wcf_ca_from_name','Le nom du site','yes'),(295177,'wcf_ca_from_email','ecomexpansion@gmail.com','yes'),(295178,'wcf_ca_reply_email','ecomexpansion@gmail.com','yes'),(295179,'wcf_ca_discount_type','percent','yes'),(295180,'wcf_ca_coupon_amount','10','yes'),(295181,'wcf_ca_zapier_cart_abandoned_webhook','','yes'),(295182,'wcf_ca_gdpr_message','Your email & cart are saved so we can send email reminders about this order.','yes'),(295183,'wcf_ca_coupon_expiry','0','yes'),(295184,'wcf_ca_coupon_expiry_unit','hours','yes'),(295185,'wcf_ca_excludes_orders','a:2:{i:0;s:10:\"processing\";i:1;s:9:\"completed\";}','yes'),(295186,'wcf_ca_version','1.2.26','yes'),(295187,'cf_analytics_installed_time','1701977290','no'),(295191,'sfa_abandoned_carts_version','2.4.0','yes'),(295192,'_site_transient_webpc_error_detector','1701977567893','no'),(295193,'webpc_errors_cache','a:0:{}','yes'),(295194,'webpc_stats_webp_all','848','yes'),(295195,'webpc_stats_webp_unconverted','0','yes'),(295196,'webpc_stats_avif_all','848','yes'),(295197,'webpc_stats_avif_unconverted','848','yes'),(295202,'_site_transient_webpc_cron_request_id','','no'),(295207,'webpc_stats_regeneration_images','848','yes'),(295533,'cf_analytics_optin','no','no'),(295939,'members_settings','a:1:{s:21:\"review_prompt_removed\";b:1;}','yes'),(295954,'litespeed.conf.cache-vary_cookies','[]','yes'),(295955,'litespeed.conf.media-preload_featured','','yes'),(295974,'woocommerce_store_id','f6f3ff36-dcfe-4a76-bffd-7e58c181f5a3','yes'),(296027,'rank_math_sitemap_cache_files','a:1:{s:46:\"rank_math_970933a868c795cb9265e4fdd365e52a.xml\";s:1:\"1\";}','yes'),(296223,'wpvivid_backup_success_count','3','no'),(296224,'wpvivid_backup_reports','a:3:{s:21:\"wpvivid-657c804a1c68b\";a:3:{s:7:\"task_id\";s:21:\"wpvivid-657c804a1c68b\";s:11:\"backup_time\";i:1702658123;s:6:\"status\";s:34:\"The last backup message not found.\";}s:21:\"wpvivid-65931ccb76c26\";a:3:{s:7:\"task_id\";s:21:\"wpvivid-65931ccb76c26\";s:11:\"backup_time\";i:1704139980;s:6:\"status\";s:34:\"The last backup message not found.\";}s:21:\"wpvivid-659b29f0c405c\";a:3:{s:7:\"task_id\";s:21:\"wpvivid-659b29f0c405c\";s:11:\"backup_time\";i:1704668155;s:6:\"status\";s:34:\"The last backup message not found.\";}}','yes'),(296395,'litespeed.conf._version','6.0.0.1','yes'),(296407,'wpaicg_azure_api_key','','yes'),(296408,'wpaicg_azure_endpoint','','yes'),(296409,'wpaicg_azure_deployment','','yes'),(296410,'wpaicg_azure_embeddings','','yes'),(296411,'wpaicg_provider','OpenAI','yes'),(296412,'wpaicg_ai_model','gpt-4-1106-preview','yes'),(296413,'wpaicg_toc_title','Table of Contents','yes'),(296414,'wpaicg_intro_title_tag','h2','yes'),(296415,'wpaicg_conclusion_title_tag','h2','yes'),(296416,'wpaicg_image_source','dalle3','yes'),(296417,'wpaicg_featured_image_source','dalle3','yes'),(296418,'wpaicg_sleep_time','1','yes'),(296419,'wpaicg_woo_custom_prompt_title','Compose an SEO-optimized title in English for the following product: %s. Ensure it is engaging, concise, and includes relevant keywords to maximize its visibility on search engines.','yes'),(296420,'wpaicg_woo_custom_prompt_short','Provide a compelling and concise summary in English for the following product: %s, highlighting its key features, benefits, and unique selling points.','yes'),(296421,'wpaicg_woo_custom_prompt_description','Craft a comprehensive and engaging product description in English for: %s. Include specific details, features, and benefits, as well as the value it offers to the customer, thereby creating a compelling narrative around the product.','yes'),(296422,'wpaicg_woo_custom_prompt_focus_keyword','Identify the primary keyword for the following product: %s. Please respond in English. No additional comments, just the keyword.','yes'),(296423,'wpaicg_woo_custom_prompt_keywords','Propose a set of relevant keywords in English for the following product: %s. The keywords should be directly related to the product, enhancing its discoverability. Please present these keywords in a comma-separated format, avoiding the use of symbols such as -, #, etc.','yes'),(296424,'wpaicg_woo_custom_prompt_meta','Craft a compelling and concise meta description in English for: %s. Aim to highlight its key features and benefits within a limit of 155 characters, while incorporating relevant keywords for SEO effectiveness.','yes'),(296425,'wpaicg_custom_image_settings','a:9:{s:6:\"artist\";s:4:\"None\";s:17:\"photography_style\";s:4:\"None\";s:8:\"lighting\";s:4:\"None\";s:7:\"subject\";s:4:\"None\";s:15:\"camera_settings\";s:4:\"None\";s:11:\"composition\";s:4:\"None\";s:10:\"resolution\";s:4:\"None\";s:5:\"color\";s:4:\"None\";s:15:\"special_effects\";s:4:\"None\";}','yes'),(296426,'wpaicg_editor_change_action','below','yes'),(296427,'wpaicg_editor_button_menus','a:17:{i:0;a:2:{s:4:\"name\";s:28:\"Write a paragraph about this\";s:6:\"prompt\";s:36:\"Write a paragraph about this: [text]\";}i:1;a:2:{s:4:\"name\";s:9:\"Summarize\";s:6:\"prompt\";s:22:\"Summarize this: [text]\";}i:2;a:2:{s:4:\"name\";s:6:\"Expand\";s:6:\"prompt\";s:19:\"Expand this: [text]\";}i:3;a:2:{s:4:\"name\";s:7:\"Rewrite\";s:6:\"prompt\";s:20:\"Rewrite this: [text]\";}i:4;a:2:{s:4:\"name\";s:25:\"Generate ideas about this\";s:6:\"prompt\";s:33:\"Generate ideas about this: [text]\";}i:5;a:2:{s:4:\"name\";s:20:\"Make a bulleted list\";s:6:\"prompt\";s:28:\"Make a bulleted list: [text]\";}i:6;a:2:{s:4:\"name\";s:10:\"Paraphrase\";s:6:\"prompt\";s:23:\"Paraphrase this: [text]\";}i:7;a:2:{s:4:\"name\";s:25:\"Generate a call to action\";s:6:\"prompt\";s:44:\"Generate a call to action about this: [text]\";}i:8;a:2:{s:4:\"name\";s:15:\"Correct grammar\";s:6:\"prompt\";s:31:\"Correct grammar in this: [text]\";}i:9;a:2:{s:4:\"name\";s:19:\"Generate a question\";s:6:\"prompt\";s:38:\"Generate a question about this: [text]\";}i:10;a:2:{s:4:\"name\";s:15:\"Suggest a title\";s:6:\"prompt\";s:32:\"Suggest a title for this: [text]\";}i:11;a:2:{s:4:\"name\";s:24:\"Convert to passive voice\";s:6:\"prompt\";s:37:\"Convert this to passive voice: [text]\";}i:12;a:2:{s:4:\"name\";s:23:\"Convert to active voice\";s:6:\"prompt\";s:36:\"Convert this to active voice: [text]\";}i:13;a:2:{s:4:\"name\";s:18:\"Write a conclusion\";s:6:\"prompt\";s:35:\"Write a conclusion for this: [text]\";}i:14;a:2:{s:4:\"name\";s:25:\"Provide a counterargument\";s:6:\"prompt\";s:42:\"Provide a counterargument for this: [text]\";}i:15;a:2:{s:4:\"name\";s:16:\"Generate a quote\";s:6:\"prompt\";s:40:\"Generate a quote related to this: [text]\";}i:16;a:2:{s:4:\"name\";s:20:\"Translate to Spanish\";s:6:\"prompt\";s:33:\"Translate this to Spanish: [text]\";}}','yes'),(296428,'wpaicg_order_status_token','completed','yes'),(296429,'wpaicg_content_custom_prompt','Create a compelling and well-researched article of at least 500 words on the topic of \\\"[title]\\\" in English. Structure the article with clear headings enclosed within the appropriate heading tags (e.g., <h1>, <h2>, etc.) and engaging subheadings. Ensure that the content is informative and provides valuable insights to the reader. Incorporate relevant examples, case studies, and statistics to support your points. Organize your ideas using unordered lists with <ul> and <li> tags where appropriate. Conclude with a strong summary that ties together the key takeaways of the article. Remember to enclose headings in the specified heading tags to make parsing the content easier. Additionally, wrap even paragraphs in <p> tags for improved readability.','yes'),(296430,'wpaicg_comment_prompt','Please generate a relevant and thoughtful response to [username]\\\'s comment on the post titled \\\'[post_title]\\\' with the excerpt \\\'[post_excerpt]\\\'. The user\\\'s latest comment is: \\\'[last_comment]\\\'. If applicable, consider the context of the previous conversation: \\\'[parent_comments]\\\'. Keep the response focused on the topic and avoid creating any new information.','yes'),(296431,'wpaicg_toc_title_tag','h2','yes'),(296436,'wpaicg_pexels_custom_prompt','Extract the most significant keyword from the given title: [title]. Please provide the keyword in the format #keyword, without any additional sentences, words, or characters. Ensure that the keyword consists of a single word, and do not combine or concatenate words or phrases in the keyword.','yes'),(296437,'wpaicg_pixabay_custom_prompt','Extract the most significant keyword from the given title: [title]. Please provide the keyword in the format #keyword, without any additional sentences, words, or characters. Ensure that the keyword consists of a single word, and do not combine or concatenate words or phrases in the keyword.','yes'),(296438,'wpaicg_dalle_type','vivid','yes'),(296442,'_wpaicg_seo_meta_desc','1','yes'),(296443,'rank_math_description','1','yes'),(296449,'wpaicg_woo_meta_description','1','yes'),(296450,'wpaicg_pixabay_language','en','yes'),(296451,'wpaicg_pixabay_type','all','yes'),(296452,'wpaicg_pixabay_orientation','all','yes'),(296453,'wpaicg_pixabay_order','popular','yes'),(296465,'_transient_timeout_vgse_all_meta_keys_product_variation','1705975775','no'),(296466,'_transient_vgse_all_meta_keys_product_variation','a:0:{}','no'),(296488,'wpsett_welcome_redirect','no','yes'),(296543,'_wp_all_import_functions_hash_1','d41d8cd98f00b204e9800998ecf8427eee243d8d25bc8a3b9f99abbb458a66f6','no'),(296544,'_wp_all_import_functions_hash_2','d41d8cd98f00b204e9800998ecf8427eee243d8d25bc8a3b9f99abbb458a66f6','no'),(296545,'_wp_all_import_functions_hash_6','d41d8cd98f00b204e9800998ecf8427eee243d8d25bc8a3b9f99abbb458a66f6','no'),(296573,'acf_version','6.2.5','yes'),(296575,'wp_all_import_woocommerce_addon_db_version','4.0.0','yes'),(296745,'_transient_pmxi_uploads_path','/home/cach0166/nl.ecom-expansion.com/wp-content/uploads/wpallimport/uploads/b534d98f45e986d5eafc8d827b86ef77','yes'),(296746,'mainwp_child_dismiss_warnings','a:1:{s:8:\"warnings\";i:1;}','no'),(297130,'rank_math_review_notice_date','1704241798','no'),(297154,'product-size-chart-for-woo_dismiss_notices','1','yes'),(297830,'_transient_timeout_wc_low_stock_count','1705893768','no'),(297831,'_transient_wc_low_stock_count','0','no'),(297832,'_transient_timeout_wc_outofstock_count','1705893768','no'),(297833,'_transient_wc_outofstock_count','0','no'),(297912,'_transient_timeout_wc_term_counts','1705894668','no'),(297913,'_transient_wc_term_counts','a:0:{}','no'),(297942,'wp_rocket_settings','a:72:{s:12:\"cache_mobile\";i:1;s:19:\"purge_cron_interval\";i:6;s:15:\"purge_cron_unit\";s:15:\"HOUR_IN_SECONDS\";s:10:\"minify_css\";i:1;s:11:\"exclude_css\";a:0:{}s:26:\"remove_unused_css_safelist\";a:0:{}s:12:\"critical_css\";s:0:\"\";s:9:\"minify_js\";i:1;s:17:\"exclude_inline_js\";a:0:{}s:10:\"exclude_js\";a:0:{}s:12:\"defer_all_js\";i:1;s:16:\"exclude_defer_js\";a:1:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";}s:8:\"delay_js\";i:1;s:28:\"delay_js_exclusions_selected\";a:8:{i:0;s:36:\"05d3eb78-f574-49be-95e1-3f11714005d1\";i:1;s:36:\"34d225a4-688c-476b-846b-420774160d6b\";i:2;s:36:\"051cbfbb-7ad2-4f06-a493-3cf423a80904\";i:3;s:36:\"bd6732fe-4c2b-40a1-9035-8464057e2da5\";i:4;s:36:\"d044900d-07e1-4533-9516-33106efcb259\";i:5;s:36:\"bff953b1-2213-4666-8112-76a84a3cc207\";i:6;s:36:\"fb01246b-a5f8-4021-b514-c02cf55e80bd\";i:7;s:36:\"890e15b6-c66b-4a9e-9b7d-55417df94916\";}s:19:\"delay_js_exclusions\";a:52:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:4:\"cart\";i:2;s:8:\"customjq\";i:3;s:5:\"hover\";i:4;s:9:\"yith-wcan\";i:5;s:8:\"flatsome\";i:6;s:8:\"infinite\";i:7;s:4:\"lazy\";i:8;s:4:\"core\";i:9;s:8:\"backbone\";i:10;s:4:\"util\";i:11;s:8:\"polyfill\";i:12;s:7:\"blockUI\";i:13;s:16:\"js.cookie.min.js\";i:14;s:12:\"getbutton.io\";i:15;s:34:\"//a.omappapi.com/app/js/api.min.js\";i:16;s:67:\"feedbackcompany.com/includes/widgets/feedback-company-widget.min.js\";i:17;s:46:\"snap.licdn.com/li.lms-analytics/insight.min.js\";i:18;s:29:\"static.ads-twitter.com/uwt.js\";i:19;s:31:\"platform.twitter.com/widgets.js\";i:20;s:13:\"/sdk.js#xfbml\";i:21;s:46:\"static.leadpages.net/leadbars/current/embed.js\";i:22;s:43:\"translate.google.com/translate_a/element.js\";i:23;s:19:\"widget.manychat.com\";i:24;s:21:\"xfbml.customerchat.js\";i:25;s:27:\"static.hotjar.com/c/hotjar-\";i:26;s:27:\"smartsuppchat.com/loader.js\";i:27;s:18:\"grecaptcha.execute\";i:28;s:8:\"Tawk_API\";i:29;s:11:\"shareaholic\";i:30;s:9:\"sharethis\";i:31;s:26:\"simple-share-buttons-adder\";i:32;s:8:\"addtoany\";i:33;s:12:\"font-awesome\";i:34;s:8:\"wpdiscuz\";i:35;s:15:\"cookie-law-info\";i:36;s:8:\"pinit.js\";i:37;s:8:\"/gtag/js\";i:38;s:7:\"/gtm.js\";i:39;s:5:\"/gtm-\";i:40;s:11:\"fbevents.js\";i:41;s:33:\"google-analytics.com/analytics.js\";i:42;s:14:\"adsbygoogle.js\";i:43;s:10:\"ShopifyBuy\";i:44;s:31:\"widget.trustpilot.com/bootstrap\";i:45;s:13:\"ft.sdk.min.js\";i:46;s:31:\"apps.elfsight.com/p/platform.js\";i:47;s:27:\"livechatinc.com/tracking.js\";i:48;s:14:\"LiveChatWidget\";i:49;s:27:\"/busting/facebook-tracking/\";i:50;s:5:\"olark\";i:51;s:32:\"pixel-caffeine/build/frontend.js\";}s:16:\"exclude_lazyload\";a:0:{}s:16:\"image_dimensions\";i:1;s:20:\"preload_excluded_uri\";a:0:{}s:12:\"dns_prefetch\";a:0:{}s:13:\"preload_fonts\";a:0:{}s:16:\"cache_reject_uri\";a:3:{i:0;s:15:\"/checkout/(.*)/\";i:1;s:11:\"/cart/(.*)/\";i:2;s:15:\"/wishlist/(.*)/\";}s:20:\"cache_reject_cookies\";a:3:{i:0;s:25:\"woocommerce_items_in_cart\";i:1;s:21:\"woocommerce_cart_hash\";i:2;s:19:\"woocommerce_session\";}s:15:\"cache_reject_ua\";a:0:{}s:17:\"cache_purge_pages\";a:0:{}s:19:\"cache_query_strings\";a:0:{}s:27:\"automatic_cleanup_frequency\";s:0:\"\";s:10:\"cdn_cnames\";a:0:{}s:8:\"cdn_zone\";a:0:{}s:16:\"cdn_reject_files\";a:0:{}s:17:\"control_heartbeat\";i:1;s:24:\"heartbeat_admin_behavior\";s:0:\"\";s:25:\"heartbeat_editor_behavior\";s:0:\"\";s:23:\"heartbeat_site_behavior\";s:0:\"\";s:18:\"cloudflare_api_key\";s:0:\"\";s:16:\"cloudflare_email\";s:0:\"\";s:18:\"cloudflare_zone_id\";s:0:\"\";s:18:\"sucury_waf_api_key\";s:0:\"\";s:12:\"consumer_key\";s:8:\"********\";s:14:\"consumer_email\";s:22:\"activated@wp-rocket.me\";s:10:\"secret_key\";s:8:\"619860fc\";s:7:\"license\";s:0:\"\";s:16:\"secret_cache_key\";s:0:\"\";s:14:\"minify_css_key\";s:22:\"659b2711afe10810694138\";s:13:\"minify_js_key\";s:22:\"659b2711afe17525495486\";s:7:\"version\";s:6:\"3.15.6\";s:23:\"cloudflare_old_settings\";s:0:\"\";s:9:\"cache_ssl\";i:1;s:19:\"minify_google_fonts\";i:0;s:5:\"emoji\";i:0;s:17:\"remove_unused_css\";i:0;s:9:\"async_css\";i:0;s:22:\"minify_concatenate_css\";s:0:\"\";s:16:\"async_css_mobile\";s:0:\"\";s:17:\"cache_logged_user\";i:0;s:23:\"do_caching_mobile_files\";i:0;s:21:\"minify_concatenate_js\";i:0;s:8:\"lazyload\";i:0;s:16:\"lazyload_iframes\";i:0;s:16:\"lazyload_youtube\";i:0;s:18:\"database_revisions\";i:0;s:20:\"database_auto_drafts\";i:0;s:22:\"database_trashed_posts\";i:0;s:22:\"database_spam_comments\";i:0;s:25:\"database_trashed_comments\";i:0;s:23:\"database_all_transients\";i:0;s:24:\"database_optimize_tables\";i:0;s:26:\"schedule_automatic_cleanup\";i:0;s:14:\"manual_preload\";i:0;s:21:\"sucury_waf_cache_sync\";i:0;s:3:\"cdn\";i:0;s:18:\"varnish_auto_purge\";i:0;s:39:\"delay_js_exclusions_selected_exclusions\";a:31:{i:0;s:13:\"js.stripe.com\";i:1;s:11:\"local_ga_js\";i:2;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:3;s:25:\"/jquery-migrate(.min)?.js\";i:4;s:11:\"/jquery/ui/\";i:5;s:24:\"/woo-variation-swatches/\";i:6;s:28:\"/woo-variation-swatches-pro/\";i:7;s:17:\"underscore.min.js\";i:8;s:36:\"/wp-includes/js/jquery/jquery.min.js\";i:9;s:53:\"/woocommerce/assets/js/frontend/cart-fragments.min.js\";i:10;s:49:\"/woocommerce/assets/js/js-cookie/js.cookie.min.js\";i:11;s:61:\"/plugins/woocommerce/assets/js/frontend/single-product.min.js\";i:12;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:13;s:25:\"/jquery-migrate(.min)?.js\";i:14;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:15;s:25:\"/jquery-migrate(.min)?.js\";i:16;s:55:\"/woocommerce/?(.*)/assets/js/zoom/jquery.zoom(.min)?.js\";i:17;s:40:\"/woocommerce/?(.*)/assets/js/photoswipe/\";i:18;s:67:\"/woocommerce/?(.*)/assets/js/flexslider/jquery.flexslider(.min)?.js\";i:19;s:62:\"/woocommerce/?(.*)/assets/js/frontend/single-product(.min)?.js\";i:20;s:24:\"wc_single_product_params\";i:21;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:22;s:25:\"/jquery-migrate(.min)?.js\";i:23;s:31:\"/flatsome/assets/js/flatsome.js\";i:24;s:41:\"/flatsome/assets/libs/packery.pkgd.min.js\";i:25;s:34:\"/flatsome/assets/js/woocommerce.js\";i:26;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:27;s:25:\"/jquery-migrate(.min)?.js\";i:28;s:58:\"/flatsome/inc/integrations/wp-rocket/flatsome-wp-rocket.js\";i:29;s:31:\"/flatsome/assets/js/flatsome.js\";i:30;s:65:\"/flatsome/inc/extensions/flatsome-lazy-load/flatsome-lazy-load.js\";}}','yes'),(297945,'wpr_rocket_cache_version','20220927','yes'),(297950,'wpr_rucss_used_css_version','20231031','yes'),(297952,'wp_rocket_last_base_url','aHR0cHM6Ly93d3cubmwuZWNvbS1leHBhbnNpb24uY29tLw==','yes'),(297955,'wp_rocket_no_licence','0','yes'),(298145,'rocket_analytics_notice_displayed','1','yes'),(299632,'_transient_timeout_cartflows-ca-5-star-notice','1706731017','no'),(299633,'_transient_cartflows-ca-5-star-notice','1','no'),(299723,'parcelpanel_tracking_page_new_options','a:4:{s:4:\"code\";i:200;s:3:\"msg\";s:2:\"ok\";s:4:\"time\";i:1704142823;s:4:\"data\";a:12:{s:14:\"display_option\";a:16:{s:6:\"_width\";s:6:\"1200px\";s:5:\"color\";s:7:\"#00bfff\";s:8:\"ui_style\";i:0;s:24:\"map_coordinates_position\";i:1;s:13:\"hide_keywords\";s:32:\"China,Aliexpress,Chinese cities,\";s:15:\"carrier_details\";b:0;s:15:\"tracking_number\";b:1;s:24:\"package_contents_details\";b:1;s:15:\"map_coordinates\";b:0;s:23:\"google_translate_widget\";b:0;s:12:\"b_od_nb_a_em\";b:1;s:7:\"b_tk_nb\";b:0;s:22:\"tracking_detailed_info\";b:1;s:5:\"width\";i:1200;s:10:\"width_unit\";s:2:\"px\";s:13:\"show_branding\";b:0;}s:26:\"tracking_page_translations\";a:31:{s:12:\"order_number\";s:12:\"Bestelnummer\";s:17:\"expected_delivery\";s:20:\"Verwachte leverdatum\";s:2:\"or\";s:2:\"Of\";s:5:\"email\";s:6:\"E-Mail\";s:5:\"track\";s:6:\"Volgen\";s:5:\"order\";s:10:\"Bestelling\";s:15:\"tracking_number\";s:13:\"Traceernummer\";s:7:\"product\";s:7:\"Product\";s:7:\"carrier\";s:10:\"Vervoerder\";s:6:\"status\";s:6:\"Status\";s:15:\"order_not_found\";s:29:\"Kon de bestelling niet vinden\";s:16:\"enter_your_order\";s:22:\"Voer uw ordernummer in\";s:16:\"enter_your_email\";s:23:\"Voer uw e-mail adres in\";s:26:\"enter_your_tracking_number\";s:21:\"Voer uw volgnummer in\";s:15:\"not_yet_shipped\";s:38:\"Deze artikelen zijn nog niet verzonden\";s:7:\"ordered\";s:7:\"Besteld\";s:11:\"order_ready\";s:16:\"Bestelling klaar\";s:15:\"waiting_updated\";s:93:\"De bezorgdienst heeft de tracking informatie nog niet geupdate, probeer het later nog eenkeer\";s:11:\"shipping_to\";s:11:\"Sturen naar\";s:16:\"current_location\";s:15:\"Huidige locatie\";s:8:\"may_like\";s:33:\"Misschien vind je dit ook leuk...\";s:7:\"pending\";s:17:\"In afwachting van\";s:10:\"in_transit\";s:8:\"Onderweg\";s:16:\"out_for_delivery\";s:8:\"Levering\";s:9:\"delivered\";s:8:\"Geleverd\";s:7:\"expired\";s:8:\"Verlopen\";s:14:\"failed_attempt\";s:17:\"Mislukte levering\";s:9:\"exception\";s:12:\"Uitzondering\";s:13:\"info_received\";s:18:\"Informatie krijgen\";s:6:\"pickup\";s:8:\"Levering\";s:7:\"transit\";s:8:\"Onderweg\";}s:19:\"custom_order_status\";a:0:{}s:20:\"custom_tracking_info\";a:2:{s:4:\"days\";s:0:\"\";s:4:\"info\";s:0:\"\";}s:23:\"estimated_delivery_time\";a:5:{s:7:\"enabled\";b:0;s:9:\"calc_from\";i:0;s:5:\"e_d_t\";a:2:{i:0;i:10;i:1;i:20;}s:11:\"bod_enabled\";b:0;s:9:\"bod_items\";a:0:{}}s:17:\"product_recommend\";a:4:{s:7:\"enabled\";b:0;s:8:\"position\";i:0;s:8:\"advanced\";b:0;s:14:\"product_cat_id\";i:0;}s:23:\"additional_text_setting\";a:2:{s:10:\"text_above\";s:0:\"\";s:10:\"text_below\";s:0:\"\";}s:20:\"date_and_time_format\";a:2:{s:11:\"date_format\";i:0;s:11:\"time_format\";i:0;}s:32:\"translate_tracking_detailed_info\";a:0:{}s:19:\"custom_css_and_html\";a:3:{s:3:\"css\";s:0:\"\";s:8:\"html_top\";s:0:\"\";s:11:\"html_bottom\";s:0:\"\";}s:14:\"theme_language\";a:1:{s:3:\"val\";s:2:\"nl\";}s:13:\"pluginsTagger\";a:1:{s:4:\"wpml\";b:0;}}}','yes'),(300116,'rank_math_review_notice_added','1','no'),(300410,'villatheme_hide_notices_jan2024','jan2024','yes'),(300449,'mo_wp_user_unsubscribers','a:0:{}','yes'),(300500,'_transient_timeout_ppcp-paypal-dcc-status-cachedcc_status_cache','1706991455','no'),(300501,'_transient_ppcp-paypal-dcc-status-cachedcc_status_cache','false','no'),(300502,'_transient_timeout_ppcp-paypal-pui-status-cachepui_status_cache','1706991456','no'),(300503,'_transient_ppcp-paypal-pui-status-cachepui_status_cache','false','no'),(300504,'ppcp-webhook','a:3:{s:3:\"url\";s:60:\"https://www.nl.ecom-expansion.com/wp-json/paypal/v1/incoming\";s:11:\"event_types\";a:18:{i:0;O:8:\"stdClass\":2:{s:4:\"name\";s:23:\"CHECKOUT.ORDER.APPROVED\";s:11:\"description\";s:36:\"An order has been approved by buyer.\";}i:1;O:8:\"stdClass\":2:{s:4:\"name\";s:24:\"CHECKOUT.ORDER.COMPLETED\";s:11:\"description\";s:70:\"Webhook event emitted after all the purchase_units have been processed\";}i:2;O:8:\"stdClass\":2:{s:4:\"name\";s:34:\"CHECKOUT.PAYMENT-APPROVAL.REVERSED\";s:11:\"description\";s:35:\"Payment approval has been reversed.\";}i:3;O:8:\"stdClass\":2:{s:4:\"name\";s:24:\"PAYMENT.CAPTURE.REFUNDED\";s:11:\"description\";s:37:\"A merchant refunds a payment capture.\";}i:4;O:8:\"stdClass\":2:{s:4:\"name\";s:28:\"PAYMENT.AUTHORIZATION.VOIDED\";s:11:\"description\";s:34:\"A payment authorization is voided.\";}i:5;O:8:\"stdClass\":2:{s:4:\"name\";s:24:\"PAYMENT.CAPTURE.REVERSED\";s:11:\"description\";s:34:\"PayPal reverses a payment capture.\";}i:6;O:8:\"stdClass\":2:{s:4:\"name\";s:23:\"PAYMENT.ORDER.CANCELLED\";s:11:\"description\";s:28:\"A payment order is canceled.\";}i:7;O:8:\"stdClass\":2:{s:4:\"name\";s:22:\"PAYMENT.CAPTURE.DENIED\";s:11:\"description\";s:28:\"A payment capture is denied.\";}i:8;O:8:\"stdClass\":2:{s:4:\"name\";s:25:\"PAYMENT.CAPTURE.COMPLETED\";s:11:\"description\";s:28:\"A payment capture completes.\";}i:9;O:8:\"stdClass\":2:{s:4:\"name\";s:27:\"VAULT.PAYMENT-TOKEN.CREATED\";s:11:\"description\";s:65:\"This webhook is triggered after a Payment Token has been created.\";}i:10;O:8:\"stdClass\":2:{s:4:\"name\";s:27:\"VAULT.PAYMENT-TOKEN.DELETED\";s:11:\"description\";s:68:\"This webhook is triggered on successful deletion of a payment token.\";}i:11;O:8:\"stdClass\":2:{s:4:\"name\";s:23:\"PAYMENT.CAPTURE.PENDING\";s:11:\"description\";s:50:\"The state of a payment capture changes to pending.\";}i:12;O:8:\"stdClass\":2:{s:4:\"name\";s:22:\"PAYMENT.SALE.COMPLETED\";s:11:\"description\";s:17:\"A sale completes.\";}i:13;O:8:\"stdClass\":2:{s:4:\"name\";s:21:\"PAYMENT.SALE.REFUNDED\";s:11:\"description\";s:26:\"A merchant refunds a sale.\";}i:14;O:8:\"stdClass\":2:{s:4:\"name\";s:30:\"BILLING.SUBSCRIPTION.CANCELLED\";s:11:\"description\";s:32:\"A billing agreement is canceled.\";}i:15;O:8:\"stdClass\":2:{s:4:\"name\";s:37:\"BILLING.PLAN.PRICING-CHANGE.ACTIVATED\";s:11:\"description\";s:43:\"A billing plan pricing change is activated.\";}i:16;O:8:\"stdClass\":2:{s:4:\"name\";s:23:\"CATALOG.PRODUCT.UPDATED\";s:11:\"description\";s:15:\"Product updated\";}i:17;O:8:\"stdClass\":2:{s:4:\"name\";s:20:\"BILLING.PLAN.UPDATED\";s:11:\"description\";s:26:\"A billing plan is updated.\";}}s:2:\"id\";s:17:\"4DB65542JR4027116\";}','yes'),(301135,'mainwp_child_connected_admin','enratonons230','yes'),(301136,'mainwp_child_pubkey','LS0tLS1CRUdJTiBQVUJMSUMgS0VZLS0tLS0KTUlJQklqQU5CZ2txaGtpRzl3MEJBUUVGQUFPQ0FROEFNSUlCQ2dLQ0FRRUF0UThIOUl5QVIyNXBEb1dYU1dBSgo1alFIVWtlUktOd1ZHQU0waDNRU2E1Rkc5NE9QTTFHZTQyNGNBU0JMMWtpZENvTzVxVHd2RVYyaytOSlc2b2xLCm9rOUoyTENvUXoxaFcvdDdFVEUxRkVPVFdGdFFEWUlzZmtlZm1KQnhIb2pDMnBDd0NNeVphOVM1WFVHeEg2QzUKZXdXNWFkNFd2Y0V6NldXOHdpSnVmeWRuTDQ2ekJ1c2R0ZExUWU11SjJ5V3AwaGJ5eTBmN0ZSN2c5eHR4RFFzTgpCMFFJVy9iSWZvbDgzeUJMZi9QdVVoTTJQSG80cUlDUjBTQmNpTGdvMVRVRXI5MWhqS281d3liWE1xaVlMODJFCldCeHh4eUdvVzF5WUhoZUhUS2pJMUtUa24wa3BLZFp4OGJ5UHJtUkpsdVFzZ1BnKzJxTU9jdURFTGpYMnJXRnEKT1FJREFRQUIKLS0tLS1FTkQgUFVCTElDIEtFWS0tLS0tCg==','yes'),(301137,'mainwp_child_server','ZAu4ulPX+JsEyr07LWsCtCIDfky2o46XMd2CRVsClsIuFZs1XpR+eBYEkClnWNnKQPT1cDivFJpKYs/fZEz1TVkNCNhgrNP9','no'),(301139,'mainwp_child_openssl_sign_algo','7','yes'),(301144,'action_scheduler_migration_status','complete','yes'),(301433,'mainwp_security','a:5:{s:10:\"wp_version\";b:1;s:3:\"rsd\";b:1;s:3:\"wlw\";b:1;s:13:\"php_reporting\";b:1;s:6:\"readme\";b:1;}','yes'),(302199,'rank_math_notifications','a:0:{}','yes'),(302545,'_transient_timeout_ppcp_has_ppec_subscriptions','1708106223','no'),(302546,'_transient_ppcp_has_ppec_subscriptions','false','no'),(302638,'_transient_timeout_wc_shipping_method_count_legacy','1708167238','no'),(302639,'_transient_wc_shipping_method_count_legacy','a:2:{s:7:\"version\";s:10:\"1700328357\";s:5:\"value\";i:5;}','no'),(302651,'_transient_timeout_woocommerce_admin_payment_method_promotion_specs','1706489233','no'),(302652,'_transient_woocommerce_admin_payment_method_promotion_specs','a:2:{s:5:\"nl_NL\";a:2:{s:27:\"woocommerce_payments:woopay\";O:8:\"stdClass\":8:{s:2:\"id\";s:27:\"woocommerce_payments:woopay\";s:5:\"title\";s:20:\"WooCommerce Payments\";s:7:\"content\";s:393:\"Payments made simple — including WooPay, a new express checkout feature.<br/><br/>By using WooPayments you agree to the <a href=\"https://wordpress.com/tos/\" target=\"_blank\">Terms of Service</a> (including WooPay <a href=\"https://wordpress.com/tos/#more-woopay-specifically\" target=\"_blank\">merchant terms</a>) and <a href=\"https://automattic.com/privacy/\" target=\"_blank\">Privacy Policy</a>.\";s:5:\"image\";s:93:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}s:10:\"is_visible\";a:3:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:9:\"8.1.0-dev\";s:8:\"operator\";s:2:\">=\";}}s:9:\"sub_title\";s:825:\"<img class=\"wcpay-visa-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/visa.svg\" alt=\"Visa\"><img class=\"wcpay-mastercard-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/mastercard.svg\" alt=\"Mastercard\"><img class=\"wcpay-amex-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/amex.svg\" alt=\"Amex\"><img class=\"wcpay-googlepay-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/googlepay.svg\" alt=\"Googlepay\"><img class=\"wcpay-applepay-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/applepay.svg\" alt=\"Applepay\">\";s:15:\"additional_info\";O:8:\"stdClass\":1:{s:18:\"experiment_version\";s:2:\"v2\";}}s:20:\"woocommerce_payments\";O:8:\"stdClass\":8:{s:2:\"id\";s:20:\"woocommerce_payments\";s:5:\"title\";s:20:\"WooCommerce Payments\";s:7:\"content\";s:369:\"Payments made simple, with no monthly fees – designed exclusively for WooCommerce stores. Accept credit cards, debit cards, and other popular payment methods.<br/><br/>By clicking “Install”, you agree to the <a href=\"https://wordpress.com/tos/\" target=\"_blank\">Terms of Service</a> and <a href=\"https://automattic.com/privacy/\" target=\"_blank\">Privacy policy</a>.\";s:5:\"image\";s:93:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:39:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PR\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SI\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BG\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HR\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AE\";s:9:\"operation\";s:1:\"=\";}}}}s:9:\"sub_title\";s:825:\"<img class=\"wcpay-visa-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/visa.svg\" alt=\"Visa\"><img class=\"wcpay-mastercard-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/mastercard.svg\" alt=\"Mastercard\"><img class=\"wcpay-amex-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/amex.svg\" alt=\"Amex\"><img class=\"wcpay-googlepay-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/googlepay.svg\" alt=\"Googlepay\"><img class=\"wcpay-applepay-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/applepay.svg\" alt=\"Applepay\">\";s:15:\"additional_info\";O:8:\"stdClass\":1:{s:18:\"experiment_version\";s:2:\"v2\";}}}s:5:\"en_US\";a:2:{s:27:\"woocommerce_payments:woopay\";O:8:\"stdClass\":8:{s:2:\"id\";s:27:\"woocommerce_payments:woopay\";s:5:\"title\";s:11:\"WooPayments\";s:7:\"content\";s:393:\"Payments made simple — including WooPay, a new express checkout feature.<br/><br/>By using WooPayments you agree to the <a href=\"https://wordpress.com/tos/\" target=\"_blank\">Terms of Service</a> (including WooPay <a href=\"https://wordpress.com/tos/#more-woopay-specifically\" target=\"_blank\">merchant terms</a>) and <a href=\"https://automattic.com/privacy/\" target=\"_blank\">Privacy Policy</a>.\";s:5:\"image\";s:93:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}s:10:\"is_visible\";a:3:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:9:\"8.1.0-dev\";s:8:\"operator\";s:2:\">=\";}}s:9:\"sub_title\";s:825:\"<img class=\"wcpay-visa-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/visa.svg\" alt=\"Visa\"><img class=\"wcpay-mastercard-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/mastercard.svg\" alt=\"Mastercard\"><img class=\"wcpay-amex-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/amex.svg\" alt=\"Amex\"><img class=\"wcpay-googlepay-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/googlepay.svg\" alt=\"Googlepay\"><img class=\"wcpay-applepay-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/applepay.svg\" alt=\"Applepay\">\";s:15:\"additional_info\";O:8:\"stdClass\":1:{s:18:\"experiment_version\";s:2:\"v2\";}}s:20:\"woocommerce_payments\";O:8:\"stdClass\":8:{s:2:\"id\";s:20:\"woocommerce_payments\";s:5:\"title\";s:11:\"WooPayments\";s:7:\"content\";s:369:\"Payments made simple, with no monthly fees – designed exclusively for WooCommerce stores. Accept credit cards, debit cards, and other popular payment methods.<br/><br/>By clicking “Install”, you agree to the <a href=\"https://wordpress.com/tos/\" target=\"_blank\">Terms of Service</a> and <a href=\"https://automattic.com/privacy/\" target=\"_blank\">Privacy policy</a>.\";s:5:\"image\";s:93:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:39:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PR\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SI\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BG\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HR\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AE\";s:9:\"operation\";s:1:\"=\";}}}}s:9:\"sub_title\";s:825:\"<img class=\"wcpay-visa-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/visa.svg\" alt=\"Visa\"><img class=\"wcpay-mastercard-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/mastercard.svg\" alt=\"Mastercard\"><img class=\"wcpay-amex-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/amex.svg\" alt=\"Amex\"><img class=\"wcpay-googlepay-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/googlepay.svg\" alt=\"Googlepay\"><img class=\"wcpay-applepay-icon wcpay-icon\" src=\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/applepay.svg\" alt=\"Applepay\">\";s:15:\"additional_info\";O:8:\"stdClass\":1:{s:18:\"experiment_version\";s:2:\"v2\";}}}}','no'),(302666,'woocommerce_product_match_featured_image_by_sku','no','yes'),(302667,'woocommerce_feature_order_attribution_enabled','yes','yes'),(302670,'_transient_wc_attribute_taxonomies','a:0:{}','yes'),(302687,'wc_stripe_version','7.9.1','yes'),(302703,'rank_math_view_modules','1','no'),(302709,'_transient_timeout_woocommerce_admin_remote_free_extensions_specs','1706489846','no'),(302710,'_transient_woocommerce_admin_remote_free_extensions_specs','a:2:{s:5:\"nl_NL\";a:5:{s:10:\"obw/basics\";O:8:\"stdClass\":3:{s:3:\"key\";s:10:\"obw/basics\";s:5:\"title\";s:24:\"Gebruik de basisfuncties\";s:7:\"plugins\";a:4:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"WooPayments\";s:11:\"description\";s:148:\"Accepteer creditcards en andere populaire betaalmethoden met <a href=\"https://woo.com/products/woocommerce-payments\" target=\"_blank\">WooPayments</a>\";s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:39:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PR\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SI\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BG\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HR\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AE\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"is_built_by_wc\";b:1;s:14:\"min_wp_version\";s:3:\"5.9\";s:3:\"key\";s:20:\"woocommerce-payments\";}i:1;O:8:\"stdClass\":5:{s:4:\"name\";s:20:\"WooCommerce Shipping\";s:11:\"description\";s:110:\"Druk verzendlabels af met <a href=\"https://woo.com/products/shipping\" target=\"_blank\">WooCommerce Shipping</a>\";s:10:\"is_visible\";a:3:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:13:\"product_types\";}}i:1;O:8:\"stdClass\":1:{s:3:\"use\";s:5:\"count\";}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:5:\"value\";i:1;s:7:\"default\";a:0:{}s:9:\"operation\";s:2:\"!=\";}}i:1;a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:15:\"product_types.0\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:5:\"value\";s:9:\"downloads\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:2:\"!=\";}}}}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:29:\"woocommerce-services:shipping\";}i:2;O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"WooCommerce btw\";s:11:\"description\";s:123:\"Laat automatisch je omzetbelasting berekenen met <a href=\"https://woo.com/products/tax\" target=\"_blank\">WooCommerce Tax</a>\";s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:11:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:24:\"woocommerce-services:tax\";}i:3;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"Jetpack\";s:11:\"description\";s:109:\"Verbeter de snelheid en veiligheid met <a href=\"https://woo.com/products/jetpack\" target=\"_blank\">Jetpack</a>\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:7:\"jetpack\";}}}}}s:14:\"is_built_by_wc\";b:0;s:14:\"min_wp_version\";s:3:\"6.0\";s:3:\"key\";s:7:\"jetpack\";}}}s:8:\"obw/grow\";O:8:\"stdClass\":3:{s:3:\"key\";s:8:\"obw/grow\";s:5:\"title\";s:22:\"Laat je winkel groeien\";s:7:\"plugins\";a:4:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"MailPoet\";s:11:\"description\";s:104:\"Verbeter je e-mailmarketing met <a href=\"https://woo.com/products/mailpoet\" target=\"_blank\">MailPoet</a>\";s:10:\"manage_url\";s:35:\"admin.php?page=mailpoet-newsletters\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:8:\"mailpoet\";}}}}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:8:\"mailpoet\";}i:1;O:8:\"stdClass\":8:{s:4:\"name\";s:34:\"Google vermeldingen & advertenties\";s:11:\"description\";s:134:\"Verkoop meer met <a href=\"https://woo.com/products/google-listings-and-ads\" target=\"_blank\">vermeldingen en advertenties op Google</a>\";s:9:\"image_url\";s:86:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/google.svg\";s:10:\"manage_url\";s:46:\"admin.php?page=wc-admin&path=%2Fgoogle%2Fstart\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:23:\"google-listings-and-ads\";}}}}}s:14:\"is_built_by_wc\";b:1;s:15:\"min_php_version\";s:3:\"7.4\";s:3:\"key\";s:23:\"google-listings-and-ads\";}i:2;O:8:\"stdClass\":7:{s:4:\"name\";s:25:\"Pinterest for WooCommerce\";s:11:\"description\";s:78:\"Laat je producten zien aan Pinners die op zoek zijn naar ideeën en producten.\";s:9:\"image_url\";s:89:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/pinterest.png\";s:10:\"manage_url\";s:51:\"admin.php?page=wc-admin&path=%2Fpinterest%2Flanding\";s:14:\"is_built_by_wc\";b:1;s:15:\"min_php_version\";s:3:\"7.3\";s:3:\"key\";s:25:\"pinterest-for-woocommerce\";}i:3;O:8:\"stdClass\":7:{s:4:\"name\";s:25:\"Facebook voor WooCommerce\";s:11:\"description\";s:153:\"Maak een lijst met producten en maak advertenties op Facebook en Instagram met <a href=\"https://woo.com/products/facebook/\">Facebook voor WooCommerce</a>\";s:9:\"image_url\";s:88:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/facebook.png\";s:10:\"manage_url\";s:26:\"admin.php?page=wc-facebook\";s:10:\"is_visible\";b:0;s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:24:\"facebook-for-woocommerce\";}}}s:15:\"task-list/reach\";O:8:\"stdClass\":3:{s:3:\"key\";s:15:\"task-list/reach\";s:5:\"title\";s:27:\"Neem contact op met klanten\";s:7:\"plugins\";a:3:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"MailPoet\";s:11:\"description\";s:115:\"Maak en verstuur rechtstreeks vanuit je dashboard nieuwsbrieven, promotiecampagnes en opvolgingsmails bij aankopen.\";s:9:\"image_url\";s:88:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/mailpoet.svg\";s:10:\"manage_url\";s:35:\"admin.php?page=mailpoet-newsletters\";s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:12:\"mailpoet:alt\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:9:\"Mailchimp\";s:11:\"description\";s:89:\"Verstuur gerichte campagnes, bekijk verlaten winkelwagens en nog veel meer met Mailchimp.\";s:9:\"image_url\";s:89:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/mailchimp.svg\";s:10:\"manage_url\";s:36:\"admin.php?page=mailchimp-woocommerce\";s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:25:\"mailchimp-for-woocommerce\";}i:2;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"Klaviyo\";s:11:\"description\";s:171:\"Laat je klantenbestand groeien en behoud ze met intelligente, betekenisvolle e-mail- en sms-marketingautomatiseringen en een geconsolideerde weergave van klantinteracties.\";s:9:\"image_url\";s:87:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/klaviyo.png\";s:10:\"manage_url\";s:31:\"admin.php?page=klaviyo_settings\";s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:7:\"klaviyo\";}}}s:14:\"task-list/grow\";O:8:\"stdClass\":3:{s:3:\"key\";s:14:\"task-list/grow\";s:5:\"title\";s:22:\"Laat je winkel groeien\";s:7:\"plugins\";a:4:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"Google vermeldingen & advertenties\";s:11:\"description\";s:162:\"Bereik meer klanten en stimuleer de verkoop voor je winkel. Integreer met Google om je producten gratis te vermelden en betaalde advertentiecampagnes te lanceren.\";s:9:\"image_url\";s:86:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/google.svg\";s:10:\"manage_url\";s:46:\"admin.php?page=wc-admin&path=%2Fgoogle%2Fstart\";s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:27:\"google-listings-and-ads:alt\";}i:1;O:8:\"stdClass\":7:{s:4:\"name\";s:23:\"TikTok voor WooCommerce\";s:9:\"image_url\";s:86:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/tiktok.svg\";s:11:\"description\";s:145:\"Verhoog je online verkoop door je producten te promoten op TikTok bij meer dan één miljard maandelijkse actieve gebruikers over de hele wereld.\";s:10:\"manage_url\";s:21:\"admin.php?page=tiktok\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:40:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MX\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MY\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PH\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ID\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"VN\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"TH\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"KR\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IL\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AE\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RU\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"UA\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"TR\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SA\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BR\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}}}}s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:19:\"tiktok-for-business\";}i:2;O:8:\"stdClass\":6:{s:4:\"name\";s:25:\"Pinterest for WooCommerce\";s:11:\"description\";s:165:\"Laat je producten zien aan Pinterest-gebruikers die op zoek zijn naar ideeën en producten. Ga aan de slag met Pinterest en maak je hele productcatalogus bladerbaar.\";s:9:\"image_url\";s:89:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/pinterest.png\";s:10:\"manage_url\";s:51:\"admin.php?page=wc-admin&path=%2Fpinterest%2Flanding\";s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:29:\"pinterest-for-woocommerce:alt\";}i:3;O:8:\"stdClass\":7:{s:4:\"name\";s:25:\"Facebook voor WooCommerce\";s:11:\"description\";s:70:\"Maak een lijst van producten en advertenties op Facebook en Instagram.\";s:9:\"image_url\";s:88:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/facebook.png\";s:10:\"manage_url\";s:26:\"admin.php?page=wc-facebook\";s:10:\"is_visible\";b:0;s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:28:\"facebook-for-woocommerce:alt\";}}}s:17:\"obw/core-profiler\";O:8:\"stdClass\":3:{s:3:\"key\";s:17:\"obw/core-profiler\";s:5:\"title\";s:22:\"Laat je winkel groeien\";s:7:\"plugins\";a:8:{i:0;O:8:\"stdClass\":10:{s:4:\"name\";s:11:\"WooPayments\";s:11:\"description\";s:99:\"Accepteer veilig betalingen en beheer betalingsactiveit rechtstreeks op het dashboard van je winkel\";s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:39:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PR\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SI\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BG\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HR\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AE\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"is_built_by_wc\";b:1;s:14:\"min_wp_version\";s:3:\"5.9\";s:3:\"key\";s:20:\"woocommerce-payments\";s:5:\"label\";s:29:\"Krijg betaald met WooPayments\";s:9:\"image_url\";s:102:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-woo.svg\";s:15:\"learn_more_link\";s:45:\"https://woo.com/products/woocommerce-payments\";s:16:\"install_priority\";i:5;}i:1;O:8:\"stdClass\":9:{s:4:\"name\";s:20:\"WooCommerce Shipping\";s:11:\"description\";s:92:\"Druk USPS- en DHL-labels af rechtstreeks vanuit je-dashboard en bespaar op de verzendkosten.\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:29:\"woocommerce-services:shipping\";s:5:\"label\";s:46:\"Druk verzendlabels af met WooCommerce Shipping\";s:9:\"image_url\";s:102:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-woo.svg\";s:15:\"learn_more_link\";s:36:\"https://woo.com/woocommerce-shipping\";s:16:\"install_priority\";i:3;}i:2;O:8:\"stdClass\":10:{s:4:\"name\";s:7:\"Jetpack\";s:11:\"description\";s:120:\"Bespaar tijd op het creëren van inhoud — ontgrendel blogberichten van hoge kwaliteit en pagina’s met behulp van AI.\";s:10:\"is_visible\";b:1;s:14:\"is_built_by_wc\";b:0;s:14:\"min_wp_version\";s:3:\"6.0\";s:3:\"key\";s:7:\"jetpack\";s:5:\"label\";s:63:\"Geef het creëren van inhoud een boost met Jetpack AI Assistant\";s:9:\"image_url\";s:106:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-jetpack.svg\";s:15:\"learn_more_link\";s:32:\"https://woo.com/products/jetpack\";s:16:\"install_priority\";i:8;}i:3;O:8:\"stdClass\":10:{s:4:\"name\";s:25:\"Pinterest for WooCommerce\";s:11:\"description\";s:64:\"Zorg dat je producten een zeer geïnteresseerd publiek bereiken.\";s:9:\"image_url\";s:108:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-pinterest.svg\";s:10:\"manage_url\";s:51:\"admin.php?page=wc-admin&path=%2Fpinterest%2Flanding\";s:14:\"is_built_by_wc\";b:1;s:15:\"min_php_version\";s:3:\"7.3\";s:3:\"key\";s:25:\"pinterest-for-woocommerce\";s:5:\"label\";s:38:\"Stel je producten tentoon op Pinterest\";s:15:\"learn_more_link\";s:50:\"https://woo.com/products/pinterest-for-woocommerce\";s:16:\"install_priority\";i:2;}i:4;O:8:\"stdClass\":10:{s:4:\"name\";s:8:\"MailPoet\";s:11:\"description\";s:115:\"Maak en verstuur rechtstreeks vanuit je dashboard opvolgingsmails, nieuwsbrieven en promotiecampagnes bij aankopen.\";s:10:\"manage_url\";s:35:\"admin.php?page=mailpoet-newsletters\";s:10:\"is_visible\";b:1;s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:8:\"mailpoet\";s:5:\"label\";s:30:\"Bereik je klanten met MailPoet\";s:9:\"image_url\";s:107:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-mailpoet.svg\";s:15:\"learn_more_link\";s:33:\"https://woo.com/products/mailpoet\";s:16:\"install_priority\";i:7;}i:5;O:8:\"stdClass\":11:{s:4:\"name\";s:34:\"Google vermeldingen & advertenties\";s:11:\"description\";s:93:\"Bereik miljoenen actieve winkelaars op Google met gratis productvermeldingen en advertenties.\";s:9:\"image_url\";s:105:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-google.svg\";s:10:\"manage_url\";s:46:\"admin.php?page=wc-admin&path=%2Fgoogle%2Fstart\";s:10:\"is_visible\";b:1;s:14:\"is_built_by_wc\";b:1;s:15:\"min_php_version\";s:3:\"7.4\";s:3:\"key\";s:23:\"google-listings-and-ads\";s:5:\"label\";s:55:\"Verkoop meer met vermeldingen en advertenties op Google\";s:15:\"learn_more_link\";s:48:\"https://woo.com/products/google-listings-and-ads\";s:16:\"install_priority\";i:6;}i:6;O:8:\"stdClass\":9:{s:4:\"name\";s:15:\"WooCommerce btw\";s:11:\"description\";s:103:\"Bereken automatisch hoeveel omzetbelasting er moet worden betaald, per plaats, land of provincie/staat.\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:11:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}}}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:24:\"woocommerce-services:tax\";s:5:\"label\";s:56:\"Krijg automatische belastingtarieven met WooCommerce Tax\";s:9:\"image_url\";s:102:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-woo.svg\";s:15:\"learn_more_link\";s:28:\"https://woo.com/products/tax\";s:16:\"install_priority\";i:4;}i:7;O:8:\"stdClass\":10:{s:4:\"name\";s:23:\"TikTok voor WooCommerce\";s:9:\"image_url\";s:105:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-tiktok.svg\";s:11:\"description\";s:70:\"Maak advertentiecampagnes en bereik een miljard gebruikers wereldwijd.\";s:10:\"manage_url\";s:21:\"admin.php?page=tiktok\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:40:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MX\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MY\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PH\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ID\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"VN\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"TH\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"KR\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IL\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AE\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RU\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"UA\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"TR\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SA\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BR\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}}}}s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:19:\"tiktok-for-business\";s:5:\"label\";s:37:\"Maak advertentiecampagnes voor TikTok\";s:15:\"learn_more_link\";s:47:\"https://woo.com/products/tiktok-for-woocommerce\";s:16:\"install_priority\";i:1;}}}}s:5:\"en_US\";a:5:{s:10:\"obw/basics\";O:8:\"stdClass\":3:{s:3:\"key\";s:10:\"obw/basics\";s:5:\"title\";s:14:\"Get the basics\";s:7:\"plugins\";a:4:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"WooPayments\";s:11:\"description\";s:146:\"Accept credit cards and other popular payment methods with <a href=\"https://woo.com/products/woocommerce-payments\" target=\"_blank\">WooPayments</a>\";s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:39:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PR\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SI\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BG\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HR\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AE\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"is_built_by_wc\";b:1;s:14:\"min_wp_version\";s:3:\"5.9\";s:3:\"key\";s:20:\"woocommerce-payments\";}i:1;O:8:\"stdClass\":5:{s:4:\"name\";s:20:\"WooCommerce Shipping\";s:11:\"description\";s:111:\"Print shipping labels with <a href=\"https://woo.com/products/shipping\" target=\"_blank\">WooCommerce Shipping</a>\";s:10:\"is_visible\";a:3:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:13:\"product_types\";}}i:1;O:8:\"stdClass\":1:{s:3:\"use\";s:5:\"count\";}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:5:\"value\";i:1;s:7:\"default\";a:0:{}s:9:\"operation\";s:2:\"!=\";}}i:1;a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:15:\"product_types.0\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:5:\"value\";s:9:\"downloads\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:2:\"!=\";}}}}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:29:\"woocommerce-services:shipping\";}i:2;O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"WooCommerce Tax\";s:11:\"description\";s:103:\"Get automated sales tax with <a href=\"https://woo.com/products/tax\" target=\"_blank\">WooCommerce Tax</a>\";s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:11:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:24:\"woocommerce-services:tax\";}i:3;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"Jetpack\";s:11:\"description\";s:102:\"Enhance speed and security with <a href=\"https://woo.com/products/jetpack\" target=\"_blank\">Jetpack</a>\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:7:\"jetpack\";}}}}}s:14:\"is_built_by_wc\";b:0;s:14:\"min_wp_version\";s:3:\"6.0\";s:3:\"key\";s:7:\"jetpack\";}}}s:8:\"obw/grow\";O:8:\"stdClass\":3:{s:3:\"key\";s:8:\"obw/grow\";s:5:\"title\";s:15:\"Grow your store\";s:7:\"plugins\";a:4:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"MailPoet\";s:11:\"description\";s:107:\"Level up your email marketing with <a href=\"https://woo.com/products/mailpoet\" target=\"_blank\">MailPoet</a>\";s:10:\"manage_url\";s:35:\"admin.php?page=mailpoet-newsletters\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:8:\"mailpoet\";}}}}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:8:\"mailpoet\";}i:1;O:8:\"stdClass\":8:{s:4:\"name\";s:21:\"Google Listings & Ads\";s:11:\"description\";s:119:\"Drive sales with <a href=\"https://woo.com/products/google-listings-and-ads\" target=\"_blank\">Google Listings and Ads</a>\";s:9:\"image_url\";s:86:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/google.svg\";s:10:\"manage_url\";s:46:\"admin.php?page=wc-admin&path=%2Fgoogle%2Fstart\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:23:\"google-listings-and-ads\";}}}}}s:14:\"is_built_by_wc\";b:1;s:15:\"min_php_version\";s:3:\"7.4\";s:3:\"key\";s:23:\"google-listings-and-ads\";}i:2;O:8:\"stdClass\":7:{s:4:\"name\";s:25:\"Pinterest for WooCommerce\";s:11:\"description\";s:76:\"Get your products in front of Pinners searching for ideas and things to buy.\";s:9:\"image_url\";s:89:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/pinterest.png\";s:10:\"manage_url\";s:51:\"admin.php?page=wc-admin&path=%2Fpinterest%2Flanding\";s:14:\"is_built_by_wc\";b:1;s:15:\"min_php_version\";s:3:\"7.3\";s:3:\"key\";s:25:\"pinterest-for-woocommerce\";}i:3;O:8:\"stdClass\":7:{s:4:\"name\";s:24:\"Facebook for WooCommerce\";s:11:\"description\";s:133:\"List products and create ads on Facebook and Instagram with <a href=\"https://woo.com/products/facebook/\">Facebook for WooCommerce</a>\";s:9:\"image_url\";s:88:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/facebook.png\";s:10:\"manage_url\";s:26:\"admin.php?page=wc-facebook\";s:10:\"is_visible\";b:0;s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:24:\"facebook-for-woocommerce\";}}}s:15:\"task-list/reach\";O:8:\"stdClass\":3:{s:3:\"key\";s:15:\"task-list/reach\";s:5:\"title\";s:22:\"Reach out to customers\";s:7:\"plugins\";a:3:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"MailPoet\";s:11:\"description\";s:111:\"Create and send purchase follow-up emails, newsletters, and promotional campaigns straight from your dashboard.\";s:9:\"image_url\";s:88:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/mailpoet.svg\";s:10:\"manage_url\";s:35:\"admin.php?page=mailpoet-newsletters\";s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:12:\"mailpoet:alt\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:9:\"Mailchimp\";s:11:\"description\";s:78:\"Send targeted campaigns, recover abandoned carts and much more with Mailchimp.\";s:9:\"image_url\";s:89:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/mailchimp.svg\";s:10:\"manage_url\";s:36:\"admin.php?page=mailchimp-woocommerce\";s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:25:\"mailchimp-for-woocommerce\";}i:2;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"Klaviyo\";s:11:\"description\";s:138:\"Grow and retain customers with intelligent, impactful email and SMS marketing automation and a consolidated view of customer interactions.\";s:9:\"image_url\";s:87:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/klaviyo.png\";s:10:\"manage_url\";s:31:\"admin.php?page=klaviyo_settings\";s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:7:\"klaviyo\";}}}s:14:\"task-list/grow\";O:8:\"stdClass\":3:{s:3:\"key\";s:14:\"task-list/grow\";s:5:\"title\";s:15:\"Grow your store\";s:7:\"plugins\";a:4:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"Google Listings & Ads\";s:11:\"description\";s:134:\"Reach more shoppers and drive sales for your store. Integrate with Google to list your products for free and launch paid ad campaigns.\";s:9:\"image_url\";s:86:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/google.svg\";s:10:\"manage_url\";s:46:\"admin.php?page=wc-admin&path=%2Fgoogle%2Fstart\";s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:27:\"google-listings-and-ads:alt\";}i:1;O:8:\"stdClass\":7:{s:4:\"name\";s:22:\"TikTok for WooCommerce\";s:9:\"image_url\";s:86:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/tiktok.svg\";s:11:\"description\";s:118:\"Grow your online sales by promoting your products on TikTok to over one billion monthly active users around the world.\";s:10:\"manage_url\";s:21:\"admin.php?page=tiktok\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:40:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MX\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MY\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PH\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ID\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"VN\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"TH\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"KR\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IL\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AE\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RU\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"UA\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"TR\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SA\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BR\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}}}}s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:19:\"tiktok-for-business\";}i:2;O:8:\"stdClass\":6:{s:4:\"name\";s:25:\"Pinterest for WooCommerce\";s:11:\"description\";s:159:\"Get your products in front of Pinterest users searching for ideas and things to buy. Get started with Pinterest and make your entire product catalog browsable.\";s:9:\"image_url\";s:89:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/pinterest.png\";s:10:\"manage_url\";s:51:\"admin.php?page=wc-admin&path=%2Fpinterest%2Flanding\";s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:29:\"pinterest-for-woocommerce:alt\";}i:3;O:8:\"stdClass\":7:{s:4:\"name\";s:24:\"Facebook for WooCommerce\";s:11:\"description\";s:55:\"List products and create ads on Facebook and Instagram.\";s:9:\"image_url\";s:88:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/facebook.png\";s:10:\"manage_url\";s:26:\"admin.php?page=wc-facebook\";s:10:\"is_visible\";b:0;s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:28:\"facebook-for-woocommerce:alt\";}}}s:17:\"obw/core-profiler\";O:8:\"stdClass\":3:{s:3:\"key\";s:17:\"obw/core-profiler\";s:5:\"title\";s:15:\"Grow your store\";s:7:\"plugins\";a:8:{i:0;O:8:\"stdClass\":10:{s:4:\"name\";s:11:\"WooPayments\";s:11:\"description\";s:89:\"Securely accept payments and manage payment activity straight from your store\'s dashboard\";s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:39:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PR\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SI\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BG\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HR\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AE\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"is_built_by_wc\";b:1;s:14:\"min_wp_version\";s:3:\"5.9\";s:3:\"key\";s:20:\"woocommerce-payments\";s:5:\"label\";s:25:\"Get paid with WooPayments\";s:9:\"image_url\";s:102:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-woo.svg\";s:15:\"learn_more_link\";s:45:\"https://woo.com/products/woocommerce-payments\";s:16:\"install_priority\";i:5;}i:1;O:8:\"stdClass\":9:{s:4:\"name\";s:20:\"WooCommerce Shipping\";s:11:\"description\";s:76:\"Print USPS and DHL labels directly from your dashboard and save on shipping.\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:29:\"woocommerce-services:shipping\";s:5:\"label\";s:47:\"Print shipping labels with WooCommerce Shipping\";s:9:\"image_url\";s:102:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-woo.svg\";s:15:\"learn_more_link\";s:36:\"https://woo.com/woocommerce-shipping\";s:16:\"install_priority\";i:3;}i:2;O:8:\"stdClass\":10:{s:4:\"name\";s:7:\"Jetpack\";s:11:\"description\";s:84:\"Save time on content creation — unlock high-quality blog posts and pages using AI.\";s:10:\"is_visible\";b:1;s:14:\"is_built_by_wc\";b:0;s:14:\"min_wp_version\";s:3:\"6.0\";s:3:\"key\";s:7:\"jetpack\";s:5:\"label\";s:48:\"Boost content creation with Jetpack AI Assistant\";s:9:\"image_url\";s:106:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-jetpack.svg\";s:15:\"learn_more_link\";s:32:\"https://woo.com/products/jetpack\";s:16:\"install_priority\";i:8;}i:3;O:8:\"stdClass\":10:{s:4:\"name\";s:25:\"Pinterest for WooCommerce\";s:11:\"description\";s:56:\"Get your products in front of a highly engaged audience.\";s:9:\"image_url\";s:108:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-pinterest.svg\";s:10:\"manage_url\";s:51:\"admin.php?page=wc-admin&path=%2Fpinterest%2Flanding\";s:14:\"is_built_by_wc\";b:1;s:15:\"min_php_version\";s:3:\"7.3\";s:3:\"key\";s:25:\"pinterest-for-woocommerce\";s:5:\"label\";s:37:\"Showcase your products with Pinterest\";s:15:\"learn_more_link\";s:50:\"https://woo.com/products/pinterest-for-woocommerce\";s:16:\"install_priority\";i:2;}i:4;O:8:\"stdClass\":10:{s:4:\"name\";s:8:\"MailPoet\";s:11:\"description\";s:71:\"Send purchase follow-up emails, newsletters, and promotional campaigns.\";s:10:\"manage_url\";s:35:\"admin.php?page=mailpoet-newsletters\";s:10:\"is_visible\";b:1;s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:8:\"mailpoet\";s:5:\"label\";s:34:\"Reach your customers with MailPoet\";s:9:\"image_url\";s:107:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-mailpoet.svg\";s:15:\"learn_more_link\";s:33:\"https://woo.com/products/mailpoet\";s:16:\"install_priority\";i:7;}i:5;O:8:\"stdClass\":11:{s:4:\"name\";s:21:\"Google Listings & Ads\";s:11:\"description\";s:83:\"Reach millions of active shoppers across Google with free product listings and ads.\";s:9:\"image_url\";s:105:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-google.svg\";s:10:\"manage_url\";s:46:\"admin.php?page=wc-admin&path=%2Fgoogle%2Fstart\";s:10:\"is_visible\";b:1;s:14:\"is_built_by_wc\";b:1;s:15:\"min_php_version\";s:3:\"7.4\";s:3:\"key\";s:23:\"google-listings-and-ads\";s:5:\"label\";s:38:\"Drive sales with Google Listings & Ads\";s:15:\"learn_more_link\";s:48:\"https://woo.com/products/google-listings-and-ads\";s:16:\"install_priority\";i:6;}i:6;O:8:\"stdClass\":9:{s:4:\"name\";s:15:\"WooCommerce Tax\";s:11:\"description\";s:94:\"Automatically calculate how much sales tax should be collected – by city, country, or state.\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:11:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}}}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:24:\"woocommerce-services:tax\";s:5:\"label\";s:44:\"Get automated tax rates with WooCommerce Tax\";s:9:\"image_url\";s:102:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-woo.svg\";s:15:\"learn_more_link\";s:28:\"https://woo.com/products/tax\";s:16:\"install_priority\";i:4;}i:7;O:8:\"stdClass\":10:{s:4:\"name\";s:22:\"TikTok for WooCommerce\";s:9:\"image_url\";s:105:\"https://woo.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-tiktok.svg\";s:11:\"description\";s:64:\"Create advertising campaigns and reach one billion global users.\";s:10:\"manage_url\";s:21:\"admin.php?page=tiktok\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:40:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MX\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MY\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PH\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ID\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"VN\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"TH\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"KR\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IL\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AE\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RU\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"UA\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"TR\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SA\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BR\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}}}}s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:19:\"tiktok-for-business\";s:5:\"label\";s:31:\"Create ad campaigns with TikTok\";s:15:\"learn_more_link\";s:47:\"https://woo.com/products/tiktok-for-woocommerce\";s:16:\"install_priority\";i:1;}}}}}','no'),(302711,'_transient_timeout_woocommerce_admin_payment_gateway_suggestions_specs','1706489847','no'),(302712,'_transient_woocommerce_admin_payment_gateway_suggestions_specs','a:2:{s:5:\"nl_NL\";a:23:{s:6:\"affirm\";O:8:\"stdClass\":11:{s:2:\"id\";s:6:\"affirm\";s:5:\"title\";s:6:\"Affirm\";s:7:\"content\";s:217:\"De aangepaste \'Nu kopen, later betalen\'-programma\'s van Affirm zorgen dat prijs geen belemmering meer is. Zo maak je klanten van bezoekers, verhoog je de gemiddelde bestellingswaarde en breid je je klantenbestand uit.\";s:5:\"image\";s:100:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/affirm.png\";s:11:\"image_72x72\";s:100:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/affirm.png\";s:7:\"plugins\";a:0:{}s:13:\"external_link\";s:51:\"https://woo.com/products/woocommerce-gateway-affirm\";s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:9:\"6.5.0-dev\";s:8:\"operator\";s:2:\">=\";}}s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:2:{i:0;s:2:\"US\";i:1;s:2:\"CA\";}s:23:\"recommendation_priority\";i:4;}s:8:\"afterpay\";O:8:\"stdClass\":10:{s:2:\"id\";s:8:\"afterpay\";s:5:\"title\";s:8:\"Afterpay\";s:7:\"content\";s:104:\"Met Afterpay kunnen klanten hun producten onmiddellijk ontvangen en in vier termijnen rentevrij betalen.\";s:5:\"image\";s:102:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/afterpay.png\";s:11:\"image_72x72\";s:102:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/afterpay.png\";s:7:\"plugins\";a:1:{i:0;s:32:\"afterpay-gateway-for-woocommerce\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:9:\"6.5.0-dev\";s:8:\"operator\";s:2:\">=\";}}s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:3:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"AU\";}s:23:\"recommendation_priority\";i:4;}s:14:\"airwallex_main\";O:8:\"stdClass\":11:{s:2:\"id\";s:14:\"airwallex_main\";s:5:\"title\";s:18:\"Airwallex Payments\";s:7:\"content\";s:115:\"Boost international sales and save on FX fees. Accept 60+ local payment methods including Apple Pay and Google Pay.\";s:5:\"image\";s:97:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/airwallex.png\";s:11:\"image_72x72\";s:103:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/airwallex.png\";s:12:\"square_image\";s:104:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/airwallex-square.png\";s:7:\"plugins\";a:1:{i:0;s:33:\"airwallex-online-payments-gateway\";}s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:17:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CN\";s:9:\"operation\";s:1:\"=\";}}}}s:14:\"category_other\";a:17:{i:0;s:2:\"GB\";i:1;s:2:\"AT\";i:2;s:2:\"BE\";i:3;s:2:\"EE\";i:4;s:2:\"FR\";i:5;s:2:\"DE\";i:6;s:2:\"GR\";i:7;s:2:\"IE\";i:8;s:2:\"IT\";i:9;s:2:\"NL\";i:10;s:2:\"PL\";i:11;s:2:\"PT\";i:12;s:2:\"AU\";i:13;s:2:\"NZ\";i:14;s:2:\"HK\";i:15;s:2:\"SG\";i:16;s:2:\"CN\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:4;}s:24:\"amazon_payments_advanced\";O:8:\"stdClass\":10:{s:2:\"id\";s:24:\"amazon_payments_advanced\";s:5:\"title\";s:10:\"Amazon Pay\";s:7:\"content\";s:105:\"Bied honderden miljoenen actieve Amazon-klanten over de hele wereld een herkenbaar en snel afrekenproces.\";s:5:\"image\";s:103:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/amazonpay.png\";s:11:\"image_72x72\";s:103:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/amazonpay.png\";s:7:\"plugins\";a:1:{i:0;s:44:\"woocommerce-gateway-amazon-payments-advanced\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:18:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SL\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:9:\"6.5.0-dev\";s:8:\"operator\";s:2:\">=\";}}s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:18:{i:0;s:2:\"US\";i:1;s:2:\"AT\";i:2;s:2:\"BE\";i:3;s:2:\"CY\";i:4;s:2:\"DK\";i:5;s:2:\"ES\";i:6;s:2:\"FR\";i:7;s:2:\"DE\";i:8;s:2:\"GB\";i:9;s:2:\"HU\";i:10;s:2:\"IE\";i:11;s:2:\"IT\";i:12;s:2:\"LU\";i:13;s:2:\"NL\";i:14;s:2:\"PT\";i:15;s:2:\"SL\";i:16;s:2:\"SE\";i:17;s:2:\"JP\";}s:23:\"recommendation_priority\";i:4;}s:4:\"bacs\";O:8:\"stdClass\":8:{s:2:\"id\";s:4:\"bacs\";s:5:\"title\";s:26:\"Directe bankoverschrijving\";s:7:\"content\";s:40:\"Betalingen innen via bankoverschrijving.\";s:5:\"image\";s:92:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/bacs.svg\";s:11:\"image_72x72\";s:98:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/bacs.png\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":1:{s:4:\"type\";s:4:\"pass\";}}s:10:\"is_offline\";b:1;s:23:\"recommendation_priority\";i:4;}s:3:\"cod\";O:8:\"stdClass\":8:{s:2:\"id\";s:3:\"cod\";s:5:\"title\";s:29:\"Contant betalen bij ontvangst\";s:7:\"content\";s:43:\"Betalingen in contanten innen bij levering.\";s:5:\"image\";s:91:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/cod.svg\";s:11:\"image_72x72\";s:97:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/cod.png\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":1:{s:4:\"type\";s:4:\"pass\";}}s:10:\"is_offline\";b:1;s:23:\"recommendation_priority\";i:4;}s:4:\"eway\";O:8:\"stdClass\":11:{s:2:\"id\";s:4:\"eway\";s:5:\"title\";s:4:\"Eway\";s:7:\"content\";s:166:\"Met de Eway extensie voor WooCommerce kun je creditcardbetalingen rechtstreeks vanuit je winkel aannemen, zonder dat klanten naar een site van derden omgeleid worden.\";s:5:\"image\";s:92:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/eway.png\";s:11:\"image_72x72\";s:98:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/eway.png\";s:12:\"square_image\";s:99:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/eway-square.png\";s:7:\"plugins\";a:1:{i:0;s:24:\"woocommerce-gateway-eway\";}s:10:\"is_visible\";b:0;s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:4;}s:3:\"kco\";O:8:\"stdClass\":10:{s:2:\"id\";s:3:\"kco\";s:5:\"title\";s:15:\"Klarna Checkout\";s:7:\"content\";s:131:\"Kies de betaling die je wilt: betaal nu, betaal later of verdeel het bedrag. Geen creditcardnummers, geen wachtwoorden, geen gedoe.\";s:5:\"image\";s:77:\"https://woo.com/wp-content/plugins/woocommerce/assets/images/klarna-black.png\";s:11:\"image_72x72\";s:100:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/klarna.png\";s:7:\"plugins\";a:1:{i:0;s:31:\"klarna-checkout-for-woocommerce\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:3:{i:0;s:2:\"NO\";i:1;s:2:\"SE\";i:2;s:2:\"FI\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:4;}s:15:\"klarna_payments\";O:8:\"stdClass\":10:{s:2:\"id\";s:15:\"klarna_payments\";s:5:\"title\";s:15:\"Klarna Payments\";s:7:\"content\";s:131:\"Kies de betaling die je wilt: betaal nu, betaal later of verdeel het bedrag. Geen creditcardnummers, geen wachtwoorden, geen gedoe.\";s:5:\"image\";s:77:\"https://woo.com/wp-content/plugins/woocommerce/assets/images/klarna-black.png\";s:11:\"image_72x72\";s:100:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/klarna.png\";s:7:\"plugins\";a:1:{i:0;s:31:\"klarna-payments-for-woocommerce\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:19:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MX\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:19:{i:0;s:2:\"MX\";i:1;s:2:\"US\";i:2;s:2:\"CA\";i:3;s:2:\"AT\";i:4;s:2:\"BE\";i:5;s:2:\"CH\";i:6;s:2:\"DK\";i:7;s:2:\"ES\";i:8;s:2:\"FI\";i:9;s:2:\"FR\";i:10;s:2:\"DE\";i:11;s:2:\"GB\";i:12;s:2:\"IT\";i:13;s:2:\"NL\";i:14;s:2:\"NO\";i:15;s:2:\"PL\";i:16;s:2:\"SE\";i:17;s:2:\"NZ\";i:18;s:2:\"AU\";}s:23:\"recommendation_priority\";i:3;}s:30:\"mollie_wc_gateway_banktransfer\";O:8:\"stdClass\":11:{s:2:\"id\";s:30:\"mollie_wc_gateway_banktransfer\";s:5:\"title\";s:6:\"Mollie\";s:7:\"content\";s:154:\"Moeiteloos betalen via Mollie: Bied wereldwijde en plaatselijke betaalmethoden aan, ga binnen enkele minuten aan de slag en vind ondersteuning in je taal.\";s:5:\"image\";s:94:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/mollie.svg\";s:11:\"image_72x72\";s:100:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/mollie.png\";s:12:\"square_image\";s:101:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/mollie-square.png\";s:7:\"plugins\";a:1:{i:0;s:31:\"mollie-payments-for-woocommerce\";}s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:11:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}}}}s:14:\"category_other\";a:11:{i:0;s:2:\"AT\";i:1;s:2:\"BE\";i:2;s:2:\"CH\";i:3;s:2:\"ES\";i:4;s:2:\"FI\";i:5;s:2:\"FR\";i:6;s:2:\"DE\";i:7;s:2:\"GB\";i:8;s:2:\"IT\";i:9;s:2:\"NL\";i:10;s:2:\"PL\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:4;}s:7:\"payfast\";O:8:\"stdClass\":10:{s:2:\"id\";s:7:\"payfast\";s:5:\"title\";s:7:\"PayFast\";s:7:\"content\";s:341:\"Met de PayFast extensie voor WooCommerce kun je betalingen met creditcard en EFT accepteren via een van de populairste betaalwijzen van Zuid-Afrika. Geen administratiekosten of maandelijkse abonnementskosten. Door deze extensie te selecteren, wordt je winkel geconfigureerd om gebruik te maken van de Zuid-Afrikaanse rand als gekozen valuta.\";s:5:\"image\";s:72:\"https://woo.com/wp-content/plugins/woocommerce/assets/images/payfast.png\";s:11:\"image_72x72\";s:101:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/payfast.png\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-payfast-gateway\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ZA\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:1:{i:0;s:2:\"ZA\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:4;}s:17:\"payoneer-checkout\";O:8:\"stdClass\":10:{s:2:\"id\";s:17:\"payoneer-checkout\";s:5:\"title\";s:18:\"Payoneer afrekenen\";s:7:\"content\";s:256:\"Payoneer Checkout is de volgende generatie van betalingsverwerkingsplatformen. Verkopers over de hele wereld beschikken zo over de oplossingen en de hulp die ze nodig hebben om succesvol te zijn in de extreem concurrerende globale markt van vandaag de dag.\";s:5:\"image\";s:96:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/payoneer.png\";s:11:\"image_72x72\";s:102:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/payoneer.png\";s:7:\"plugins\";a:1:{i:0;s:17:\"payoneer-checkout\";}s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CN\";s:9:\"operation\";s:1:\"=\";}}}}s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:2:{i:0;s:2:\"HK\";i:1;s:2:\"CN\";}s:23:\"recommendation_priority\";i:4;}s:8:\"paystack\";O:8:\"stdClass\":11:{s:2:\"id\";s:8:\"paystack\";s:5:\"title\";s:8:\"Paystack\";s:7:\"content\";s:154:\"Paystack helpt Afrikaanse verkopers eenmalige en herhaaldelijke betalingen te accepteren online met een modem, veilig en met een beveiligde betaalmethode.\";s:5:\"image\";s:96:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/paystack.png\";s:12:\"square_image\";s:103:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/paystack-square.png\";s:11:\"image_72x72\";s:102:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/paystack.png\";s:7:\"plugins\";a:1:{i:0;s:12:\"woo-paystack\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ZA\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GH\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NG\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:3:{i:0;s:2:\"ZA\";i:1;s:2:\"GH\";i:2;s:2:\"NG\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:4;}s:7:\"payubiz\";O:8:\"stdClass\":10:{s:2:\"id\";s:7:\"payubiz\";s:5:\"title\";s:21:\"PayU voor WooCommerce\";s:7:\"content\";s:193:\"Schakel de PayU’s exclusieve plugin in voor WooCommerce om te beginnen met betalingen te accepteren van 100+ betalingsmethoden beschikbaar in India zoals krediet- en debitkaarten, UPI & meer!\";s:5:\"image\";s:92:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/payu.svg\";s:11:\"image_72x72\";s:98:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/payu.png\";s:7:\"plugins\";a:1:{i:0;s:10:\"payu-india\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IN\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:1:{i:0;s:2:\"IN\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:4;}s:12:\"ppcp-gateway\";O:8:\"stdClass\":11:{s:2:\"id\";s:12:\"ppcp-gateway\";s:5:\"title\";s:17:\"PayPal-betalingen\";s:7:\"content\";s:80:\"Veilig betalingen accepteren via kredietkaart of de PayPal-account van de klant.\";s:5:\"image\";s:71:\"https://woo.com/wp-content/plugins/woocommerce/assets/images/paypal.png\";s:11:\"image_72x72\";s:100:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/paypal.png\";s:12:\"square_image\";s:94:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/paypal.svg\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:49:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MX\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BR\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AR\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CL\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CO\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EC\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PE\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"UY\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"VE\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BG\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HR\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SL\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CN\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ID\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IN\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:48:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"MX\";i:3;s:2:\"BR\";i:4;s:2:\"AR\";i:5;s:2:\"CL\";i:6;s:2:\"CO\";i:7;s:2:\"EC\";i:8;s:2:\"PE\";i:9;s:2:\"UY\";i:10;s:2:\"VE\";i:11;s:2:\"AT\";i:12;s:2:\"BE\";i:13;s:2:\"BG\";i:14;s:2:\"HR\";i:15;s:2:\"CH\";i:16;s:2:\"CY\";i:17;s:2:\"CZ\";i:18;s:2:\"DK\";i:19;s:2:\"EE\";i:20;s:2:\"ES\";i:21;s:2:\"FI\";i:22;s:2:\"FR\";i:23;s:2:\"DE\";i:24;s:2:\"GB\";i:25;s:2:\"GR\";i:26;s:2:\"HU\";i:27;s:2:\"IE\";i:28;s:2:\"IT\";i:29;s:2:\"LV\";i:30;s:2:\"LT\";i:31;s:2:\"LU\";i:32;s:2:\"MT\";i:33;s:2:\"NL\";i:34;s:2:\"NO\";i:35;s:2:\"PL\";i:36;s:2:\"PT\";i:37;s:2:\"RO\";i:38;s:2:\"SK\";i:39;s:2:\"SL\";i:40;s:2:\"SE\";i:41;s:2:\"AU\";i:42;s:2:\"NZ\";i:43;s:2:\"HK\";i:44;s:2:\"JP\";i:45;s:2:\"SG\";i:46;s:2:\"CN\";i:47;s:2:\"ID\";}s:19:\"category_additional\";a:49:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"MX\";i:3;s:2:\"BR\";i:4;s:2:\"AR\";i:5;s:2:\"CL\";i:6;s:2:\"CO\";i:7;s:2:\"EC\";i:8;s:2:\"PE\";i:9;s:2:\"UY\";i:10;s:2:\"VE\";i:11;s:2:\"AT\";i:12;s:2:\"BE\";i:13;s:2:\"BG\";i:14;s:2:\"HR\";i:15;s:2:\"CH\";i:16;s:2:\"CY\";i:17;s:2:\"CZ\";i:18;s:2:\"DK\";i:19;s:2:\"EE\";i:20;s:2:\"ES\";i:21;s:2:\"FI\";i:22;s:2:\"FR\";i:23;s:2:\"DE\";i:24;s:2:\"GB\";i:25;s:2:\"GR\";i:26;s:2:\"HU\";i:27;s:2:\"IE\";i:28;s:2:\"IT\";i:29;s:2:\"LV\";i:30;s:2:\"LT\";i:31;s:2:\"LU\";i:32;s:2:\"MT\";i:33;s:2:\"NL\";i:34;s:2:\"NO\";i:35;s:2:\"PL\";i:36;s:2:\"PT\";i:37;s:2:\"RO\";i:38;s:2:\"SK\";i:39;s:2:\"SL\";i:40;s:2:\"SE\";i:41;s:2:\"AU\";i:42;s:2:\"NZ\";i:43;s:2:\"HK\";i:44;s:2:\"JP\";i:45;s:2:\"SG\";i:46;s:2:\"CN\";i:47;s:2:\"ID\";i:48;s:2:\"IN\";}s:23:\"recommendation_priority\";i:2;}s:8:\"razorpay\";O:8:\"stdClass\":10:{s:2:\"id\";s:8:\"razorpay\";s:5:\"title\";s:8:\"Razorpay\";s:7:\"content\";s:154:\"De officiële Razorpay-extensie voor WooCommerce stelt je in staat om betalingen via creditcards, betaalpassen, online bankieren, wallets en UPI te innen.\";s:5:\"image\";s:96:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/razorpay.svg\";s:11:\"image_72x72\";s:102:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/razorpay.png\";s:7:\"plugins\";a:1:{i:0;s:12:\"woo-razorpay\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IN\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:1:{i:0;s:2:\"IN\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:4;}s:18:\"square_credit_card\";O:8:\"stdClass\":10:{s:2:\"id\";s:18:\"square_credit_card\";s:5:\"title\";s:8:\"Vierkant\";s:7:\"content\";s:207:\"Accepteer creditcards en betaalpassen veilig voor een laag tarief, zonder verborgen toeslagen (aangepaste tarieven beschikbaar). Verkoop online en in de winkel en volg de verkoop en voorraad op één plaats.\";s:5:\"image\";s:77:\"https://woo.com/wp-content/plugins/woocommerce/assets/images/square-black.png\";s:11:\"image_72x72\";s:100:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/square.png\";s:7:\"plugins\";a:1:{i:0;s:18:\"woocommerce-square\";}s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";O:8:\"stdClass\":2:{s:1:\"0\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:1:\"1\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:8:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";O:8:\"stdClass\":2:{s:1:\"0\";O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:14:\"selling_venues\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:12:\"brick-mortar\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:14:\"selling_venues\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:18:\"brick-mortar-other\";}}}s:1:\"1\";O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:21:\"selling_online_answer\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:21:\"no_im_selling_offline\";s:7:\"default\";a:0:{}}}}}}}}s:14:\"category_other\";a:8:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"IE\";i:3;s:2:\"ES\";i:4;s:2:\"FR\";i:5;s:2:\"GB\";i:6;s:2:\"AU\";i:7;s:2:\"JP\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:4;}s:6:\"stripe\";O:8:\"stdClass\":11:{s:2:\"id\";s:6:\"stripe\";s:5:\"title\";s:6:\"Stripe\";s:7:\"content\";s:143:\"Accepteer betaalpassen en creditcards in meer dan 135 valuta\'s, betaalmethoden als Alipay en afrekenen met één druk op de knop via Apple Pay.\";s:5:\"image\";s:71:\"https://woo.com/wp-content/plugins/woocommerce/assets/images/stripe.png\";s:11:\"image_72x72\";s:100:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/stripe.png\";s:12:\"square_image\";s:94:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/stripe.svg\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-stripe\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:40:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MX\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BR\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BG\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SL\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ID\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IN\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:40:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"MX\";i:3;s:2:\"BR\";i:4;s:2:\"AT\";i:5;s:2:\"BE\";i:6;s:2:\"BG\";i:7;s:2:\"CH\";i:8;s:2:\"CY\";i:9;s:2:\"CZ\";i:10;s:2:\"DK\";i:11;s:2:\"EE\";i:12;s:2:\"ES\";i:13;s:2:\"FI\";i:14;s:2:\"FR\";i:15;s:2:\"DE\";i:16;s:2:\"GB\";i:17;s:2:\"GR\";i:18;s:2:\"HU\";i:19;s:2:\"IE\";i:20;s:2:\"IT\";i:21;s:2:\"LV\";i:22;s:2:\"LT\";i:23;s:2:\"LU\";i:24;s:2:\"MT\";i:25;s:2:\"NL\";i:26;s:2:\"NO\";i:27;s:2:\"PL\";i:28;s:2:\"PT\";i:29;s:2:\"RO\";i:30;s:2:\"SK\";i:31;s:2:\"SL\";i:32;s:2:\"SE\";i:33;s:2:\"AU\";i:34;s:2:\"NZ\";i:35;s:2:\"HK\";i:36;s:2:\"JP\";i:37;s:2:\"SG\";i:38;s:2:\"ID\";i:39;s:2:\"IN\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:0;}s:23:\"woo-mercado-pago-custom\";O:8:\"stdClass\":11:{s:2:\"id\";s:23:\"woo-mercado-pago-custom\";s:5:\"title\";s:34:\"Mercado Pago Checkout Pro & Custom\";s:7:\"content\";s:220:\"Accepteer creditcards en debetkaarten, offline (cash of bankoverschrijving) en aangemelde betalingen met geld in Mercado Pago. Veilige en beveiligde betalingen met de toonaangevende betalingsverwerker in Latijns-Amerika.\";s:5:\"image\";s:99:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/mercadopago.png\";s:11:\"image_72x72\";s:105:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/mercadopago.png\";s:7:\"plugins\";a:1:{i:0;s:23:\"woocommerce-mercadopago\";}s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:8:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AR\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CL\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CO\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EC\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"UY\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MX\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BR\";s:9:\"operation\";s:1:\"=\";}}}}s:16:\"is_local_partner\";b:1;s:14:\"category_other\";a:8:{i:0;s:2:\"AR\";i:1;s:2:\"CL\";i:2;s:2:\"CO\";i:3;s:2:\"EC\";i:4;s:2:\"PE\";i:5;s:2:\"UY\";i:6;s:2:\"MX\";i:7;s:2:\"BR\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:1;}s:20:\"woocommerce_payments\";O:8:\"stdClass\":10:{s:2:\"id\";s:20:\"woocommerce_payments\";s:5:\"title\";s:11:\"WooPayments\";s:7:\"content\";s:92:\"Beheer transacties zonder je WordPress dashboard te hoeven verlaten. Alleen met WooPayments.\";s:5:\"image\";s:93:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:12:\"square_image\";s:99:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/woocommerce.svg\";s:11:\"image_72x72\";s:93:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}s:11:\"description\";s:249:\"Met WooPayments kun je veilig creditcards, Apple Pay en betalingen in meer dan 100 valuta\'s accepteren. Houd je kasstroom bij en beheer herhaaldelijke omzet rechtstreeks vanuit het dashboard van je winkel; zonder configuratiekosten of maandtarieven.\";s:10:\"is_visible\";a:4:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:39:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PR\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SI\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BG\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HR\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AE\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:10:\"5.10.0-dev\";s:8:\"operator\";s:1:\"<\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";O:8:\"stdClass\":2:{s:1:\"0\";O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:17:\"woocommerce-admin\";}}}}s:1:\"1\";O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:17:\"woocommerce-admin\";s:7:\"version\";s:9:\"2.9.0-dev\";s:8:\"operator\";s:1:\"<\";}}}}s:23:\"recommendation_priority\";i:4;}s:47:\"woocommerce_payments:without-in-person-payments\";O:8:\"stdClass\":10:{s:2:\"id\";s:47:\"woocommerce_payments:without-in-person-payments\";s:5:\"title\";s:11:\"WooPayments\";s:7:\"content\";s:92:\"Beheer transacties zonder je WordPress dashboard te hoeven verlaten. Alleen met WooPayments.\";s:5:\"image\";s:93:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:11:\"image_72x72\";s:93:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:12:\"square_image\";s:99:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/woocommerce.svg\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}s:11:\"description\";s:249:\"Met WooPayments kun je veilig creditcards, Apple Pay en betalingen in meer dan 100 valuta\'s accepteren. Houd je kasstroom bij en beheer herhaaldelijke omzet rechtstreeks vanuit het dashboard van je winkel; zonder configuratiekosten of maandtarieven.\";s:10:\"is_visible\";a:3:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:37:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PR\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SI\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BG\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HR\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AE\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";O:8:\"stdClass\":2:{s:1:\"0\";O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:17:\"woocommerce-admin\";s:7:\"version\";s:9:\"2.9.0-dev\";s:8:\"operator\";s:2:\">=\";}s:1:\"1\";O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:10:\"5.10.0-dev\";s:8:\"operator\";s:2:\">=\";}}}}s:23:\"recommendation_priority\";i:4;}s:44:\"woocommerce_payments:with-in-person-payments\";O:8:\"stdClass\":10:{s:2:\"id\";s:44:\"woocommerce_payments:with-in-person-payments\";s:5:\"title\";s:11:\"WooPayments\";s:7:\"content\";s:92:\"Beheer transacties zonder je WordPress dashboard te hoeven verlaten. Alleen met WooPayments.\";s:5:\"image\";s:93:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:11:\"image_72x72\";s:93:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:12:\"square_image\";s:99:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/woocommerce.svg\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}s:11:\"description\";s:236:\"Met WooPayments kun je veilig veelgebruikte betaalpassen, Apple Pay en betalingen in meer dan 100 valuta accepteren, zonder administratie- of maandelijkse kosten. Daarnaast kun je nu fysieke betalingen accepteren met de mobiele Woo-app.\";s:10:\"is_visible\";a:3:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";O:8:\"stdClass\":2:{s:1:\"0\";O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:17:\"woocommerce-admin\";s:7:\"version\";s:9:\"2.9.0-dev\";s:8:\"operator\";s:2:\">=\";}s:1:\"1\";O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:10:\"5.10.0-dev\";s:8:\"operator\";s:2:\">=\";}}}}s:23:\"recommendation_priority\";i:4;}s:8:\"zipmoney\";O:8:\"stdClass\":10:{s:2:\"id\";s:8:\"zipmoney\";s:5:\"title\";s:30:\"Zip Co - Koop nu, betaal later\";s:7:\"content\";s:89:\"Laat je klanten op een later moment en zonder rente betalen en zie hoe je verkoop groeit.\";s:5:\"image\";s:96:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/zipmoney.png\";s:11:\"image_72x72\";s:102:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/zipmoney.png\";s:7:\"plugins\";a:1:{i:0;s:29:\"zipmoney-payments-woocommerce\";}s:10:\"is_visible\";b:0;s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:4;}}s:5:\"en_US\";a:23:{s:6:\"affirm\";O:8:\"stdClass\":11:{s:2:\"id\";s:6:\"affirm\";s:5:\"title\";s:6:\"Affirm\";s:7:\"content\";s:169:\"Affirm’s tailored Buy Now Pay Later programs remove price as a barrier, turning browsers into buyers, increasing average order value, and expanding your customer base.\";s:5:\"image\";s:100:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/affirm.png\";s:11:\"image_72x72\";s:100:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/affirm.png\";s:7:\"plugins\";a:0:{}s:13:\"external_link\";s:51:\"https://woo.com/products/woocommerce-gateway-affirm\";s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:9:\"6.5.0-dev\";s:8:\"operator\";s:2:\">=\";}}s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:2:{i:0;s:2:\"US\";i:1;s:2:\"CA\";}s:23:\"recommendation_priority\";i:4;}s:8:\"afterpay\";O:8:\"stdClass\":10:{s:2:\"id\";s:8:\"afterpay\";s:5:\"title\";s:8:\"Afterpay\";s:7:\"content\";s:125:\"Afterpay allows customers to receive products immediately and pay for purchases over four installments, always interest-free.\";s:5:\"image\";s:102:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/afterpay.png\";s:11:\"image_72x72\";s:102:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/afterpay.png\";s:7:\"plugins\";a:1:{i:0;s:32:\"afterpay-gateway-for-woocommerce\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:9:\"6.5.0-dev\";s:8:\"operator\";s:2:\">=\";}}s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:3:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"AU\";}s:23:\"recommendation_priority\";i:4;}s:14:\"airwallex_main\";O:8:\"stdClass\":11:{s:2:\"id\";s:14:\"airwallex_main\";s:5:\"title\";s:18:\"Airwallex Payments\";s:7:\"content\";s:115:\"Boost international sales and save on FX fees. Accept 60+ local payment methods including Apple Pay and Google Pay.\";s:5:\"image\";s:97:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/airwallex.png\";s:11:\"image_72x72\";s:103:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/airwallex.png\";s:12:\"square_image\";s:104:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/airwallex-square.png\";s:7:\"plugins\";a:1:{i:0;s:33:\"airwallex-online-payments-gateway\";}s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:17:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CN\";s:9:\"operation\";s:1:\"=\";}}}}s:14:\"category_other\";a:17:{i:0;s:2:\"GB\";i:1;s:2:\"AT\";i:2;s:2:\"BE\";i:3;s:2:\"EE\";i:4;s:2:\"FR\";i:5;s:2:\"DE\";i:6;s:2:\"GR\";i:7;s:2:\"IE\";i:8;s:2:\"IT\";i:9;s:2:\"NL\";i:10;s:2:\"PL\";i:11;s:2:\"PT\";i:12;s:2:\"AU\";i:13;s:2:\"NZ\";i:14;s:2:\"HK\";i:15;s:2:\"SG\";i:16;s:2:\"CN\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:4;}s:24:\"amazon_payments_advanced\";O:8:\"stdClass\":10:{s:2:\"id\";s:24:\"amazon_payments_advanced\";s:5:\"title\";s:10:\"Amazon Pay\";s:7:\"content\";s:94:\"Enable a familiar, fast checkout for hundreds of millions of active Amazon customers globally.\";s:5:\"image\";s:103:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/amazonpay.png\";s:11:\"image_72x72\";s:103:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/amazonpay.png\";s:7:\"plugins\";a:1:{i:0;s:44:\"woocommerce-gateway-amazon-payments-advanced\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:18:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SL\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:9:\"6.5.0-dev\";s:8:\"operator\";s:2:\">=\";}}s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:18:{i:0;s:2:\"US\";i:1;s:2:\"AT\";i:2;s:2:\"BE\";i:3;s:2:\"CY\";i:4;s:2:\"DK\";i:5;s:2:\"ES\";i:6;s:2:\"FR\";i:7;s:2:\"DE\";i:8;s:2:\"GB\";i:9;s:2:\"HU\";i:10;s:2:\"IE\";i:11;s:2:\"IT\";i:12;s:2:\"LU\";i:13;s:2:\"NL\";i:14;s:2:\"PT\";i:15;s:2:\"SL\";i:16;s:2:\"SE\";i:17;s:2:\"JP\";}s:23:\"recommendation_priority\";i:4;}s:4:\"bacs\";O:8:\"stdClass\":8:{s:2:\"id\";s:4:\"bacs\";s:5:\"title\";s:20:\"Direct bank transfer\";s:7:\"content\";s:32:\"Take payments via bank transfer.\";s:5:\"image\";s:92:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/bacs.svg\";s:11:\"image_72x72\";s:98:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/bacs.png\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":1:{s:4:\"type\";s:4:\"pass\";}}s:10:\"is_offline\";b:1;s:23:\"recommendation_priority\";i:4;}s:3:\"cod\";O:8:\"stdClass\":8:{s:2:\"id\";s:3:\"cod\";s:5:\"title\";s:16:\"Cash on delivery\";s:7:\"content\";s:36:\"Take payments in cash upon delivery.\";s:5:\"image\";s:91:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/cod.svg\";s:11:\"image_72x72\";s:97:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/cod.png\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":1:{s:4:\"type\";s:4:\"pass\";}}s:10:\"is_offline\";b:1;s:23:\"recommendation_priority\";i:4;}s:4:\"eway\";O:8:\"stdClass\":11:{s:2:\"id\";s:4:\"eway\";s:5:\"title\";s:4:\"Eway\";s:7:\"content\";s:171:\"The Eway extension for WooCommerce allows you to take credit card payments directly on your store without redirecting your customers to a third party site to make payment.\";s:5:\"image\";s:92:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/eway.png\";s:11:\"image_72x72\";s:98:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/eway.png\";s:12:\"square_image\";s:99:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/eway-square.png\";s:7:\"plugins\";a:1:{i:0;s:24:\"woocommerce-gateway-eway\";}s:10:\"is_visible\";b:0;s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:4;}s:3:\"kco\";O:8:\"stdClass\":10:{s:2:\"id\";s:3:\"kco\";s:5:\"title\";s:15:\"Klarna Checkout\";s:7:\"content\";s:115:\"Choose the payment that you want, pay now, pay later or slice it. No credit card numbers, no passwords, no worries.\";s:5:\"image\";s:77:\"https://woo.com/wp-content/plugins/woocommerce/assets/images/klarna-black.png\";s:11:\"image_72x72\";s:100:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/klarna.png\";s:7:\"plugins\";a:1:{i:0;s:31:\"klarna-checkout-for-woocommerce\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:3:{i:0;s:2:\"NO\";i:1;s:2:\"SE\";i:2;s:2:\"FI\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:4;}s:15:\"klarna_payments\";O:8:\"stdClass\":10:{s:2:\"id\";s:15:\"klarna_payments\";s:5:\"title\";s:15:\"Klarna Payments\";s:7:\"content\";s:115:\"Choose the payment that you want, pay now, pay later or slice it. No credit card numbers, no passwords, no worries.\";s:5:\"image\";s:77:\"https://woo.com/wp-content/plugins/woocommerce/assets/images/klarna-black.png\";s:11:\"image_72x72\";s:100:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/klarna.png\";s:7:\"plugins\";a:1:{i:0;s:31:\"klarna-payments-for-woocommerce\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:19:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MX\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:19:{i:0;s:2:\"MX\";i:1;s:2:\"US\";i:2;s:2:\"CA\";i:3;s:2:\"AT\";i:4;s:2:\"BE\";i:5;s:2:\"CH\";i:6;s:2:\"DK\";i:7;s:2:\"ES\";i:8;s:2:\"FI\";i:9;s:2:\"FR\";i:10;s:2:\"DE\";i:11;s:2:\"GB\";i:12;s:2:\"IT\";i:13;s:2:\"NL\";i:14;s:2:\"NO\";i:15;s:2:\"PL\";i:16;s:2:\"SE\";i:17;s:2:\"NZ\";i:18;s:2:\"AU\";}s:23:\"recommendation_priority\";i:3;}s:30:\"mollie_wc_gateway_banktransfer\";O:8:\"stdClass\":11:{s:2:\"id\";s:30:\"mollie_wc_gateway_banktransfer\";s:5:\"title\";s:6:\"Mollie\";s:7:\"content\";s:128:\"Effortless payments by Mollie: Offer global and local payment methods, get onboarded in minutes, and supported in your language.\";s:5:\"image\";s:94:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/mollie.svg\";s:11:\"image_72x72\";s:100:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/mollie.png\";s:12:\"square_image\";s:101:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/mollie-square.png\";s:7:\"plugins\";a:1:{i:0;s:31:\"mollie-payments-for-woocommerce\";}s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:11:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}}}}s:14:\"category_other\";a:11:{i:0;s:2:\"AT\";i:1;s:2:\"BE\";i:2;s:2:\"CH\";i:3;s:2:\"ES\";i:4;s:2:\"FI\";i:5;s:2:\"FR\";i:6;s:2:\"DE\";i:7;s:2:\"GB\";i:8;s:2:\"IT\";i:9;s:2:\"NL\";i:10;s:2:\"PL\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:4;}s:7:\"payfast\";O:8:\"stdClass\":10:{s:2:\"id\";s:7:\"payfast\";s:5:\"title\";s:7:\"Payfast\";s:7:\"content\";s:299:\"The Payfast extension for WooCommerce enables you to accept payments by Credit Card and EFT via one of South Africa’s most popular payment gateways. No setup fees or monthly subscription costs. Selecting this extension will configure your store to use South African rands as the selected currency.\";s:5:\"image\";s:72:\"https://woo.com/wp-content/plugins/woocommerce/assets/images/payfast.png\";s:11:\"image_72x72\";s:101:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/payfast.png\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-payfast-gateway\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ZA\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:1:{i:0;s:2:\"ZA\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:4;}s:17:\"payoneer-checkout\";O:8:\"stdClass\":10:{s:2:\"id\";s:17:\"payoneer-checkout\";s:5:\"title\";s:17:\"Payoneer Checkout\";s:7:\"content\";s:202:\"Payoneer Checkout is the next generation of payment processing platforms, giving merchants around the world the solutions and direction they need to succeed in today’s hyper-competitive global market.\";s:5:\"image\";s:96:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/payoneer.png\";s:11:\"image_72x72\";s:102:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/payoneer.png\";s:7:\"plugins\";a:1:{i:0;s:17:\"payoneer-checkout\";}s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CN\";s:9:\"operation\";s:1:\"=\";}}}}s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:2:{i:0;s:2:\"HK\";i:1;s:2:\"CN\";}s:23:\"recommendation_priority\";i:4;}s:8:\"paystack\";O:8:\"stdClass\":11:{s:2:\"id\";s:8:\"paystack\";s:5:\"title\";s:8:\"Paystack\";s:7:\"content\";s:127:\"Paystack helps African merchants accept one-time and recurring payments online with a modern, safe, and secure payment gateway.\";s:5:\"image\";s:96:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/paystack.png\";s:12:\"square_image\";s:103:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/paystack-square.png\";s:11:\"image_72x72\";s:102:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/paystack.png\";s:7:\"plugins\";a:1:{i:0;s:12:\"woo-paystack\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ZA\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GH\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NG\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:3:{i:0;s:2:\"ZA\";i:1;s:2:\"GH\";i:2;s:2:\"NG\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:4;}s:7:\"payubiz\";O:8:\"stdClass\":10:{s:2:\"id\";s:7:\"payubiz\";s:5:\"title\";s:20:\"PayU for WooCommerce\";s:7:\"content\";s:169:\"Enable PayU’s exclusive plugin for WooCommerce to start accepting payments in 100+ payment methods available in India including credit cards, debit cards, UPI, & more!\";s:5:\"image\";s:92:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/payu.svg\";s:11:\"image_72x72\";s:98:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/payu.png\";s:7:\"plugins\";a:1:{i:0;s:10:\"payu-india\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IN\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:1:{i:0;s:2:\"IN\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:4;}s:12:\"ppcp-gateway\";O:8:\"stdClass\":11:{s:2:\"id\";s:12:\"ppcp-gateway\";s:5:\"title\";s:15:\"PayPal Payments\";s:7:\"content\";s:78:\"Safe and secure payments using credit cards or your customer\'s PayPal account.\";s:5:\"image\";s:71:\"https://woo.com/wp-content/plugins/woocommerce/assets/images/paypal.png\";s:11:\"image_72x72\";s:100:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/paypal.png\";s:12:\"square_image\";s:94:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/paypal.svg\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:49:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MX\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BR\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AR\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CL\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CO\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EC\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PE\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"UY\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"VE\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BG\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HR\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SL\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CN\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ID\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IN\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:48:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"MX\";i:3;s:2:\"BR\";i:4;s:2:\"AR\";i:5;s:2:\"CL\";i:6;s:2:\"CO\";i:7;s:2:\"EC\";i:8;s:2:\"PE\";i:9;s:2:\"UY\";i:10;s:2:\"VE\";i:11;s:2:\"AT\";i:12;s:2:\"BE\";i:13;s:2:\"BG\";i:14;s:2:\"HR\";i:15;s:2:\"CH\";i:16;s:2:\"CY\";i:17;s:2:\"CZ\";i:18;s:2:\"DK\";i:19;s:2:\"EE\";i:20;s:2:\"ES\";i:21;s:2:\"FI\";i:22;s:2:\"FR\";i:23;s:2:\"DE\";i:24;s:2:\"GB\";i:25;s:2:\"GR\";i:26;s:2:\"HU\";i:27;s:2:\"IE\";i:28;s:2:\"IT\";i:29;s:2:\"LV\";i:30;s:2:\"LT\";i:31;s:2:\"LU\";i:32;s:2:\"MT\";i:33;s:2:\"NL\";i:34;s:2:\"NO\";i:35;s:2:\"PL\";i:36;s:2:\"PT\";i:37;s:2:\"RO\";i:38;s:2:\"SK\";i:39;s:2:\"SL\";i:40;s:2:\"SE\";i:41;s:2:\"AU\";i:42;s:2:\"NZ\";i:43;s:2:\"HK\";i:44;s:2:\"JP\";i:45;s:2:\"SG\";i:46;s:2:\"CN\";i:47;s:2:\"ID\";}s:19:\"category_additional\";a:49:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"MX\";i:3;s:2:\"BR\";i:4;s:2:\"AR\";i:5;s:2:\"CL\";i:6;s:2:\"CO\";i:7;s:2:\"EC\";i:8;s:2:\"PE\";i:9;s:2:\"UY\";i:10;s:2:\"VE\";i:11;s:2:\"AT\";i:12;s:2:\"BE\";i:13;s:2:\"BG\";i:14;s:2:\"HR\";i:15;s:2:\"CH\";i:16;s:2:\"CY\";i:17;s:2:\"CZ\";i:18;s:2:\"DK\";i:19;s:2:\"EE\";i:20;s:2:\"ES\";i:21;s:2:\"FI\";i:22;s:2:\"FR\";i:23;s:2:\"DE\";i:24;s:2:\"GB\";i:25;s:2:\"GR\";i:26;s:2:\"HU\";i:27;s:2:\"IE\";i:28;s:2:\"IT\";i:29;s:2:\"LV\";i:30;s:2:\"LT\";i:31;s:2:\"LU\";i:32;s:2:\"MT\";i:33;s:2:\"NL\";i:34;s:2:\"NO\";i:35;s:2:\"PL\";i:36;s:2:\"PT\";i:37;s:2:\"RO\";i:38;s:2:\"SK\";i:39;s:2:\"SL\";i:40;s:2:\"SE\";i:41;s:2:\"AU\";i:42;s:2:\"NZ\";i:43;s:2:\"HK\";i:44;s:2:\"JP\";i:45;s:2:\"SG\";i:46;s:2:\"CN\";i:47;s:2:\"ID\";i:48;s:2:\"IN\";}s:23:\"recommendation_priority\";i:2;}s:8:\"razorpay\";O:8:\"stdClass\":10:{s:2:\"id\";s:8:\"razorpay\";s:5:\"title\";s:8:\"Razorpay\";s:7:\"content\";s:133:\"The official Razorpay extension for WooCommerce allows you to accept credit cards, debit cards, netbanking, wallet, and UPI payments.\";s:5:\"image\";s:96:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/razorpay.svg\";s:11:\"image_72x72\";s:102:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/razorpay.png\";s:7:\"plugins\";a:1:{i:0;s:12:\"woo-razorpay\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IN\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:1:{i:0;s:2:\"IN\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:4;}s:18:\"square_credit_card\";O:8:\"stdClass\":10:{s:2:\"id\";s:18:\"square_credit_card\";s:5:\"title\";s:6:\"Square\";s:7:\"content\";s:169:\"Securely accept credit and debit cards with one low rate, no surprise fees (custom rates available). Sell online and in store and track sales and inventory in one place.\";s:5:\"image\";s:77:\"https://woo.com/wp-content/plugins/woocommerce/assets/images/square-black.png\";s:11:\"image_72x72\";s:100:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/square.png\";s:7:\"plugins\";a:1:{i:0;s:18:\"woocommerce-square\";}s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";O:8:\"stdClass\":2:{s:1:\"0\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:1:\"1\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:8:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";O:8:\"stdClass\":2:{s:1:\"0\";O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:14:\"selling_venues\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:12:\"brick-mortar\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:14:\"selling_venues\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:18:\"brick-mortar-other\";}}}s:1:\"1\";O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:21:\"selling_online_answer\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:21:\"no_im_selling_offline\";s:7:\"default\";a:0:{}}}}}}}}s:14:\"category_other\";a:8:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"IE\";i:3;s:2:\"ES\";i:4;s:2:\"FR\";i:5;s:2:\"GB\";i:6;s:2:\"AU\";i:7;s:2:\"JP\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:4;}s:6:\"stripe\";O:8:\"stdClass\":11:{s:2:\"id\";s:6:\"stripe\";s:5:\"title\";s:6:\"Stripe\";s:7:\"content\";s:112:\"Accept debit and credit cards in 135+ currencies, methods such as Alipay, and one-touch checkout with Apple Pay.\";s:5:\"image\";s:71:\"https://woo.com/wp-content/plugins/woocommerce/assets/images/stripe.png\";s:11:\"image_72x72\";s:100:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/stripe.png\";s:12:\"square_image\";s:94:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/stripe.svg\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-stripe\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:40:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MX\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BR\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BG\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SL\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ID\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IN\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:40:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"MX\";i:3;s:2:\"BR\";i:4;s:2:\"AT\";i:5;s:2:\"BE\";i:6;s:2:\"BG\";i:7;s:2:\"CH\";i:8;s:2:\"CY\";i:9;s:2:\"CZ\";i:10;s:2:\"DK\";i:11;s:2:\"EE\";i:12;s:2:\"ES\";i:13;s:2:\"FI\";i:14;s:2:\"FR\";i:15;s:2:\"DE\";i:16;s:2:\"GB\";i:17;s:2:\"GR\";i:18;s:2:\"HU\";i:19;s:2:\"IE\";i:20;s:2:\"IT\";i:21;s:2:\"LV\";i:22;s:2:\"LT\";i:23;s:2:\"LU\";i:24;s:2:\"MT\";i:25;s:2:\"NL\";i:26;s:2:\"NO\";i:27;s:2:\"PL\";i:28;s:2:\"PT\";i:29;s:2:\"RO\";i:30;s:2:\"SK\";i:31;s:2:\"SL\";i:32;s:2:\"SE\";i:33;s:2:\"AU\";i:34;s:2:\"NZ\";i:35;s:2:\"HK\";i:36;s:2:\"JP\";i:37;s:2:\"SG\";i:38;s:2:\"ID\";i:39;s:2:\"IN\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:0;}s:23:\"woo-mercado-pago-custom\";O:8:\"stdClass\":11:{s:2:\"id\";s:23:\"woo-mercado-pago-custom\";s:5:\"title\";s:34:\"Mercado Pago Checkout Pro & Custom\";s:7:\"content\";s:183:\"Accept credit and debit cards, offline (cash or bank transfer) and logged-in payments with money in Mercado Pago. Safe and secure payments with the leading payment processor in LATAM.\";s:5:\"image\";s:99:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/mercadopago.png\";s:11:\"image_72x72\";s:105:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/mercadopago.png\";s:7:\"plugins\";a:1:{i:0;s:23:\"woocommerce-mercadopago\";}s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:8:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AR\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CL\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CO\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EC\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"UY\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MX\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BR\";s:9:\"operation\";s:1:\"=\";}}}}s:16:\"is_local_partner\";b:1;s:14:\"category_other\";a:8:{i:0;s:2:\"AR\";i:1;s:2:\"CL\";i:2;s:2:\"CO\";i:3;s:2:\"EC\";i:4;s:2:\"PE\";i:5;s:2:\"UY\";i:6;s:2:\"MX\";i:7;s:2:\"BR\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:1;}s:20:\"woocommerce_payments\";O:8:\"stdClass\":10:{s:2:\"id\";s:20:\"woocommerce_payments\";s:5:\"title\";s:11:\"WooPayments\";s:7:\"content\";s:84:\"Manage transactions without leaving your WordPress Dashboard. Only with WooPayments.\";s:5:\"image\";s:93:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:12:\"square_image\";s:99:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/woocommerce.svg\";s:11:\"image_72x72\";s:93:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}s:11:\"description\";s:225:\"With WooPayments, you can securely accept major cards, Apple Pay, and payments in over 100 currencies. Track cash flow and manage recurring revenue directly from your store’s dashboard - with no setup costs or monthly fees.\";s:10:\"is_visible\";a:4:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:39:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PR\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SI\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BG\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HR\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AE\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:10:\"5.10.0-dev\";s:8:\"operator\";s:1:\"<\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";O:8:\"stdClass\":2:{s:1:\"0\";O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:17:\"woocommerce-admin\";}}}}s:1:\"1\";O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:17:\"woocommerce-admin\";s:7:\"version\";s:9:\"2.9.0-dev\";s:8:\"operator\";s:1:\"<\";}}}}s:23:\"recommendation_priority\";i:4;}s:47:\"woocommerce_payments:without-in-person-payments\";O:8:\"stdClass\":10:{s:2:\"id\";s:47:\"woocommerce_payments:without-in-person-payments\";s:5:\"title\";s:11:\"WooPayments\";s:7:\"content\";s:84:\"Manage transactions without leaving your WordPress Dashboard. Only with WooPayments.\";s:5:\"image\";s:93:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:11:\"image_72x72\";s:93:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:12:\"square_image\";s:99:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/woocommerce.svg\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}s:11:\"description\";s:225:\"With WooPayments, you can securely accept major cards, Apple Pay, and payments in over 100 currencies. Track cash flow and manage recurring revenue directly from your store’s dashboard - with no setup costs or monthly fees.\";s:10:\"is_visible\";a:3:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:37:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PR\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SI\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BG\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HR\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AE\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";O:8:\"stdClass\":2:{s:1:\"0\";O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:17:\"woocommerce-admin\";s:7:\"version\";s:9:\"2.9.0-dev\";s:8:\"operator\";s:2:\">=\";}s:1:\"1\";O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:10:\"5.10.0-dev\";s:8:\"operator\";s:2:\">=\";}}}}s:23:\"recommendation_priority\";i:4;}s:44:\"woocommerce_payments:with-in-person-payments\";O:8:\"stdClass\":10:{s:2:\"id\";s:44:\"woocommerce_payments:with-in-person-payments\";s:5:\"title\";s:11:\"WooPayments\";s:7:\"content\";s:84:\"Manage transactions without leaving your WordPress Dashboard. Only with WooPayments.\";s:5:\"image\";s:93:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:11:\"image_72x72\";s:93:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:12:\"square_image\";s:99:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/woocommerce.svg\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}s:11:\"description\";s:212:\"With WooPayments, you can securely accept major cards, Apple Pay, and payments in over 100 currencies – with no setup costs or monthly fees – and you can now accept in-person payments with the Woo mobile app.\";s:10:\"is_visible\";a:3:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";O:8:\"stdClass\":2:{s:1:\"0\";O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:17:\"woocommerce-admin\";s:7:\"version\";s:9:\"2.9.0-dev\";s:8:\"operator\";s:2:\">=\";}s:1:\"1\";O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:10:\"5.10.0-dev\";s:8:\"operator\";s:2:\">=\";}}}}s:23:\"recommendation_priority\";i:4;}s:8:\"zipmoney\";O:8:\"stdClass\":10:{s:2:\"id\";s:8:\"zipmoney\";s:5:\"title\";s:27:\"Zip Co - Buy Now, Pay Later\";s:7:\"content\";s:84:\"Give your customers the power to pay later, interest free and watch your sales grow.\";s:5:\"image\";s:96:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/zipmoney.png\";s:11:\"image_72x72\";s:102:\"https://woo.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/zipmoney.png\";s:7:\"plugins\";a:1:{i:0;s:29:\"zipmoney-payments-woocommerce\";}s:10:\"is_visible\";b:0;s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:4;}}}','no'),(302891,'_transient_timeout_wpr_dynamic_lists','1706351656','no'),(302892,'_transient_wpr_dynamic_lists','O:8:\"stdClass\":12:{s:28:\"rucss_inline_atts_exclusions\";a:16:{i:0;s:26:\"rocket-lazyload-inline-css\";i:1;s:35:\"divi-style-parent-inline-inline-css\";i:2;s:14:\"gsf-custom-css\";i:3;s:29:\"extra-style-inline-inline-css\";i:4;s:30:\"woodmart-inline-css-inline-css\";i:5;s:30:\"woodmart_shortcodes-custom-css\";i:6;s:29:\"rs-plugin-settings-inline-css\";i:7;s:28:\"divi-style-inline-inline-css\";i:8;s:27:\"tcb-post-list-dynamic-style\";i:9;s:6:\"n2-ss-\";i:10;s:6:\"wpcf7-\";i:11;s:32:\"siteorigin-panels-layouts-footer\";i:12;s:28:\"xstore-inline-css-inline-css\";i:13;s:17:\"assets.reviews.io\";i:14;s:8:\"ezoicCSS\";i:15;s:4:\"stk-\";}s:31:\"rucss_inline_content_exclusions\";a:45:{i:0;s:14:\".wp-container-\";i:1;s:13:\".wp-elements-\";i:2;s:16:\"#wpv-expandable-\";i:3;s:16:\".custom-content-\";i:4;s:5:\"#thb-\";i:5;s:16:\".et_pb_text_dap_\";i:6;s:24:\"#gdlr-core-shape-divider\";i:7;s:8:\"#ultib3-\";i:8;s:10:\".uvc-wrap-\";i:9;s:26:\".jet-listing-dynamic-post-\";i:10;s:6:\".vcex_\";i:11;s:20:\".wprm-advanced-list-\";i:12;s:9:\".adsslot_\";i:13;s:7:\".jnews_\";i:14;s:21:\".cp-info-bar.content-\";i:15;s:16:\"#stockie-custom-\";i:16;s:13:\"#ohio-custom-\";i:17;s:5:\".uid-\";i:18;s:15:\"#wpfMainWrapper\";i:19;s:7:\"#penci_\";i:20;s:7:\"#penci-\";i:21;s:7:\".wpbs_s\";i:22;s:8:\"#apcore_\";i:23;s:8:\"#apress_\";i:24;s:6:\"#zolo_\";i:25;s:30:\".extended-products-grid#style-\";i:26;s:27:\".preloader#style-preloader-\";i:27;s:16:\".thegem-heading-\";i:28;s:15:\".thegem-button-\";i:29;s:15:\".thegem-custom-\";i:30;s:14:\".thegem-popup-\";i:31;s:9:\"#pattern-\";i:32;s:20:\"#thegem-video-frame-\";i:33;s:8:\"#thegem-\";i:34;s:14:\".qwery_inline_\";i:35;s:19:\".dcgd_submit_button\";i:36;s:8:\".irs-bar\";i:37;s:14:\".gallery-grid-\";i:38;s:13:\".cmplz-hidden\";i:39;s:13:\"#sqbquizouter\";i:40;s:19:\"#start_sqbquizouter\";i:41;s:13:\".flo-header--\";i:42;s:19:\".trx_addons_inline_\";i:43;s:21:\".wpp-cardview-compact\";i:44;s:13:\".e-loop-item-\";}s:26:\"defer_js_inline_exclusions\";a:10:{i:0;s:16:\"DOMContentLoaded\";i:1;s:14:\"document.write\";i:2;s:22:\"window.lazyLoadOptions\";i:3;s:5:\"N.N2_\";i:4;s:18:\"rev_slider_wrapper\";i:5;s:18:\"FB3D_CLIENT_LOCALE\";i:6;s:19:\"ewww_webp_supported\";i:7;s:21:\"anr_captcha_field_div\";i:8;s:24:\"renderInvisibleReCaptcha\";i:9;s:17:\"bookingInProgress\";}s:28:\"defer_js_external_exclusions\";a:36:{i:0;s:15:\"gist.github.com\";i:1;s:22:\"content.jwplatform.com\";i:2;s:14:\"js.hsforms.net\";i:3;s:16:\"www.uplaunch.com\";i:4;s:20:\"google.com/recaptcha\";i:5;s:20:\"widget.reviews.co.uk\";i:6;s:29:\"verify.authorize.net/anetseal\";i:7;s:43:\"lib/admin/assets/lib/webfont/webfont.min.js\";i:8;s:18:\"app.mailerlite.com\";i:9;s:17:\"widget.reviews.io\";i:10;s:35:\"simplybook.(.*)/v2/widget/widget.js\";i:11;s:32:\"/wp-includes/js/dist/i18n.min.js\";i:12;s:79:\"/wp-content/plugins/wpfront-notification-bar/js/wpfront-notification-bar(.*).js\";i:13;s:64:\"/wp-content/plugins/oxygen/component-framework/vendor/aos/aos.js\";i:14;s:70:\"/wp-content/plugins/ewww-image-optimizer/includes/check-webp(.min)?.js\";i:15;s:34:\"static.mailerlite.com/data/(.*).js\";i:16;s:37:\"cdn.voxpow.com/static/libs/v1/(.*).js\";i:17;s:40:\"cdn.voxpow.com/media/trackers/js/(.*).js\";i:18;s:15:\"use.typekit.net\";i:19;s:15:\"www.idxhome.com\";i:20;s:44:\"/wp-includes/js/dist/vendor/lodash(.min)?.js\";i:21;s:40:\"/wp-includes/js/dist/api-fetch(.min)?.js\";i:22;s:35:\"/wp-includes/js/dist/i18n(.min)?.js\";i:23;s:49:\"/wp-includes/js/dist/vendor/wp-polyfill(.min)?.js\";i:24;s:34:\"/wp-includes/js/dist/url(.min)?.js\";i:25;s:36:\"/wp-includes/js/dist/hooks(.min)?.js\";i:26;s:21:\"www.paypal.com/sdk/js\";i:27;s:18:\"js-eu1.hsforms.net\";i:28;s:18:\"yanovis.Voucher.js\";i:29;s:76:\"/carousel-upsells-and-related-product-for-woocommerce/assets/js/glide.min.js\";i:30;s:15:\"use.typekit.com\";i:31;s:39:\"/artale/modules/kirki/assets/webfont.js\";i:32;s:21:\"/api/scripts/lb_cs.js\";i:33;s:27:\"js.hscta.net/cta/current.js\";i:34;s:16:\"widget.refari.co\";i:35;s:20:\"player.vdocipher.com\";}s:19:\"delay_js_exclusions\";a:69:{i:0;s:10:\"nowprocket\";i:1;s:31:\"/wp-includes/js/wp-embed.min.js\";i:2;s:15:\"lazyLoadOptions\";i:3;s:13:\"lazyLoadThumb\";i:4;s:33:\"wp-rocket/assets/js/lazyload/(.*)\";i:5;s:30:\"et_core_page_resource_fallback\";i:6;s:25:\"window.\\$us === undefined\";i:7;s:8:\"js-extra\";i:8;s:20:\"fusionNavIsCollapsed\";i:9;s:26:\"/assets/js/smush-lazy-load\";i:10;s:13:\"eio_lazy_vars\";i:11;s:34:\"\\/lazysizes(\\.min|-pre|-post)?\\.js\";i:12;s:44:\"document\\.body\\.classList\\.remove\\(\"no-js\"\\)\";i:13;s:64:\"document\\.documentElement\\.className\\.replace\\( \'no-js\', \'js\' \\)\";i:14;s:17:\"et_animation_data\";i:15;s:16:\"wpforms_settings\";i:16;s:11:\"var nfForms\";i:17;s:14:\"//stats.wp.com\";i:18;s:9:\"_stq.push\";i:19;s:29:\"fluent_form_ff_form_instance_\";i:20;s:9:\"cpLoadCSS\";i:21;s:13:\"ninja_column_\";i:22;s:16:\"var rbs_gallery_\";i:23;s:12:\"var lepopup_\";i:24;s:28:\"var billing_additional_field\";i:25;s:10:\"var gtm4wp\";i:26;s:21:\"var dataLayer_content\";i:27;s:54:\"/ewww-image-optimizer/includes/load[_-]webp(\\.min)?.js\";i:28;s:52:\"/ewww-image-optimizer/includes/check-webp(\\.min)?.js\";i:29;s:19:\"ewww_webp_supported\";i:30;s:32:\"/dist/js/browser-redirect/app.js\";i:31;s:31:\"/perfmatters/js/lazyload.min.js\";i:32;s:16:\"lazyLoadInstance\";i:33;s:27:\"scripts.mediavine.com/tags/\";i:34;s:17:\"initCubePortfolio\";i:35;s:9:\"simpli.fi\";i:36;s:17:\"gforms_recaptcha_\";i:37;s:57:\"/jetpack-boost/vendor/automattic/jetpack-lazy-images/(.*)\";i:38;s:30:\"jetpack-lazy-images-js-enabled\";i:39;s:26:\"jetpack-boost-critical-css\";i:40;s:24:\"wpformsRecaptchaCallback\";i:41;s:20:\"booking-suedtirol-js\";i:42;s:26:\"wpcp_css_disable_selection\";i:43;s:41:\"/gravityforms/js/conditional_logic.min.js\";i:44;s:34:\"statcounter.com/counter/counter.js\";i:45;s:14:\"var sc_project\";i:46;s:59:\"/jetpack/jetpack_vendor/automattic/jetpack-lazy-images/(.*)\";i:47;s:55:\"/themify-builder/themify/js/modules/fallback(\\.min)?.js\";i:48;s:16:\"handlePixMessage\";i:49;s:16:\"var corner_video\";i:50;s:26:\"cdn.pixfuture.com/hb_v2.js\";i:51;s:25:\"cdn.pixfuture.com/pbix.js\";i:52;s:43:\"served-by.pixfuture.com/www/delivery/ads.js\";i:53;s:64:\"served-by.pixfuture.com/www/delivery/headerbid_sticky_refresh.js\";i:54;s:35:\"serv-vdo.pixfuture.com/vpaid/ads.js\";i:55;s:14:\"wprRemoveCPCSS\";i:56;s:19:\"window.jdgmSettings\";i:57;s:67:\"/photonic/include/js/front-end/nomodule/photonic-baguettebox.min.js\";i:58;s:52:\"/photonic/include/ext/baguettebox/baguettebox.min.js\";i:59;s:27:\"window.wsf_form_json_config\";i:60;s:20:\"et_link_options_data\";i:61;s:19:\"FuseboxPlayerAPIKey\";i:62;s:27:\"js.hscta.net/cta/current.js\";i:63;s:14:\"hbspt.cta.load\";i:64;s:27:\"consent.cookiebot.com/uc.js\";i:65;s:53:\"/woofilter-pro/woofilterpro/js/ion.rangeSlider.min.js\";i:66;s:21:\"barra.r7.com/barra.js\";i:67;s:26:\"rocket_css_lazyload_launch\";i:68;s:16:\"#wpr-lazyload-bg\";}s:18:\"js_minify_external\";a:122:{i:0;s:8:\"html5.js\";i:1;s:11:\"show_ads.js\";i:2;s:14:\"histats.com/js\";i:3;s:21:\"ws.amazon.com/widgets\";i:4;s:5:\"/ads/\";i:5;s:17:\"intensedebate.com\";i:6;s:20:\"scripts.chitika.net/\";i:7;s:12:\"jotform.com/\";i:8;s:15:\"gist.github.com\";i:9;s:16:\"forms.aweber.com\";i:10;s:21:\"video.unrulymedia.com\";i:11;s:12:\"stats.wp.com\";i:12;s:19:\"stats.wordpress.com\";i:13;s:23:\"widget.rafflecopter.com\";i:14;s:29:\"widget-prime.rafflecopter.com\";i:15;s:23:\"releases.flowplayer.org\";i:16;s:13:\"c.ad6media.fr\";i:17;s:19:\"cdn.stickyadstv.com\";i:18;s:12:\"www.smava.de\";i:19;s:20:\"contextual.media.net\";i:20;s:19:\"app.getresponse.com\";i:21;s:24:\"adserver.reklamstore.com\";i:22;s:9:\"s0.wp.com\";i:23;s:16:\"wprp.zemanta.com\";i:24;s:21:\"files.bannersnack.com\";i:25;s:22:\"smarticon.geotrust.com\";i:26;s:11:\"js.gleam.io\";i:27;s:25:\"ir-na.amazon-adsystem.com\";i:28;s:19:\"web.ventunotech.com\";i:29;s:20:\"verify.authorize.net\";i:30;s:21:\"ads.themoneytizer.com\";i:31;s:20:\"embed.finanzcheck.de\";i:32;s:20:\"imagesrv.adition.com\";i:33;s:15:\"js.juicyads.com\";i:34;s:18:\"form.jotformeu.com\";i:35;s:15:\"speakerdeck.com\";i:36;s:22:\"content.jwplatform.com\";i:37;s:24:\"ads.investingchannel.com\";i:38;s:13:\"app.ecwid.com\";i:39;s:20:\"www.industriejobs.de\";i:40;s:14:\"s.gravatar.com\";i:41;s:21:\"googlesyndication.com\";i:42;s:13:\"a.optmstr.com\";i:43;s:14:\"a.optmnstr.com\";i:44;s:13:\"a.opmnstr.com\";i:45;s:12:\"adthrive.com\";i:46;s:13:\"mediavine.com\";i:47;s:14:\"js.hsforms.net\";i:48;s:20:\"googleadservices.com\";i:49;s:16:\"f.convertkit.com\";i:50;s:16:\"recaptcha/api.js\";i:51;s:12:\"mailmunch.co\";i:52;s:20:\"apps.shareaholic.com\";i:53;s:28:\"dsms0mj1bbhn4.cloudfront.net\";i:54;s:12:\"nutrifox.com\";i:55;s:13:\"code.tidio.co\";i:56;s:16:\"www.uplaunch.com\";i:57;s:24:\"widget.reviewability.com\";i:58;s:36:\"embed-cdn.gettyimages.com/widgets.js\";i:59;s:18:\"app.mailerlite.com\";i:60;s:7:\"ck.page\";i:61;s:28:\"cdn.jsdelivr.net/gh/AmauriC/\";i:62;s:39:\"static.klaviyo.com/onsite/js/klaviyo.js\";i:63;s:32:\"a.omappapi.com/app/js/api.min.js\";i:64;s:19:\"static.zdassets.com\";i:65;s:58:\"feedbackcompany.com/widgets/feedback-company-widget.min.js\";i:66;s:17:\"widget.gleamjs.io\";i:67;s:14:\"phonewagon.com\";i:68;s:35:\"simplybook.asia/v2/widget/widget.js\";i:69;s:33:\"simplybook.it/v2/widget/widget.js\";i:70;s:33:\"simplybook.me/v2/widget/widget.js\";i:71;s:48:\"static.botsrv.com/website/js/widget2.36cf1446.js\";i:72;s:27:\"static.mailerlite.com/data/\";i:73;s:14:\"cdn.voxpow.com\";i:74;s:16:\"loader.knack.com\";i:75;s:46:\"embed.lpcontent.net/leadboxes/current/embed.js\";i:76;s:52:\"cc.cdn.civiccomputing.com/9/cookieControl-9.x.min.js\";i:77;s:21:\"cse.google.com/cse.js\";i:78;s:19:\"kit.fontawesome.com\";i:79;s:51:\"cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js\";i:80;s:46:\"static.leadpages.net/leadbars/current/embed.js\";i:81;s:27:\"booqable.com/v2/booqable.js\";i:82;s:18:\"googleoptimize.com\";i:83;s:52:\"cdna.hubpeople.com/js/widget_standalone_two_modes.js\";i:84;s:18:\"s3.tradingview.com\";i:85;s:26:\"www.vbt.io/ext/vbtforms.js\";i:86;s:16:\"cdn.callrail.com\";i:87;s:40:\"documentcloud.adobe.com/view-sdk/main.js\";i:88;s:21:\"static.cleverpush.com\";i:89;s:15:\"js.afterpay.com\";i:90;s:33:\"cdn.enable.co.il/licenses/enable-\";i:91;s:21:\"hcaptcha.com/1/api.js\";i:92;s:46:\"voucher.getavo.it/public/js/yanovis.Voucher.js\";i:93;s:18:\"js-eu1.hsforms.net\";i:94;s:34:\"statcounter.com/counter/counter.js\";i:95;s:11:\"snapppt.com\";i:96;s:15:\"use.typekit.com\";i:97;s:35:\"secure.gravatar.com/js/gprofiles.js\";i:98;s:32:\"cdn.jsdelivr.net/npm/hockeystack\";i:99;s:22:\"widget.prod.faslet.net\";i:100;s:31:\"ga.getresponse.com/script/ga.js\";i:101;s:16:\"cognitoforms.com\";i:102;s:15:\"usercentrics.eu\";i:103;s:16:\"cdn.amcharts.com\";i:104;s:5:\"umami\";i:105;s:20:\"cdn.popt.in/pixel.js\";i:106;s:9:\"m2d.m2.ai\";i:107;s:11:\"pubguru.net\";i:108;s:13:\"trustindex.io\";i:109;s:37:\"cdnjs.cloudflare.com/ajax/libs/prism/\";i:110;s:25:\"podigee-podcast-player.js\";i:111;s:24:\"tarteaucitron.io/load.js\";i:112;s:29:\"osm.klarnaservices.com/lib.js\";i:113;s:25:\"mein.clickskeks.at/app.js\";i:114;s:21:\"barra.r7.com/barra.js\";i:115;s:16:\"widget.refari.co\";i:116;s:20:\"widget.reviews.co.uk\";i:117;s:20:\"player.vdocipher.com\";i:118;s:26:\"www.instagram.com/embed.js\";i:119;s:13:\"smartframe.io\";i:120;s:36:\"challenges.cloudflare.com/turnstile/\";i:121;s:20:\"script.roboassist.ai\";}s:21:\"js_move_after_combine\";a:106:{i:0;s:15:\"map_fusion_map_\";i:1;s:13:\"ec:addProduct\";i:2;s:16:\"ec:addImpression\";i:3;s:30:\"clear_better_facebook_comments\";i:4;s:29:\"vc-row-destroy-equal-heights-\";i:5;s:14:\"dfd-icon-list-\";i:6;s:12:\"SFM_template\";i:7;s:14:\"WLTChangeState\";i:8;s:9:\"wlt_star_\";i:9;s:17:\"wlt_pop_distance_\";i:10;s:14:\"smart_list_tip\";i:11;s:12:\"gd-wgt-pagi-\";i:12;s:11:\"data-rf-id=\";i:13;s:7:\"tvc_po=\";i:14;s:10:\"scrapeazon\";i:15;s:10:\"startclock\";i:16;s:22:\"it_logo_field_owl-box_\";i:17;s:15:\"td_live_css_uid\";i:18;s:17:\"wpvl_paramReplace\";i:19;s:11:\"tdAjaxCount\";i:20;s:9:\"mec_skin_\";i:21;s:4:\"_wca\";i:22;s:8:\"_taboola\";i:23;s:17:\"fbq(\'trackCustom\'\";i:24;s:11:\"fbq(\'track\'\";i:25;s:10:\"data.token\";i:26;s:7:\"sharrre\";i:27;s:19:\"dfads_ajax_load_ads\";i:28;s:13:\"tie_postviews\";i:29;s:10:\"wmp_update\";i:30;s:18:\"h5ab-print-article\";i:31;s:17:\"gform_ajax_frame_\";i:32;s:17:\"gform_post_render\";i:33;s:14:\"mts_view_count\";i:34;s:15:\"act_css_tooltip\";i:35;s:10:\"window.SLB\";i:36;s:14:\"wpt_view_count\";i:37;s:11:\"var dateNow\";i:38;s:16:\"gallery_product_\";i:39;s:21:\".flo-block-slideshow-\";i:40;s:17:\"data=\'api-key=ct-\";i:41;s:20:\"ip_common_function()\";i:42;s:31:\"(\"style#gsf-custom-css\").append\";i:43;s:22:\"a3revWCDynamicGallery_\";i:44;s:24:\"#owl-carousel-instagram-\";i:45;s:19:\"window.FlowFlowOpts\";i:46;s:16:\"jQuery(\'.td_uid_\";i:47;s:16:\"jQuery(\".slider-\";i:48;s:18:\"#dfd-vcard-widget-\";i:49;s:21:\"#sf-instagram-widget-\";i:50;s:18:\".woocommerce-tabs-\";i:51;s:16:\"penci_megamenu__\";i:52;s:18:\"vc_prepareHoverBox\";i:53;s:16:\"wp-temp-form-div\";i:54;s:25:\"_wswebinarsystem_already_\";i:55;s:23:\"#views-extra-css\").text\";i:56;s:20:\"fusetag.setTargeting\";i:57;s:20:\"hit.uptrendsdata.com\";i:58;s:27:\"callback:window.renderBadge\";i:59;s:29:\"test_run_nf_conditional_logic\";i:60;s:9:\"cb_nombre\";i:61;s:12:\"$(\'.fl-node-\";i:62;s:24:\"function($){google_maps_\";i:63;s:14:\"$(\"#myCarousel\";i:64;s:18:\"et_animation_data=\";i:65;s:13:\"current_url=\"\";i:66;s:44:\"CustomEvent.prototype=window.Event.prototype\";i:67;s:26:\"electro-wc-product-gallery\";i:68;s:14:\"woof_is_mobile\";i:69;s:20:\"jQuery(\'.videonextup\";i:70;s:10:\"wpp_params\";i:71;s:24:\"us.templateDirectoryUri=\";i:72;s:17:\".fat-gallery-item\";i:73;s:10:\".ratingbox\";i:74;s:33:\"user_rating.prototype.eraseCookie\";i:75;s:23:\"test_run_nf_conditional\";i:76;s:26:\"dpsp-networks-btns-wrapper\";i:77;s:19:\"pa_woo_product_info\";i:78;s:35:\"sharing_enabled_on_post_via_metabox\";i:79;s:22:\"#product-search-field-\";i:80;s:19:\"GOTMLS_login_offset\";i:81;s:40:\"berocket_aapf_time_to_fix_products_style\";i:82;s:27:\"window.vc_googleMapsPointer\";i:83;s:8:\"sinceID_\";i:84;s:31:\"#ut-background-video-ut-section\";i:85;s:26:\"+window.comment_tab_width+\";i:86;s:19:\"dfd-button-hover-in\";i:87;s:21:\"wpseo-address-wrapper\";i:88;s:24:\"platform.stumbleupon.com\";i:89;s:27:\"#woo_pp_ec_button_mini_cart\";i:90;s:14:\"#supercarousel\";i:91;s:10:\"blockClass\";i:92;s:11:\"tdbMenuItem\";i:93;s:13:\"tdbSearchItem\";i:94;s:17:\"best_seller_badge\";i:95;s:24:\"jQuery(\'#product-top-bar\";i:96;s:8:\"fb_desc-\";i:97;s:21:\"FC_regenerate_captcha\";i:98;s:34:\"wp_post_blocks_vars.listed_posts=[\";i:99;s:12:\"captcha-hash\";i:100;s:9:\"mapdata={\";i:101;s:11:\".ywpc-char-\";i:102;s:17:\").countdowntimer(\";i:103;s:16:\"jQuery(\"#td_uid_\";i:104;s:14:\"find(\'#td_uid_\";i:105;s:22:\"variation_estimate_msg\";}s:18:\"js_excluded_inline\";a:311:{i:0;s:14:\"document.write\";i:1;s:9:\"google_ad\";i:2;s:9:\"edToolbar\";i:3;s:4:\"gtag\";i:4;s:9:\"_gaq.push\";i:5;s:5:\"_gaLt\";i:6;s:21:\"GoogleAnalyticsObject\";i:7;s:17:\"syntaxhighlighter\";i:8;s:11:\"adsbygoogle\";i:9;s:7:\"ci_cap_\";i:10;s:4:\"_stq\";i:11;s:5:\"nonce\";i:12;s:7:\"post_id\";i:13;s:8:\"LogHuman\";i:14;s:15:\"idcomments_acct\";i:15;s:9:\"ch_client\";i:16;s:11:\"sc_online_t\";i:17;s:4:\"_stq\";i:18;s:17:\"bannersnack_embed\";i:19;s:15:\"vtn_player_type\";i:20;s:13:\"ven_video_key\";i:21;s:15:\"ANS_customer_id\";i:22;s:7:\"tdBlock\";i:23;s:12:\"tdLocalCache\";i:24;s:11:\"wpRestNonce\";i:25;s:6:\"\"url\":\";i:26;s:15:\"lazyLoadOptions\";i:27;s:8:\"adthrive\";i:28;s:7:\"loadCSS\";i:29;s:17:\"google_tag_params\";i:30;s:13:\"clicky_custom\";i:31;s:15:\"clicky_site_ids\";i:32;s:14:\"NSLPopupCenter\";i:33;s:4:\"_paq\";i:34;s:3:\"gtm\";i:35;s:9:\"dataLayer\";i:36;s:13:\"RecaptchaLoad\";i:37;s:20:\"WPCOM_sharing_counts\";i:38;s:22:\"jetpack_remote_comment\";i:39;s:15:\"subscribe-field\";i:40;s:9:\"contextly\";i:41;s:7:\"_mmunch\";i:42;s:14:\"gt_request_uri\";i:43;s:12:\"doGTranslate\";i:44;s:8:\"docTitle\";i:45;s:17:\"bs_ajax_paginate_\";i:46;s:20:\"bs_deferred_loading_\";i:47;s:22:\"theChampRedirectionUrl\";i:48;s:20:\"theChampFBCommentUrl\";i:49;s:23:\"theChampTwitterRedirect\";i:50;s:25:\"theChampRegRedirectionUrl\";i:51;s:14:\"ESSB_CACHE_URL\";i:52;s:30:\"oneall_social_login_providers_\";i:53;s:22:\"betterads_screen_width\";i:54;s:40:\"woocommerce_wishlist_add_to_wishlist_url\";i:55;s:21:\"arf_conditional_logic\";i:56;s:27:\"heateorSsHorSharingShortUrl\";i:57;s:8:\"TL_Const\";i:58;s:23:\"bimber_front_microshare\";i:59;s:17:\"setAttribute(\"id\"\";i:60;s:18:\"setAttribute( \"id\"\";i:61;s:14:\"TribeEventsPro\";i:62;s:14:\"peepsotimedata\";i:63;s:9:\"wphc_data\";i:64;s:10:\"hc_rand_id\";i:65;s:7:\"RBL_ADD\";i:66;s:18:\"AfsAnalyticsObject\";i:67;s:18:\"_thriveCurrentPost\";i:68;s:13:\"esc_login_url\";i:69;s:18:\"fwduvpMainPlaylist\";i:70;s:26:\"Bibblio.initRelatedContent\";i:71;s:9:\"showUFC()\";i:72;s:8:\"#iphorm-\";i:73;s:7:\"#fancy-\";i:74;s:13:\"ult-carousel-\";i:75;s:17:\"theChampLJAuthUrl\";i:76;s:6:\"f._fbq\";i:77;s:10:\"Insticator\";i:78;s:15:\"w2dc_js_objects\";i:79;s:11:\"cherry_ajax\";i:80;s:9:\"ad_block_\";i:81;s:23:\"elementorFrontendConfig\";i:82;s:5:\"zeen_\";i:83;s:16:\"disqusIdentifier\";i:84;s:14:\"currentAjaxUrl\";i:85;s:27:\"geodir_event_call_calendar_\";i:86;s:8:\"atatags-\";i:87;s:18:\"hbspt.forms.create\";i:88;s:19:\"function(c,h,i,m,p)\";i:89;s:11:\"dataTable({\";i:90;s:12:\"rankMath = {\";i:91;s:10:\"_atrk_opts\";i:92;s:16:\"quicklinkOptions\";i:93;s:11:\"ct_checkjs_\";i:94;s:18:\"WP_Statistics_http\";i:95;s:12:\"penci_block_\";i:96;s:15:\"omapi_localized\";i:97;s:10:\"omapi_data\";i:98;s:15:\"OptinMonsterApp\";i:99;s:9:\"tminusnow\";i:100;s:7:\"nfForms\";i:101;s:18:\"galleries.gallery_\";i:102;s:14:\"wcj_evt.prodID\";i:103;s:19:\"advads_tracking_ads\";i:104;s:28:\"advadsGATracking.postContext\";i:105;s:14:\"woopack_config\";i:106;s:14:\"ulp_content_id\";i:107;s:26:\"wp-cumulus/tagcloud.swf?r=\";i:108;s:24:\"ctSetCookie(\'ct_checkjs\'\";i:109;s:20:\"woof_really_curr_tax\";i:110;s:17:\"uLogin.customInit\";i:111;s:32:\"i18n_no_matching_variations_text\";i:112;s:22:\"alsp_map_markers_attrs\";i:113;s:13:\"var inc_opt =\";i:114;s:13:\"iworks_upprev\";i:115;s:19:\"yith_wcevti_tickets\";i:116;s:27:\"window.metrilo.ensure_cbuid\";i:117;s:13:\"metrilo.event\";i:118;s:19:\"wordpress_page_root\";i:119;s:9:\"wcct_info\";i:120;s:20:\"Springbot.product_id\";i:121;s:17:\"pysWooProductData\";i:122;s:11:\"dfd-heading\";i:123;s:8:\"owl=$(\"#\";i:124;s:14:\"penci_megamenu\";i:125;s:12:\"fts_security\";i:126;s:19:\"algoliaAutocomplete\";i:127;s:22:\"avia_framework_globals\";i:128;s:23:\"tabs.easyResponsiveTabs\";i:129;s:20:\"searchlocationHeader\";i:130;s:16:\"yithautocomplete\";i:131;s:19:\"data-parallax-speed\";i:132;s:14:\"currency_data=\";i:133;s:11:\"cedexisData\";i:134;s:23:\"function reenableButton\";i:135;s:12:\"#wpnbio-show\";i:136;s:29:\"e.Newsletter2GoTrackingObject\";i:137;s:15:\"var categories_\";i:138;s:14:\"\"+nRemaining+\"\";i:139;s:20:\"cartsguru_cart_token\";i:140;s:21:\"after_share_easyoptin\";i:141;s:18:\"location_data.push\";i:142;s:30:\"thirstyFunctions.isThirstyLink\";i:143;s:23:\"styles: \' #custom-menu-\";i:144;s:20:\"function svc_center_\";i:145;s:25:\"#svc_carousel2_container_\";i:146;s:11:\"advads.move\";i:147;s:9:\"elementid\";i:148;s:14:\"advads_has_ads\";i:149;s:14:\"wpseo_map_init\";i:150;s:20:\"mdf_current_page_url\";i:151;s:12:\"tptn_tracker\";i:152;s:20:\"dpsp_pin_button_data\";i:153;s:27:\"searchwp_live_search_params\";i:154;s:10:\"wpp_params\";i:155;s:21:\"top.location,thispage\";i:156;s:18:\"selection+pagelink\";i:157;s:20:\"ic_window_resolution\";i:158;s:11:\"PHP.wp_p_id\";i:159;s:29:\"ShopifyBuy.UI.onReady(client)\";i:160;s:16:\"orig_request_uri\";i:161;s:16:\"gie.widgets.load\";i:162;s:11:\"Adman.Flash\";i:163;s:11:\"PHP.wp_p_id\";i:164;s:26:\"window.broadstreetKeywords\";i:165;s:15:\"var productId =\";i:166;s:16:\"var flatsomeVars\";i:167;s:21:\"wc_product_block_data\";i:168;s:21:\"static.mailerlite.com\";i:169;s:10:\"amzn_assoc\";i:170;s:22:\"_bs_getParameterByName\";i:171;s:9:\"_stq.push\";i:172;s:9:\"h._remove\";i:173;s:16:\"var FlowFlowOpts\";i:174;s:14:\"var WCPFData =\";i:175;s:14:\"var _beeketing\";i:176;s:16:\"var _statcounter\";i:177;s:13:\"var actions =\";i:178;s:15:\"var current_url\";i:179;s:15:\"var object_name\";i:180;s:19:\"var the_ajax_script\";i:181;s:28:\"var wc_cart_fragments_params\";i:182;s:22:\"var woocommerce_params\";i:183;s:16:\"var wpml_cookies\";i:184;s:21:\"wc_add_to_cart_params\";i:185;s:26:\"window.broadstreetKeywords\";i:186;s:35:\"window.wc_ga_pro.available_gateways\";i:187;s:12:\"xa.prototype\";i:188;s:21:\"HOUZEZ_ajaxcalls_vars\";i:189;s:17:\"w2dc_maps_objects\";i:190;s:26:\"w2dc_controller_args_array\";i:191;s:22:\"w2dc_map_markers_attrs\";i:192;s:9:\"YT.Player\";i:193;s:9:\"WPFC.data\";i:194;s:23:\"function current_video_\";i:195;s:12:\"var videodiv\";i:196;s:22:\"var slider_wppasrotate\";i:197;s:8:\"wppas_ga\";i:198;s:14:\"var blockClass\";i:199;s:13:\"tarteaucitron\";i:200;s:21:\"pw_brand_product_list\";i:201;s:15:\"tminusCountDown\";i:202;s:23:\"pysWooSelectContentData\";i:203;s:13:\"wpvq_ans89733\";i:204;s:12:\"_isp_version\";i:205;s:16:\"price_range_data\";i:206;s:29:\"window.FeedbackCompanyWidgets\";i:207;s:22:\"woocs_current_currency\";i:208;s:30:\"woo_variation_swatches_options\";i:209;s:31:\"woocommerce_price_slider_params\";i:210;s:12:\"scriptParams\";i:211;s:19:\"form-adv-pagination\";i:212;s:23:\"borlabsCookiePrioritize\";i:213;s:21:\"urls_wpwidgetpolylang\";i:214;s:14:\"quickViewNonce\";i:215;s:22:\"frontendscripts_params\";i:216;s:21:\"nj-facebook-messenger\";i:217;s:20:\"var fb_mess_position\";i:218;s:36:\"init_particles_row_background_script\";i:219;s:15:\"setREVStartSize\";i:220;s:7:\"fl-node\";i:221;s:11:\"PPAccordion\";i:222;s:10:\"soliloquy_\";i:223;s:25:\"wprevpublicjs_script_vars\";i:224;s:19:\"DTGS_NONCE_FRONTEND\";i:225;s:17:\"et_animation_data\";i:226;s:17:\"archives-dropdown\";i:227;s:15:\"loftloaderCache\";i:228;s:17:\"SmartSliderSimple\";i:229;s:14:\"var nectarLove\";i:230;s:10:\"var incOpt\";i:231;s:33:\"RocketBrowserCompatibilityChecker\";i:232;s:24:\"RocketPreloadLinksConfig\";i:233;s:18:\"placementVersionId\";i:234;s:11:\"var useEdit\";i:235;s:23:\"var DTGS_NONCE_FRONTEND\";i:236;s:8:\"n2jQuery\";i:237;s:26:\"et_core_api_spam_recaptcha\";i:238;s:6:\"cnArgs\";i:239;s:14:\"__CF$cv$params\";i:240;s:17:\"trustbox_settings\";i:241;s:5:\"aepro\";i:242;s:10:\"cdn.jst.ai\";i:243;s:25:\"w2dc_fields_in_categories\";i:244;s:21:\"jetMenuPublicSettings\";i:245;s:17:\"JetTricksSettings\";i:246;s:10:\"aepc_pixel\";i:247;s:20:\"avadaWooCommerceVars\";i:248;s:7:\"var isb\";i:249;s:9:\"fcaPcPost\";i:250;s:10:\"csrf_token\";i:251;s:24:\"icwp_wpsf_vars_lpantibot\";i:252;s:11:\"wpvViewHead\";i:253;s:16:\"ed_school_plugin\";i:254;s:9:\"aps_comp_\";i:255;s:11:\"guaven_woos\";i:256;s:16:\"__lm_redirect_to\";i:257;s:17:\"__wpdm_view_count\";i:258;s:23:\"bookacti.booking_system\";i:259;s:10:\"nfFrontEnd\";i:260;s:20:\"view_quote_cart_link\";i:261;s:19:\"__eae_decode_emails\";i:262;s:20:\"divioverlays_ajaxurl\";i:263;s:10:\"var _EPYT_\";i:264;s:13:\"#ins-heading-\";i:265;s:12:\"#ins-button-\";i:266;s:20:\"tve_frontend_options\";i:267;s:8:\"lb24.src\";i:268;s:24:\"amazon_Login_accessToken\";i:269;s:21:\"porto_infinite_scroll\";i:270;s:14:\".adace-loader-\";i:271;s:11:\"adace_load_\";i:272;s:41:\"tagGroupsAccordiontaggroupscloudaccordion\";i:273;s:31:\"tagGroupsTabstaggroupscloudtabs\";i:274;s:16:\"jrRelatedWidgets\";i:275;s:14:\"UNCODE.initRow\";i:276;s:28:\"amp_mobile_redirect_disabled\";i:277;s:11:\"wpgdprcData\";i:278;s:28:\"wpml_browser_redirect_params\";i:279;s:13:\"swPreRegister\";i:280;s:15:\"kboard_settings\";i:281;s:23:\"ct_ultimate_gdpr_cookie\";i:282;s:23:\"wcpv_registration_local\";i:283;s:15:\"www.idxhome.com\";i:284;s:24:\"arf_footer_cl_logic_call\";i:285;s:23:\"reload_attached_coupons\";i:286;s:8:\"var ftpp\";i:287;s:15:\"forminatorFront\";i:288;s:6:\"_EPYT_\";i:289;s:23:\"edd_free_downloads_vars\";i:290;s:15:\"edd_stripe_vars\";i:291;s:7:\"var ASP\";i:292;s:18:\"ecwidOriginalTitle\";i:293;s:17:\"defaultCategoryId\";i:294;s:25:\"translation-revision-date\";i:295;s:20:\"google_conversion_id\";i:296;s:5:\"hbspt\";i:297;s:21:\"var marker_locations_\";i:298;s:13:\"var AdmMyAjax\";i:299;s:13:\"ifso_page_url\";i:300;s:21:\"referrer_for_pageload\";i:301;s:38:\"WoocommerceWidget/woocommerceWidget.js\";i:302;s:19:\"var ht_ctc_chat_var\";i:303;s:6:\"spuvar\";i:304;s:16:\"var wpilFrontend\";i:305;s:24:\"urls_polylangREPLACETOID\";i:306;s:34:\"e.setAttribute(\'unselectable\',on);\";i:307;s:16:\"try{Typekit.load\";i:308;s:9:\"iMapsData\";i:309;s:24:\"var wpforms_user_journey\";i:310;s:24:\"rocket_lazyload_css_data\";}s:24:\"cache_ignored_parameters\";a:68:{i:0;s:10:\"utm_source\";i:1;s:10:\"utm_medium\";i:2;s:12:\"utm_campaign\";i:3;s:9:\"utm_expid\";i:4;s:8:\"utm_term\";i:5;s:11:\"utm_content\";i:6;s:6:\"utm_id\";i:7;s:19:\"utm_source_platform\";i:8;s:19:\"utm_creative_format\";i:9;s:20:\"utm_marketing_tactic\";i:10;s:10:\"mtm_source\";i:11;s:10:\"mtm_medium\";i:12;s:12:\"mtm_campaign\";i:13;s:11:\"mtm_keyword\";i:14;s:7:\"mtm_cid\";i:15;s:11:\"mtm_content\";i:16;s:9:\"pk_source\";i:17;s:9:\"pk_medium\";i:18;s:11:\"pk_campaign\";i:19;s:10:\"pk_keyword\";i:20;s:6:\"pk_cid\";i:21;s:10:\"pk_content\";i:22;s:13:\"fb_action_ids\";i:23;s:15:\"fb_action_types\";i:24;s:9:\"fb_source\";i:25;s:6:\"fbclid\";i:26;s:10:\"campaignid\";i:27;s:9:\"adgroupid\";i:28;s:4:\"adid\";i:29;s:5:\"gclid\";i:30;s:12:\"age-verified\";i:31;s:12:\"ao_noptimize\";i:32;s:4:\"usqp\";i:33;s:11:\"cn-reloaded\";i:34;s:3:\"_ga\";i:35;s:5:\"sscid\";i:36;s:6:\"gclsrc\";i:37;s:3:\"_gl\";i:38;s:6:\"mc_cid\";i:39;s:6:\"mc_eid\";i:40;s:8:\"_bta_tid\";i:41;s:6:\"_bta_c\";i:42;s:11:\"trk_contact\";i:43;s:7:\"trk_msg\";i:44;s:10:\"trk_module\";i:45;s:7:\"trk_sid\";i:46;s:5:\"gdfms\";i:47;s:6:\"gdftrk\";i:48;s:5:\"gdffi\";i:49;s:3:\"_ke\";i:50;s:3:\"_kx\";i:51;s:21:\"redirect_log_mongo_id\";i:52;s:17:\"redirect_mongo_id\";i:53;s:15:\"sb_referer_host\";i:54;s:5:\"mkwid\";i:55;s:5:\"pcrid\";i:56;s:5:\"ef_id\";i:57;s:7:\"s_kwcid\";i:58;s:7:\"msclkid\";i:59;s:4:\"dm_i\";i:60;s:4:\"epik\";i:61;s:2:\"pp\";i:62;s:6:\"gbraid\";i:63;s:6:\"wbraid\";i:64;s:8:\"ssp_iabi\";i:65;s:8:\"ssp_iaba\";i:66;s:3:\"gad\";i:67;s:6:\"vgo_ee\";}s:18:\"preload_exclusions\";a:4:{i:0;s:9:\"void\\(.*;\";i:1;s:17:\"(.*)__trashed(.*)\";i:2;s:14:\"/jet-menu/(.*)\";i:3;s:15:\"/jet-popup/(.*)\";}s:16:\"exclude_js_files\";a:8:{i:0;s:32:\"/wp-includes/js/dist/i18n.min.js\";i:1;s:76:\"/interactive-3d-flipbook-powered-physics-engine/assets/js/html2canvas.min.js\";i:2;s:68:\"/interactive-3d-flipbook-powered-physics-engine/assets/js/pdf.min.js\";i:3;s:70:\"/interactive-3d-flipbook-powered-physics-engine/assets/js/three.min.js\";i:4;s:77:\"/interactive-3d-flipbook-powered-physics-engine/assets/js/3d-flip-book.min.js\";i:5;s:39:\"/google-site-kit/dist/assets/js/(.*).js\";i:6;s:45:\"/wp-live-chat-support/public/js/callus(.*).js\";i:7;s:41:\"/borlabs-cookie/assets/javascript/(.*).js\";}s:15:\"staging_domains\";a:28:{i:0;s:13:\".wpengine.com\";i:1;s:20:\".wpenginepowered.com\";i:2;s:16:\".pantheonsite.io\";i:3;s:18:\".flywheelsites.com\";i:4;s:20:\".flywheelstaging.com\";i:5;s:11:\".kinsta.com\";i:6;s:13:\".kinsta.cloud\";i:7;s:18:\".cloudwaysapps.com\";i:8;s:18:\".azurewebsites.net\";i:9;s:14:\".wpserveur.net\";i:10;s:19:\"-liquidwebsites.com\";i:11;s:16:\".myftpupload.com\";i:12;s:12:\".dream.press\";i:13;s:12:\".sg-host.com\";i:14;s:16:\".platformsh.site\";i:15;s:12:\".wpstage.net\";i:16;s:22:\".bigscoots-staging.com\";i:17;s:10:\".wpsc.site\";i:18;s:14:\".runcloud.link\";i:19;s:14:\".onrocket.site\";i:20;s:18:\".singlestaging.com\";i:21;s:13:\".myraidbox.de\";i:22;s:12:\".instawp.xyz\";i:23;s:11:\".instawp.co\";i:24;s:13:\".instawp.link\";i:25;s:12:\".instawp.app\";i:26;s:12:\".hstgr.cloud\";i:27;s:15:\".myhostpoint.ch\";}}','no'),(303071,'_transient_timeout_f785ac59d20d5526fed60adae4ec312e','1705908840','no'),(303072,'_transient_f785ac59d20d5526fed60adae4ec312e','O:8:\"stdClass\":19:{s:11:\"new_version\";s:5:\"1.0.5\";s:14:\"stable_version\";s:5:\"1.0.5\";s:4:\"name\";s:21:\"ACF Export Add-On Pro\";s:4:\"slug\";s:15:\"wpae-acf-add-on\";s:3:\"url\";s:72:\"https://www.wpallimport.com/downloads/acf-export-add-on-pro/?changelog=1\";s:12:\"last_updated\";s:19:\"2023-11-09 20:49:16\";s:8:\"homepage\";s:60:\"https://www.wpallimport.com/downloads/acf-export-add-on-pro/\";s:8:\"sections\";a:2:{s:11:\"description\";s:132:\"<p>Learn more at <a href=\"http://www.wpallimport.com/\" target=\"_blank\" rel=\"noopener noreferrer\">http://www.wpallimport.com/</a></p>\";s:9:\"changelog\";s:835:\"<h4>1.0.5</h4><ul>\r\n<li>improvement: add support for locally defined ACF Blocks</li>\r\n<li>bug fix: resolve issue when exporting ACF Blocks</li>\r\n<li>bug fix: resolve issue when exporting ACF multiple select fields</li>\r\n<li>bug fix: PHP 8 error with Flexible Content Fields</li>\r\n<li>bug fix: resolve issue with changelog showing incorrect information</li>\r\n</ul><h4>1.0.4</h4><ul>\r\n<li>bug fix: ACF link field isn\'t exported correctly if \'Link URL\' is set as the return value</li>\r\n</ul><h4>1.0.3</h4>\r\n<ul>\r\n 	<li>improvement: decrease frequency of plugin update checks</li>\r\n 	<li>improvement: initial PHP 8 support</li>\r\n</ul>\r\n<h4>1.0.2</h4>\r\n<ul>\r\n 	<li>cleanup: remove plugins page notice</li>\r\n</ul>\r\n<h4>1.0.1</h4>\r\n<ul>\r\n 	<li>improvement: enable sslverify</li>\r\n</ul>\r\n<h4>1.0.0</h4>\r\n<ul>\r\n 	<li>Initial release</li>\r\n</ul>\";}s:7:\"banners\";a:2:{s:4:\"high\";s:0:\"\";s:3:\"low\";s:0:\"\";}s:18:\"custom_update_note\";s:0:\"\";s:19:\"update_note_version\";s:0:\"\";s:5:\"icons\";a:0:{}s:3:\"msg\";s:8:\"Success.\";s:7:\"package\";s:87:\"https://update.wpallimport.com/serve_package?package_id=4203451&version=1.0.5&license=0\";s:13:\"download_link\";s:87:\"https://update.wpallimport.com/serve_package?package_id=4203451&version=1.0.5&license=0\";s:6:\"tested\";s:5:\"6.4.2\";s:6:\"author\";s:6:\"Soflyy\";s:8:\"requires\";s:3:\"5.0\";s:12:\"requires_php\";s:3:\"7.4\";}','no'),(303073,'_transient_timeout_48036350658a9195879855e81fdcfbb8','1705908841','no'),(303074,'_transient_48036350658a9195879855e81fdcfbb8','O:8:\"stdClass\":19:{s:11:\"new_version\";s:5:\"1.0.9\";s:14:\"stable_version\";s:5:\"1.0.9\";s:4:\"name\";s:29:\"WooCommerce Export Add-On Pro\";s:4:\"slug\";s:23:\"wpae-woocommerce-add-on\";s:3:\"url\";s:76:\"https://www.wpallimport.com/downloads/woocommerce-export-add-on/?changelog=1\";s:12:\"last_updated\";s:19:\"2023-11-08 16:27:29\";s:8:\"homepage\";s:64:\"https://www.wpallimport.com/downloads/woocommerce-export-add-on/\";s:8:\"sections\";a:2:{s:11:\"description\";s:132:\"<p>Learn more at <a href=\"http://www.wpallimport.com/\" target=\"_blank\" rel=\"noopener noreferrer\">http://www.wpallimport.com/</a></p>\";s:9:\"changelog\";s:1687:\"<h4>1.0.9</h4><ul>\r\n<li>minimum WordPress version: 5.0</li>\r\n<li>minimum PHP version: 7.2</li>\r\n<li>bug fix: functions using Order ID are called twice</li>\r\n</ul><h4>1.0.8</h4><ul>\r\n<li>minimum WordPress version: 5.0</li>\r\n<li>minimum PHP version: 7.2</li>\r\n<li>note: exporting orders requires WP All Export 1.8.5+</li>\r\n<li>improvement: initial HPOS support</li>\r\n<li>improvement: better PHP 8.2 support</li>\r\n</ul><h4>1.0.7</h4><ul>\r\n<li>bug fix: resolve multiple PHP 8 errors related to mismatched operand types occurring in limited cases</li>\r\n</ul><h4>1.0.6</h4><ul>\r\n<li>bug fix: error when exporting reviews under PHP 8</li>\r\n<li>bug fix: show Product Tags in Taxonomies section when configuring an export</li>\r\n<li>bug fix: error when generating WP All Import templates in limited cases</li>\r\n<li>bug fix: changelog showing incorrect information</li>\r\n</ul><h4>1.0.5</h4><ul>\r\n<li>improvement: don\'t include non-category terms in the Taxonomies section for Product exports</li>\r\n<li>bug fix: fatal error when exporting Orders with PHP 8 and WooCommerce 6.5</li>\r\n</ul><h4>1.0.4</h4><ul>\r\n<li>improvement: allow all valid characters from XML 1.0 Fifth Edition specification</li>\r\n</ul><h4>1.0.3</h4>\r\n<ul>\r\n 	<li>improvement: reduce frequency of plugin update checks</li>\r\n 	<li>improvement: initial PHP 8 support</li>\r\n 	<li>bug fix: rare fatal error when exporting to XML</li>\r\n</ul>\r\n<h4>1.0.2</h4>\r\n<ul>\r\n 	<li>cleanup: remove plugins page notice</li>\r\n 	<li>bugfix: show WooCommerce Order fields without requiring the ACF Export Add-On</li>\r\n</ul>\r\n<h4>1.0.1</h4>\r\n<ul>\r\n 	<li>improvement: enable sslverify</li>\r\n</ul>\r\n<h4>1.0.0</h4>\r\n<ul>\r\n 	<li>Initial release</li>\r\n</ul>\";}s:7:\"banners\";a:2:{s:4:\"high\";s:0:\"\";s:3:\"low\";s:0:\"\";}s:18:\"custom_update_note\";s:0:\"\";s:19:\"update_note_version\";s:0:\"\";s:5:\"icons\";a:0:{}s:3:\"msg\";s:8:\"Success.\";s:7:\"package\";s:77:\"https://update.wpallimport.com/serve_package?package_id=4203456&version=1.0.9\";s:13:\"download_link\";s:77:\"https://update.wpallimport.com/serve_package?package_id=4203456&version=1.0.9\";s:6:\"tested\";s:5:\"6.4.2\";s:6:\"author\";s:6:\"Soflyy\";s:8:\"requires\";s:3:\"5.0\";s:12:\"requires_php\";s:3:\"7.4\";}','no'),(303075,'_transient_timeout_cba1aab7f90f99256d9103976aa701d5','1705908842','no'),(303076,'_transient_cba1aab7f90f99256d9103976aa701d5','O:8:\"stdClass\":19:{s:11:\"new_version\";s:5:\"3.3.8\";s:14:\"stable_version\";s:5:\"3.3.8\";s:4:\"name\";s:10:\"ACF Add-On\";s:4:\"slug\";s:15:\"wpai-acf-add-on\";s:3:\"url\";s:68:\"https://www.wpallimport.com/downloads/acf-import-add-on/?changelog=1\";s:12:\"last_updated\";s:19:\"2023-10-30 11:47:02\";s:8:\"homepage\";s:56:\"https://www.wpallimport.com/downloads/acf-import-add-on/\";s:8:\"sections\";a:2:{s:11:\"description\";s:132:\"<p>Learn more at <a href=\"http://www.wpallimport.com/\" target=\"_blank\" rel=\"noopener noreferrer\">http://www.wpallimport.com/</a></p>\";s:9:\"changelog\";s:12081:\"<h4>3.3.8</h4><ul>\r\n    <li>bug fix: flexible content field not recognized</li>\r\n    <li>bug fix: clone field not recognized</li>\r\n    <li>bugfix: images and files downloaded twice in some cases</li>\r\n    <li>improvement: added \\\'wp_all_import_is_import_empty_acf_fields\\\' filter</li>\r\n    <li>improvement: resolve notices related to repeater fields</li>\r\n    <li>improvement: include subfields in the \\\'Choose which data to update\\\' selection dropdowns when using ACF v5</li>\r\n</ul><h4>3.3.7</h4>\r\n<ul>\r\n<li>bug fix: errors with repeater fields on PHP 8</li>\r\n<li>bug fix: gallery image names not properly parsed</li>\r\n<li>improvement: better autoloading of plugin files</li>\r\n</ul>\r\n<h4>3.3.6</h4>\r\n<ul>\r\n    <li>improvement: PHP 8 compatibility</li>\r\n    <li>bugfix: unable to import mapped ACF groups in some cases</li>\r\n    <li>bugfix: unable to import table field in fixed mode</li>\r\n    <li>bugfix: clone field not rendering correctly</li>\r\n    <li>bugfix: ACF fields not instantiated during cron import</li>\r\n</ul>\r\n<h4>3.3.5</h4>\r\n<ul>\r\n 	<li>bugfix: search for existing files didn\\\'t work in some cases</li>\r\n 	<li>bugfix: import gallery inside fixed repeater didn\\\'t work</li>\r\n 	<li>bugfix: ACF fields were loaded too early, some functions weren\\\'t available in the filters</li>\r\n 	<li>bugfix: local ACF groups weren\\\'t saved in import template</li>\r\n</ul>\r\n<h4>3.3.4</h4>\r\n<ul>\r\n 	<li>bugfix: ACF field groups not found in some cases</li>\r\n</ul>\r\n<h4>3.3.3</h4>\r\n<ul>\r\n 	<li>bugfix: ACF Repeater subfields not shown when configuring import</li>\r\n</ul>\r\n<h4>3.3.2</h4>\r\n<ul>\r\n 	<li>bug fix: acf groups visibility didn\\\'t work properly in some cases</li>\r\n 	<li>improvement: use acf built-in functions to get list of fields</li>\r\n</ul>\r\n<h4>3.3.1</h4>\r\n<ul>\r\n 	<li>improvement: enable ACF field developers to add support for WPAI to their field types</li>\r\n 	<li>bug fix: import repeater field generated with PHP didn\\\'t work</li>\r\n 	<li>bug fix: import ACF local fields didn\\\'t work in some cases</li>\r\n</ul>\r\n<h4>3.3.0</h4>\r\n<ul>\r\n 	<li>bug fix: Date picker used wrong format</li>\r\n 	<li>bug fix: Import template showing empty values for repeater fields</li>\r\n 	<li>bug fix: Link field inside fixed repeater field was not imported correctly</li>\r\n 	<li>bug fix: Nested taxonomy fields were not rendered correctly in import template</li>\r\n 	<li>bug fix: the ACF Field groups weren\\\'t chosen correctly when import bundle from WP All Export</li>\r\n</ul>\r\n<h4>3.2.9</h4>\r\n<ul>\r\n 	<li>improvement: add support for table field</li>\r\n 	<li>improvement: check post types when searching by ID for relationship fields</li>\r\n 	<li>bug fix: UI broken for True False field</li>\r\n 	<li>bug fix: \\\'Select value for all records\\\' not working for \\\'Taxonomy\\\' fields</li>\r\n</ul>\r\n<h4>3.2.8</h4>\r\n<ul>\r\n 	<li>improvement: compatibility with WordPress 5.5</li>\r\n 	<li>bug fix: import taxonomies inside repeater doesn\\\'t work in same cases</li>\r\n 	<li>bug fix: WYSIWYG field data prefixed with space</li>\r\n</ul>\r\n<h4>3.2.7</h4>\r\n<ul>\r\n 	<li>bug fix: Multiple Select field not imported correctly</li>\r\n</ul>\r\n<h4>3.2.6</h4>\r\n<ul>\r\n 	<li>improvement: add default zoom value for Google Maps field</li>\r\n 	<li>API: apply pmxi_acf_custom_field filter to taxonomy terms meta</li>\r\n 	<li>bug fix: unable to double click to insert XPath in some cases</li>\r\n 	<li>bug fix: unable to import WooCommerce customer ACF fields</li>\r\n 	<li>bug fix: select field with stylized UI not rendered properly</li>\r\n 	<li>bug fix: empty layouts for Flexible Content fields improperly imported</li>\r\n</ul>\r\n<h4>3.2.5</h4>\r\n<ul>\r\n 	<li>improvement: extend Google Maps field options</li>\r\n 	<li>improvement: save custom choice for radio button field</li>\r\n 	<li>bug fix: Google Maps field UI does not render properly</li>\r\n 	<li>bug fix: unable to import country field with multiple values</li>\r\n</ul>\r\n<h4>3.2.4</h4>\r\n<ul>\r\n 	<li>improvement: add support for Image Aspect Ratio Crop field</li>\r\n 	<li>bug fix: unable to add new images to gallery field</li>\r\n 	<li>bug fix: unable to add link field inside repeater</li>\r\n 	<li>bug fix: group field not rendering properly</li>\r\n</ul>\r\n<h4>3.2.3</h4>\r\n<ul>\r\n 	<li>bug fix: import gallery field inside repeater produced set of duplicate rows</li>\r\n 	<li>bug fix: import ACF field key was populated with field name instead of field key</li>\r\n</ul>\r\n<h4>3.2.2</h4>\r\n- Fixed import repeater field\r\n<h4>3.2.1</h4>\r\n<ul>\r\n 	<li>improvement: add support for country field - https://github.com/nlemoine/acf-country</li>\r\n 	<li>improvement: apply ACF filters when importing field values</li>\r\n 	<li>bug fix:search existing images by filename doesn\\\'t work correctly with galleries</li>\r\n 	<li>bug fix: $articleData argument missing in wp_all_import_images_uploads_dir filter</li>\r\n 	<li>bug fix: taxonomy field for users not importing properly</li>\r\n</ul>\r\n<h4>3.2.0</h4>\r\n<ul>\r\n 	<li>improvement: added support for new ACF field: Star Rating</li>\r\n 	<li>bug fix: compatibility with ACF v5.7.11</li>\r\n 	<li>bug fix: compatibility with ACF v4.4.12</li>\r\n 	<li>bug fix: rendering select field choices</li>\r\n 	<li>bug fix: search for existing images option</li>\r\n 	<li>bug fix: rendering ACF groups</li>\r\n 	<li>bug fix: Google Map field - save lat and long as string instead of decimal value</li>\r\n 	<li>bug fix: import taxonomy field inside repeater in fixed mode</li>\r\n 	<li>bug fix: import empty checkbox field</li>\r\n 	<li>bug fix: import repeater in XML mode</li>\r\n</ul>\r\n<h4>3.1.9</h4>\r\n<ul>\r\n 	<li>bug fix: ACF groups visibility on import template screen</li>\r\n</ul>\r\n<h4>3.1.8</h4>\r\n<ul>\r\n 	<li>improvement: render only visible ACF field groups on import template screen</li>\r\n 	<li>improvement: added new field support - image_crop</li>\r\n 	<li>bug fix: import Relationship field</li>\r\n 	<li>bug fix: import taxonomy hierarchy inside Repeater</li>\r\n 	<li>bug fix: ignore empty rows for Repeater in csv mode</li>\r\n 	<li>bug fix: import checkbox using XPath</li>\r\n 	<li>bug fix: import post object field with multiple selection</li>\r\n 	<li>bug fix: import Repeater inside Repeater in csv mode</li>\r\n 	<li>bug fix: ignore empty rows option</li>\r\n 	<li>bug fix: detecting google map api key</li>\r\n 	<li>bug fix: date format for date picker field ACF 4.x</li>\r\n 	<li>bug fix: update only these fields for ACF 4.x</li>\r\n 	<li>bug fix: rendering local ACF fields defined in ACF 4.x syntax</li>\r\n</ul>\r\n<h4>3.1.7</h4>\r\n<ul>\r\n 	<li>bug fix: import nested repeaters in XML mode</li>\r\n 	<li>bug fix: \\\'Ignore empty rows\\\' doesn\\\'t ignore empty rows</li>\r\n 	<li>bug fix: repeater sub fields not saved in ACF 4.x</li>\r\n 	<li>bug fix: unable to set relationship fields when post type is not defined for related content</li>\r\n 	<li>bug fix: unable to import taxonomy fields inside repeater fields</li>\r\n</ul>\r\n<h4>3.1.6</h4>\r\n<ul>\r\n 	<li>improvement: added support for link field</li>\r\n 	<li>improvement: added support for Font Awesome Icon field</li>\r\n 	<li>improvement: added support for range field</li>\r\n 	<li>improvement: added support for button_group field</li>\r\n 	<li>improvement: render acf groups alphabetically</li>\r\n 	<li>bug fix: import post object filed based on acf post type settings</li>\r\n 	<li>bug fix: updating acf when update option disabled</li>\r\n 	<li>bug fix: added wp_all_import_images_uploads_dir filter</li>\r\n 	<li>bug fix: rendering ACF local fields</li>\r\n 	<li>bug fix: import relationship field based on custom types in field settings</li>\r\n</ul>\r\n<h4>3.1.5</h4>\r\n<ul>\r\n 	<li>bug fix: import post object field</li>\r\n 	<li>bug fix: matching relationship posts</li>\r\n 	<li>bug fix: using google maps api key</li>\r\n 	<li>bug fix: import clone group field</li>\r\n 	<li>bug fix: date time picker format</li>\r\n 	<li>bug fix: import empty image field in repeater</li>\r\n</ul>\r\n<h4>3.1.4</h4>\r\n<ul>\r\n 	<li>improvement: performance optimization</li>\r\n 	<li>improvement: added support for Vimeo field type</li>\r\n 	<li>bug fix: search for existing files</li>\r\n 	<li>bug fix: import images into File field</li>\r\n 	<li>bug fix: import relationship inside repeater</li>\r\n</ul>\r\n<h4>3.1.3</h4>\r\n<ul>\r\n 	<li>improvement: added support for new ACF field \\\'Google Map Extended\\\'</li>\r\n 	<li>bug fix: import ACF repeater in fixed mode</li>\r\n 	<li>bug fix: saving ACF taxonomy import template</li>\r\n 	<li>bug fix: leave these ACF fields alone, update all other ACF fields</li>\r\n 	<li>bug fix: import ACF to taxonomies</li>\r\n 	<li>bug fix: saving ACF select field</li>\r\n</ul>\r\n<h4>3.1.2</h4>\r\n<ul>\r\n 	<li>improvement: compatibility with PHP 7.x</li>\r\n 	<li>improvement: new field type \\\'time picker\\\'</li>\r\n 	<li>improvement: new delimiter option for relationship fields</li>\r\n 	<li>bug fix: rendering repeater field inside flexible field in case when ACF configuration presented in functions.php file</li>\r\n 	<li>bug fix: import 0 value for number field inside repeater</li>\r\n</ul>\r\n<h4>3.1.1</h4>\r\n<ul>\r\n 	<li>improvement: support for clone field</li>\r\n 	<li>improvement: new option \\\'only append new images to the gallery\\\'</li>\r\n 	<li>improvement: new filter pmxi_acf_custom_field</li>\r\n 	<li>bug fix: flexible field JS conflict</li>\r\n 	<li>bug fix: search for existing image in media gallery</li>\r\n 	<li>bug fix: import ACF taxonomies to users</li>\r\n 	<li>bug fix: conflict between updating custom fields and ACF</li>\r\n 	<li>bug fix: acf grops duplicates</li>\r\n 	<li>bug fix: compatibility with php 7</li>\r\n 	<li>bug fix: import repeater in repeater for CSV mode</li>\r\n</ul>\r\n<h4>3.1.0</h4>\r\n<ul>\r\n 	<li>fixed ignore blank rows for fixed repeater mode</li>\r\n 	<li>fixed import taxonomy field</li>\r\n 	<li>fixed import multiple checkbox field in csv repeater mode</li>\r\n 	<li>added a \\\'Search through Media Library\\\' checkbox for each image field</li>\r\n 	<li>added geocode API settings to map field</li>\r\n</ul>\r\n<h4>3.0.9</h4>\r\n<ul>\r\n 	<li>fixed repeater field ( Variable mode XML )</li>\r\n</ul>\r\n<h4>3.0.8</h4>\r\n<ul>\r\n 	<li>fixed import taxonomy field</li>\r\n 	<li>fixed search for existing images is case when there are a few files with the same name in database</li>\r\n</ul>\r\n<h4>3.0.7</h4>\r\n<ul>\r\n 	<li>fixed import empty gallery field</li>\r\n</ul>\r\n<h4>3.0.6</h4>\r\n<ul>\r\n 	<li>added a separator option for gallery field</li>\r\n 	<li>fixed excessive update requests</li>\r\n</ul>\r\n<h4>3.0.5</h4>\r\n<ul>\r\n 	<li>fixed import field type file</li>\r\n 	<li>fixed loading import template</li>\r\n 	<li>fixed link to repeater field documentation</li>\r\n 	<li>fixed import relationship fields</li>\r\n</ul>\r\n<h4>3.0.4</h4>\r\n<ul>\r\n 	<li>fixed import mapped acf for 5.x version</li>\r\n 	<li>improved security</li>\r\n</ul>\r\n<h4>3.0.3</h4>\r\n<ul>\r\n 	<li>fixed import ACF for users</li>\r\n 	<li>fixed import image &amp; file fields ( searching image in attachments before download )</li>\r\n 	<li>added flexible content field</li>\r\n</ul>\r\n<h4>3.0.2</h4>\r\n<ul>\r\n 	<li>fixed conflict between repeater and taxonomy</li>\r\n 	<li>added support validated_field type</li>\r\n</ul>\r\n<h4>3.0.1</h4>\r\n<ul>\r\n 	<li>fixed call to non existing object property php error</li>\r\n 	<li>changed main plugin file name</li>\r\n</ul>\r\n<h4>3.0.0</h4>\r\n<ul>\r\n 	<li>New Advanced Custom Fields Add-On for WP All Import 4.0. Works with both ACF4 and ACF5/Pro. Learn more about WP All Import 4.0 at http://www.wpallimport.com/2014/11/introducing-wp-all-import-4-0/</li>\r\n</ul>\r\n<h4>2.0.1</h4>\r\n<ul>\r\n 	<li>Compatibility with ACF 5.0.0</li>\r\n</ul>\r\n<h4>1.0.0</h4>\r\n<ul>\r\n 	<li>fixed import images</li>\r\n 	<li>fixed session issue</li>\r\n 	<li>fixed data picker</li>\r\n</ul>\r\n<h4>0.9.7</h4>\r\n<ul>\r\n 	<li>fixed: php notices</li>\r\n 	<li>fixed: import taxonomies field</li>\r\n 	<li>fixed: import file field</li>\r\n 	<li>added: new option \\\"update only mapped ACF\\\"</li>\r\n 	<li>added: possibility to update repeater sub fields in re-import section</li>\r\n</ul>\r\n<h4>0.9.6</h4>\r\n<ul>\r\n 	<li>fixed: sanitizing file names</li>\r\n 	<li>fixed: load options template</li>\r\n 	<li>fixed: php warnings</li>\r\n</ul>\r\n<h4>0.9.5</h4>\r\n<ul>\r\n 	<li>fixed: php notices</li>\r\n 	<li>fixed: import repeater field</li>\r\n 	<li>fixed: js errors in taxonomies field</li>\r\n</ul>\";}s:7:\"banners\";a:2:{s:4:\"high\";s:0:\"\";s:3:\"low\";s:0:\"\";}s:18:\"custom_update_note\";s:0:\"\";s:19:\"update_note_version\";s:0:\"\";s:5:\"icons\";a:0:{}s:3:\"msg\";s:8:\"Success.\";s:7:\"package\";s:87:\"https://update.wpallimport.com/serve_package?package_id=2707178&version=3.3.8&license=0\";s:13:\"download_link\";s:87:\"https://update.wpallimport.com/serve_package?package_id=2707178&version=3.3.8&license=0\";s:6:\"tested\";s:5:\"6.4.2\";s:6:\"author\";s:6:\"Soflyy\";s:8:\"requires\";s:3:\"5.0\";s:12:\"requires_php\";s:3:\"7.4\";}','no'),(303104,'_site_transient_timeout_kirki_googlefonts_cache','1705925781','no'),(303105,'_site_transient_kirki_googlefonts_cache','a:1539:{s:7:\"ABeeZee\";a:3:{s:5:\"label\";s:7:\"ABeeZee\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Abel\";a:3:{s:5:\"label\";s:4:\"Abel\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Abhaya Libre\";a:3:{s:5:\"label\";s:12:\"Abhaya Libre\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Aboreto\";a:3:{s:5:\"label\";s:7:\"Aboreto\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Abril Fatface\";a:3:{s:5:\"label\";s:13:\"Abril Fatface\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Abyssinica SIL\";a:3:{s:5:\"label\";s:14:\"Abyssinica SIL\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Aclonica\";a:3:{s:5:\"label\";s:8:\"Aclonica\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Acme\";a:3:{s:5:\"label\";s:4:\"Acme\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Actor\";a:3:{s:5:\"label\";s:5:\"Actor\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Adamina\";a:3:{s:5:\"label\";s:7:\"Adamina\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Advent Pro\";a:3:{s:5:\"label\";s:10:\"Advent Pro\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Aguafina Script\";a:3:{s:5:\"label\";s:15:\"Aguafina Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Akaya Kanadaka\";a:3:{s:5:\"label\";s:14:\"Akaya Kanadaka\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Akaya Telivigala\";a:3:{s:5:\"label\";s:16:\"Akaya Telivigala\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Akronim\";a:3:{s:5:\"label\";s:7:\"Akronim\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Akshar\";a:3:{s:5:\"label\";s:6:\"Akshar\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Aladin\";a:3:{s:5:\"label\";s:6:\"Aladin\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Alata\";a:3:{s:5:\"label\";s:5:\"Alata\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Alatsi\";a:3:{s:5:\"label\";s:6:\"Alatsi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Albert Sans\";a:3:{s:5:\"label\";s:11:\"Albert Sans\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Aldrich\";a:3:{s:5:\"label\";s:7:\"Aldrich\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Alef\";a:3:{s:5:\"label\";s:4:\"Alef\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Alegreya\";a:3:{s:5:\"label\";s:8:\"Alegreya\";s:8:\"variants\";a:12:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Alegreya SC\";a:3:{s:5:\"label\";s:11:\"Alegreya SC\";s:8:\"variants\";a:10:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:3:\"800\";i:5;s:9:\"800italic\";i:6;s:3:\"900\";i:7;s:9:\"900italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Alegreya Sans\";a:3:{s:5:\"label\";s:13:\"Alegreya Sans\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:3:\"900\";i:11;s:9:\"900italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Alegreya Sans SC\";a:3:{s:5:\"label\";s:16:\"Alegreya Sans SC\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:3:\"900\";i:11;s:9:\"900italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Aleo\";a:3:{s:5:\"label\";s:4:\"Aleo\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Alex Brush\";a:3:{s:5:\"label\";s:10:\"Alex Brush\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Alexandria\";a:3:{s:5:\"label\";s:10:\"Alexandria\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Alfa Slab One\";a:3:{s:5:\"label\";s:13:\"Alfa Slab One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Alice\";a:3:{s:5:\"label\";s:5:\"Alice\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Alike\";a:3:{s:5:\"label\";s:5:\"Alike\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Alike Angular\";a:3:{s:5:\"label\";s:13:\"Alike Angular\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Alkalami\";a:3:{s:5:\"label\";s:8:\"Alkalami\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Alkatra\";a:3:{s:5:\"label\";s:7:\"Alkatra\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Allan\";a:3:{s:5:\"label\";s:5:\"Allan\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Allerta\";a:3:{s:5:\"label\";s:7:\"Allerta\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Allerta Stencil\";a:3:{s:5:\"label\";s:15:\"Allerta Stencil\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Allison\";a:3:{s:5:\"label\";s:7:\"Allison\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Allura\";a:3:{s:5:\"label\";s:6:\"Allura\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Almarai\";a:3:{s:5:\"label\";s:7:\"Almarai\";s:8:\"variants\";a:4:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:3:\"800\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Almendra\";a:3:{s:5:\"label\";s:8:\"Almendra\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Almendra Display\";a:3:{s:5:\"label\";s:16:\"Almendra Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Almendra SC\";a:3:{s:5:\"label\";s:11:\"Almendra SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Alumni Sans\";a:3:{s:5:\"label\";s:11:\"Alumni Sans\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:26:\"Alumni Sans Collegiate One\";a:3:{s:5:\"label\";s:26:\"Alumni Sans Collegiate One\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:22:\"Alumni Sans Inline One\";a:3:{s:5:\"label\";s:22:\"Alumni Sans Inline One\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:21:\"Alumni Sans Pinstripe\";a:3:{s:5:\"label\";s:21:\"Alumni Sans Pinstripe\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Amarante\";a:3:{s:5:\"label\";s:8:\"Amarante\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Amaranth\";a:3:{s:5:\"label\";s:8:\"Amaranth\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Amatic SC\";a:3:{s:5:\"label\";s:9:\"Amatic SC\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Amethysta\";a:3:{s:5:\"label\";s:9:\"Amethysta\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Amiko\";a:3:{s:5:\"label\";s:5:\"Amiko\";s:8:\"variants\";a:3:{i:0;s:3:\"600\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Amiri\";a:3:{s:5:\"label\";s:5:\"Amiri\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Amiri Quran\";a:3:{s:5:\"label\";s:11:\"Amiri Quran\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Amita\";a:3:{s:5:\"label\";s:5:\"Amita\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Anaheim\";a:3:{s:5:\"label\";s:7:\"Anaheim\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Andada Pro\";a:3:{s:5:\"label\";s:10:\"Andada Pro\";s:8:\"variants\";a:10:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Andika\";a:3:{s:5:\"label\";s:6:\"Andika\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Anek Bangla\";a:3:{s:5:\"label\";s:11:\"Anek Bangla\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Anek Devanagari\";a:3:{s:5:\"label\";s:15:\"Anek Devanagari\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Anek Gujarati\";a:3:{s:5:\"label\";s:13:\"Anek Gujarati\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Anek Gurmukhi\";a:3:{s:5:\"label\";s:13:\"Anek Gurmukhi\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Anek Kannada\";a:3:{s:5:\"label\";s:12:\"Anek Kannada\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Anek Latin\";a:3:{s:5:\"label\";s:10:\"Anek Latin\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Anek Malayalam\";a:3:{s:5:\"label\";s:14:\"Anek Malayalam\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Anek Odia\";a:3:{s:5:\"label\";s:9:\"Anek Odia\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Anek Tamil\";a:3:{s:5:\"label\";s:10:\"Anek Tamil\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Anek Telugu\";a:3:{s:5:\"label\";s:11:\"Anek Telugu\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Angkor\";a:3:{s:5:\"label\";s:6:\"Angkor\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:24:\"Annie Use Your Telescope\";a:3:{s:5:\"label\";s:24:\"Annie Use Your Telescope\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Anonymous Pro\";a:3:{s:5:\"label\";s:13:\"Anonymous Pro\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:5:\"Antic\";a:3:{s:5:\"label\";s:5:\"Antic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Antic Didone\";a:3:{s:5:\"label\";s:12:\"Antic Didone\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Antic Slab\";a:3:{s:5:\"label\";s:10:\"Antic Slab\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Anton\";a:3:{s:5:\"label\";s:5:\"Anton\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Antonio\";a:3:{s:5:\"label\";s:7:\"Antonio\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Anuphan\";a:3:{s:5:\"label\";s:7:\"Anuphan\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Anybody\";a:3:{s:5:\"label\";s:7:\"Anybody\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Aoboshi One\";a:3:{s:5:\"label\";s:11:\"Aoboshi One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Arapey\";a:3:{s:5:\"label\";s:6:\"Arapey\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Arbutus\";a:3:{s:5:\"label\";s:7:\"Arbutus\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Arbutus Slab\";a:3:{s:5:\"label\";s:12:\"Arbutus Slab\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"Architects Daughter\";a:3:{s:5:\"label\";s:19:\"Architects Daughter\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Archivo\";a:3:{s:5:\"label\";s:7:\"Archivo\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Archivo Black\";a:3:{s:5:\"label\";s:13:\"Archivo Black\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Archivo Narrow\";a:3:{s:5:\"label\";s:14:\"Archivo Narrow\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Are You Serious\";a:3:{s:5:\"label\";s:15:\"Are You Serious\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Aref Ruqaa\";a:3:{s:5:\"label\";s:10:\"Aref Ruqaa\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Aref Ruqaa Ink\";a:3:{s:5:\"label\";s:14:\"Aref Ruqaa Ink\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Arima\";a:3:{s:5:\"label\";s:5:\"Arima\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Arimo\";a:3:{s:5:\"label\";s:5:\"Arimo\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Arizonia\";a:3:{s:5:\"label\";s:8:\"Arizonia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Armata\";a:3:{s:5:\"label\";s:6:\"Armata\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Arsenal\";a:3:{s:5:\"label\";s:7:\"Arsenal\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Artifika\";a:3:{s:5:\"label\";s:8:\"Artifika\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Arvo\";a:3:{s:5:\"label\";s:4:\"Arvo\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Arya\";a:3:{s:5:\"label\";s:4:\"Arya\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Asap\";a:3:{s:5:\"label\";s:4:\"Asap\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Asap Condensed\";a:3:{s:5:\"label\";s:14:\"Asap Condensed\";s:8:\"variants\";a:16:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Asar\";a:3:{s:5:\"label\";s:4:\"Asar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Asset\";a:3:{s:5:\"label\";s:5:\"Asset\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Assistant\";a:3:{s:5:\"label\";s:9:\"Assistant\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Astloch\";a:3:{s:5:\"label\";s:7:\"Astloch\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Asul\";a:3:{s:5:\"label\";s:4:\"Asul\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Athiti\";a:3:{s:5:\"label\";s:6:\"Athiti\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Atkinson Hyperlegible\";a:3:{s:5:\"label\";s:21:\"Atkinson Hyperlegible\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Atma\";a:3:{s:5:\"label\";s:4:\"Atma\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Atomic Age\";a:3:{s:5:\"label\";s:10:\"Atomic Age\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Aubrey\";a:3:{s:5:\"label\";s:6:\"Aubrey\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Audiowide\";a:3:{s:5:\"label\";s:9:\"Audiowide\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Autour One\";a:3:{s:5:\"label\";s:10:\"Autour One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Average\";a:3:{s:5:\"label\";s:7:\"Average\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Average Sans\";a:3:{s:5:\"label\";s:12:\"Average Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Averia Gruesa Libre\";a:3:{s:5:\"label\";s:19:\"Averia Gruesa Libre\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Averia Libre\";a:3:{s:5:\"label\";s:12:\"Averia Libre\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:17:\"Averia Sans Libre\";a:3:{s:5:\"label\";s:17:\"Averia Sans Libre\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:18:\"Averia Serif Libre\";a:3:{s:5:\"label\";s:18:\"Averia Serif Libre\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Azeret Mono\";a:3:{s:5:\"label\";s:11:\"Azeret Mono\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:4:\"B612\";a:3:{s:5:\"label\";s:4:\"B612\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"B612 Mono\";a:3:{s:5:\"label\";s:9:\"B612 Mono\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:12:\"BIZ UDGothic\";a:3:{s:5:\"label\";s:12:\"BIZ UDGothic\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"BIZ UDMincho\";a:3:{s:5:\"label\";s:12:\"BIZ UDMincho\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"BIZ UDPGothic\";a:3:{s:5:\"label\";s:13:\"BIZ UDPGothic\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"BIZ UDPMincho\";a:3:{s:5:\"label\";s:13:\"BIZ UDPMincho\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Babylonica\";a:3:{s:5:\"label\";s:10:\"Babylonica\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Bad Script\";a:3:{s:5:\"label\";s:10:\"Bad Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Bagel Fat One\";a:3:{s:5:\"label\";s:13:\"Bagel Fat One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Bahiana\";a:3:{s:5:\"label\";s:7:\"Bahiana\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Bahianita\";a:3:{s:5:\"label\";s:9:\"Bahianita\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Bai Jamjuree\";a:3:{s:5:\"label\";s:12:\"Bai Jamjuree\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Bakbak One\";a:3:{s:5:\"label\";s:10:\"Bakbak One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Ballet\";a:3:{s:5:\"label\";s:6:\"Ballet\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Baloo 2\";a:3:{s:5:\"label\";s:7:\"Baloo 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Baloo Bhai 2\";a:3:{s:5:\"label\";s:12:\"Baloo Bhai 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Baloo Bhaijaan 2\";a:3:{s:5:\"label\";s:16:\"Baloo Bhaijaan 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Baloo Bhaina 2\";a:3:{s:5:\"label\";s:14:\"Baloo Bhaina 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Baloo Chettan 2\";a:3:{s:5:\"label\";s:15:\"Baloo Chettan 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Baloo Da 2\";a:3:{s:5:\"label\";s:10:\"Baloo Da 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Baloo Paaji 2\";a:3:{s:5:\"label\";s:13:\"Baloo Paaji 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Baloo Tamma 2\";a:3:{s:5:\"label\";s:13:\"Baloo Tamma 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Baloo Tammudu 2\";a:3:{s:5:\"label\";s:15:\"Baloo Tammudu 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Baloo Thambi 2\";a:3:{s:5:\"label\";s:14:\"Baloo Thambi 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Balsamiq Sans\";a:3:{s:5:\"label\";s:13:\"Balsamiq Sans\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Balthazar\";a:3:{s:5:\"label\";s:9:\"Balthazar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Bangers\";a:3:{s:5:\"label\";s:7:\"Bangers\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Barlow\";a:3:{s:5:\"label\";s:6:\"Barlow\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Barlow Condensed\";a:3:{s:5:\"label\";s:16:\"Barlow Condensed\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Barlow Semi Condensed\";a:3:{s:5:\"label\";s:21:\"Barlow Semi Condensed\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Barriecito\";a:3:{s:5:\"label\";s:10:\"Barriecito\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Barrio\";a:3:{s:5:\"label\";s:6:\"Barrio\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Basic\";a:3:{s:5:\"label\";s:5:\"Basic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Baskervville\";a:3:{s:5:\"label\";s:12:\"Baskervville\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Battambang\";a:3:{s:5:\"label\";s:10:\"Battambang\";s:8:\"variants\";a:5:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"900\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Baumans\";a:3:{s:5:\"label\";s:7:\"Baumans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Bayon\";a:3:{s:5:\"label\";s:5:\"Bayon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Be Vietnam Pro\";a:3:{s:5:\"label\";s:14:\"Be Vietnam Pro\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Beau Rivage\";a:3:{s:5:\"label\";s:11:\"Beau Rivage\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Bebas Neue\";a:3:{s:5:\"label\";s:10:\"Bebas Neue\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Belgrano\";a:3:{s:5:\"label\";s:8:\"Belgrano\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Bellefair\";a:3:{s:5:\"label\";s:9:\"Bellefair\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Belleza\";a:3:{s:5:\"label\";s:7:\"Belleza\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Bellota\";a:3:{s:5:\"label\";s:7:\"Bellota\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Bellota Text\";a:3:{s:5:\"label\";s:12:\"Bellota Text\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"BenchNine\";a:3:{s:5:\"label\";s:9:\"BenchNine\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Benne\";a:3:{s:5:\"label\";s:5:\"Benne\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Bentham\";a:3:{s:5:\"label\";s:7:\"Bentham\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Berkshire Swash\";a:3:{s:5:\"label\";s:15:\"Berkshire Swash\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Besley\";a:3:{s:5:\"label\";s:6:\"Besley\";s:8:\"variants\";a:12:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Beth Ellen\";a:3:{s:5:\"label\";s:10:\"Beth Ellen\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Bevan\";a:3:{s:5:\"label\";s:5:\"Bevan\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:20:\"BhuTuka Expanded One\";a:3:{s:5:\"label\";s:20:\"BhuTuka Expanded One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:21:\"Big Shoulders Display\";a:3:{s:5:\"label\";s:21:\"Big Shoulders Display\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:28:\"Big Shoulders Inline Display\";a:3:{s:5:\"label\";s:28:\"Big Shoulders Inline Display\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:25:\"Big Shoulders Inline Text\";a:3:{s:5:\"label\";s:25:\"Big Shoulders Inline Text\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:29:\"Big Shoulders Stencil Display\";a:3:{s:5:\"label\";s:29:\"Big Shoulders Stencil Display\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:26:\"Big Shoulders Stencil Text\";a:3:{s:5:\"label\";s:26:\"Big Shoulders Stencil Text\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:18:\"Big Shoulders Text\";a:3:{s:5:\"label\";s:18:\"Big Shoulders Text\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Bigelow Rules\";a:3:{s:5:\"label\";s:13:\"Bigelow Rules\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Bigshot One\";a:3:{s:5:\"label\";s:11:\"Bigshot One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Bilbo\";a:3:{s:5:\"label\";s:5:\"Bilbo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:16:\"Bilbo Swash Caps\";a:3:{s:5:\"label\";s:16:\"Bilbo Swash Caps\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"BioRhyme\";a:3:{s:5:\"label\";s:8:\"BioRhyme\";s:8:\"variants\";a:5:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"BioRhyme Expanded\";a:3:{s:5:\"label\";s:17:\"BioRhyme Expanded\";s:8:\"variants\";a:5:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Birthstone\";a:3:{s:5:\"label\";s:10:\"Birthstone\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:17:\"Birthstone Bounce\";a:3:{s:5:\"label\";s:17:\"Birthstone Bounce\";s:8:\"variants\";a:2:{i:0;s:3:\"500\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Biryani\";a:3:{s:5:\"label\";s:7:\"Biryani\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Bitter\";a:3:{s:5:\"label\";s:6:\"Bitter\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:23:\"Black And White Picture\";a:3:{s:5:\"label\";s:23:\"Black And White Picture\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Black Han Sans\";a:3:{s:5:\"label\";s:14:\"Black Han Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Black Ops One\";a:3:{s:5:\"label\";s:13:\"Black Ops One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Blaka\";a:3:{s:5:\"label\";s:5:\"Blaka\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Blaka Hollow\";a:3:{s:5:\"label\";s:12:\"Blaka Hollow\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Blaka Ink\";a:3:{s:5:\"label\";s:9:\"Blaka Ink\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Blinker\";a:3:{s:5:\"label\";s:7:\"Blinker\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Bodoni Moda\";a:3:{s:5:\"label\";s:11:\"Bodoni Moda\";s:8:\"variants\";a:12:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Bokor\";a:3:{s:5:\"label\";s:5:\"Bokor\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Bona Nova\";a:3:{s:5:\"label\";s:9:\"Bona Nova\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Bonbon\";a:3:{s:5:\"label\";s:6:\"Bonbon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Bonheur Royale\";a:3:{s:5:\"label\";s:14:\"Bonheur Royale\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Boogaloo\";a:3:{s:5:\"label\";s:8:\"Boogaloo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Bowlby One\";a:3:{s:5:\"label\";s:10:\"Bowlby One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Bowlby One SC\";a:3:{s:5:\"label\";s:13:\"Bowlby One SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Braah One\";a:3:{s:5:\"label\";s:9:\"Braah One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Brawler\";a:3:{s:5:\"label\";s:7:\"Brawler\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Bree Serif\";a:3:{s:5:\"label\";s:10:\"Bree Serif\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Bruno Ace\";a:3:{s:5:\"label\";s:9:\"Bruno Ace\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Bruno Ace SC\";a:3:{s:5:\"label\";s:12:\"Bruno Ace SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Brygada 1918\";a:3:{s:5:\"label\";s:12:\"Brygada 1918\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Bubblegum Sans\";a:3:{s:5:\"label\";s:14:\"Bubblegum Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Bubbler One\";a:3:{s:5:\"label\";s:11:\"Bubbler One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Buda\";a:3:{s:5:\"label\";s:4:\"Buda\";s:8:\"variants\";a:1:{i:0;s:3:\"300\";}s:8:\"category\";s:7:\"display\";}s:7:\"Buenard\";a:3:{s:5:\"label\";s:7:\"Buenard\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Bungee\";a:3:{s:5:\"label\";s:6:\"Bungee\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Bungee Hairline\";a:3:{s:5:\"label\";s:15:\"Bungee Hairline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Bungee Inline\";a:3:{s:5:\"label\";s:13:\"Bungee Inline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Bungee Outline\";a:3:{s:5:\"label\";s:14:\"Bungee Outline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Bungee Shade\";a:3:{s:5:\"label\";s:12:\"Bungee Shade\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Bungee Spice\";a:3:{s:5:\"label\";s:12:\"Bungee Spice\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Butcherman\";a:3:{s:5:\"label\";s:10:\"Butcherman\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Butterfly Kids\";a:3:{s:5:\"label\";s:14:\"Butterfly Kids\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Cabin\";a:3:{s:5:\"label\";s:5:\"Cabin\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Cabin Condensed\";a:3:{s:5:\"label\";s:15:\"Cabin Condensed\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Cabin Sketch\";a:3:{s:5:\"label\";s:12:\"Cabin Sketch\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Caesar Dressing\";a:3:{s:5:\"label\";s:15:\"Caesar Dressing\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Cagliostro\";a:3:{s:5:\"label\";s:10:\"Cagliostro\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Cairo\";a:3:{s:5:\"label\";s:5:\"Cairo\";s:8:\"variants\";a:8:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Cairo Play\";a:3:{s:5:\"label\";s:10:\"Cairo Play\";s:8:\"variants\";a:8:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Caladea\";a:3:{s:5:\"label\";s:7:\"Caladea\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Calistoga\";a:3:{s:5:\"label\";s:9:\"Calistoga\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Calligraffitti\";a:3:{s:5:\"label\";s:14:\"Calligraffitti\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Cambay\";a:3:{s:5:\"label\";s:6:\"Cambay\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Cambo\";a:3:{s:5:\"label\";s:5:\"Cambo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Candal\";a:3:{s:5:\"label\";s:6:\"Candal\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Cantarell\";a:3:{s:5:\"label\";s:9:\"Cantarell\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Cantata One\";a:3:{s:5:\"label\";s:11:\"Cantata One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Cantora One\";a:3:{s:5:\"label\";s:11:\"Cantora One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Capriola\";a:3:{s:5:\"label\";s:8:\"Capriola\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Caramel\";a:3:{s:5:\"label\";s:7:\"Caramel\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Carattere\";a:3:{s:5:\"label\";s:9:\"Carattere\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Cardo\";a:3:{s:5:\"label\";s:5:\"Cardo\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Carlito\";a:3:{s:5:\"label\";s:7:\"Carlito\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Carme\";a:3:{s:5:\"label\";s:5:\"Carme\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Carrois Gothic\";a:3:{s:5:\"label\";s:14:\"Carrois Gothic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Carrois Gothic SC\";a:3:{s:5:\"label\";s:17:\"Carrois Gothic SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Carter One\";a:3:{s:5:\"label\";s:10:\"Carter One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Castoro\";a:3:{s:5:\"label\";s:7:\"Castoro\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Castoro Titling\";a:3:{s:5:\"label\";s:15:\"Castoro Titling\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Catamaran\";a:3:{s:5:\"label\";s:9:\"Catamaran\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Caudex\";a:3:{s:5:\"label\";s:6:\"Caudex\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Caveat\";a:3:{s:5:\"label\";s:6:\"Caveat\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Caveat Brush\";a:3:{s:5:\"label\";s:12:\"Caveat Brush\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:18:\"Cedarville Cursive\";a:3:{s:5:\"label\";s:18:\"Cedarville Cursive\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:11:\"Ceviche One\";a:3:{s:5:\"label\";s:11:\"Ceviche One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Chakra Petch\";a:3:{s:5:\"label\";s:12:\"Chakra Petch\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Changa\";a:3:{s:5:\"label\";s:6:\"Changa\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Changa One\";a:3:{s:5:\"label\";s:10:\"Changa One\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Chango\";a:3:{s:5:\"label\";s:6:\"Chango\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Charis SIL\";a:3:{s:5:\"label\";s:10:\"Charis SIL\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Charm\";a:3:{s:5:\"label\";s:5:\"Charm\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Charmonman\";a:3:{s:5:\"label\";s:10:\"Charmonman\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Chathura\";a:3:{s:5:\"label\";s:8:\"Chathura\";s:8:\"variants\";a:5:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Chau Philomene One\";a:3:{s:5:\"label\";s:18:\"Chau Philomene One\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Chela One\";a:3:{s:5:\"label\";s:9:\"Chela One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Chelsea Market\";a:3:{s:5:\"label\";s:14:\"Chelsea Market\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Chenla\";a:3:{s:5:\"label\";s:6:\"Chenla\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Cherish\";a:3:{s:5:\"label\";s:7:\"Cherish\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Cherry Bomb One\";a:3:{s:5:\"label\";s:15:\"Cherry Bomb One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:17:\"Cherry Cream Soda\";a:3:{s:5:\"label\";s:17:\"Cherry Cream Soda\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Cherry Swash\";a:3:{s:5:\"label\";s:12:\"Cherry Swash\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Chewy\";a:3:{s:5:\"label\";s:5:\"Chewy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Chicle\";a:3:{s:5:\"label\";s:6:\"Chicle\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Chilanka\";a:3:{s:5:\"label\";s:8:\"Chilanka\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Chivo\";a:3:{s:5:\"label\";s:5:\"Chivo\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Chivo Mono\";a:3:{s:5:\"label\";s:10:\"Chivo Mono\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:10:\"Chokokutai\";a:3:{s:5:\"label\";s:10:\"Chokokutai\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Chonburi\";a:3:{s:5:\"label\";s:8:\"Chonburi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Cinzel\";a:3:{s:5:\"label\";s:6:\"Cinzel\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Cinzel Decorative\";a:3:{s:5:\"label\";s:17:\"Cinzel Decorative\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"900\";i:2;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Clicker Script\";a:3:{s:5:\"label\";s:14:\"Clicker Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Climate Crisis\";a:3:{s:5:\"label\";s:14:\"Climate Crisis\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Coda\";a:3:{s:5:\"label\";s:4:\"Coda\";s:8:\"variants\";a:2:{i:0;s:3:\"800\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Codystar\";a:3:{s:5:\"label\";s:8:\"Codystar\";s:8:\"variants\";a:2:{i:0;s:3:\"300\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Coiny\";a:3:{s:5:\"label\";s:5:\"Coiny\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Combo\";a:3:{s:5:\"label\";s:5:\"Combo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Comfortaa\";a:3:{s:5:\"label\";s:9:\"Comfortaa\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Comforter\";a:3:{s:5:\"label\";s:9:\"Comforter\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Comforter Brush\";a:3:{s:5:\"label\";s:15:\"Comforter Brush\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Comic Neue\";a:3:{s:5:\"label\";s:10:\"Comic Neue\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:11:\"Coming Soon\";a:3:{s:5:\"label\";s:11:\"Coming Soon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Comme\";a:3:{s:5:\"label\";s:5:\"Comme\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Commissioner\";a:3:{s:5:\"label\";s:12:\"Commissioner\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Concert One\";a:3:{s:5:\"label\";s:11:\"Concert One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Condiment\";a:3:{s:5:\"label\";s:9:\"Condiment\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Content\";a:3:{s:5:\"label\";s:7:\"Content\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Contrail One\";a:3:{s:5:\"label\";s:12:\"Contrail One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Convergence\";a:3:{s:5:\"label\";s:11:\"Convergence\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Cookie\";a:3:{s:5:\"label\";s:6:\"Cookie\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Copse\";a:3:{s:5:\"label\";s:5:\"Copse\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Corben\";a:3:{s:5:\"label\";s:6:\"Corben\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Corinthia\";a:3:{s:5:\"label\";s:9:\"Corinthia\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Cormorant\";a:3:{s:5:\"label\";s:9:\"Cormorant\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Cormorant Garamond\";a:3:{s:5:\"label\";s:18:\"Cormorant Garamond\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Cormorant Infant\";a:3:{s:5:\"label\";s:16:\"Cormorant Infant\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Cormorant SC\";a:3:{s:5:\"label\";s:12:\"Cormorant SC\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Cormorant Unicase\";a:3:{s:5:\"label\";s:17:\"Cormorant Unicase\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Cormorant Upright\";a:3:{s:5:\"label\";s:17:\"Cormorant Upright\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Courgette\";a:3:{s:5:\"label\";s:9:\"Courgette\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Courier Prime\";a:3:{s:5:\"label\";s:13:\"Courier Prime\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:7:\"Cousine\";a:3:{s:5:\"label\";s:7:\"Cousine\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:8:\"Coustard\";a:3:{s:5:\"label\";s:8:\"Coustard\";s:8:\"variants\";a:2:{i:0;s:3:\"900\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:21:\"Covered By Your Grace\";a:3:{s:5:\"label\";s:21:\"Covered By Your Grace\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Crafty Girls\";a:3:{s:5:\"label\";s:12:\"Crafty Girls\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Creepster\";a:3:{s:5:\"label\";s:9:\"Creepster\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Crete Round\";a:3:{s:5:\"label\";s:11:\"Crete Round\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Crimson Pro\";a:3:{s:5:\"label\";s:11:\"Crimson Pro\";s:8:\"variants\";a:16:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Crimson Text\";a:3:{s:5:\"label\";s:12:\"Crimson Text\";s:8:\"variants\";a:6:{i:0;s:3:\"600\";i:1;s:9:\"600italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Croissant One\";a:3:{s:5:\"label\";s:13:\"Croissant One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Crushed\";a:3:{s:5:\"label\";s:7:\"Crushed\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Cuprum\";a:3:{s:5:\"label\";s:6:\"Cuprum\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Cute Font\";a:3:{s:5:\"label\";s:9:\"Cute Font\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Cutive\";a:3:{s:5:\"label\";s:6:\"Cutive\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Cutive Mono\";a:3:{s:5:\"label\";s:11:\"Cutive Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:7:\"DM Mono\";a:3:{s:5:\"label\";s:7:\"DM Mono\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:7:\"DM Sans\";a:3:{s:5:\"label\";s:7:\"DM Sans\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"DM Serif Display\";a:3:{s:5:\"label\";s:16:\"DM Serif Display\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"DM Serif Text\";a:3:{s:5:\"label\";s:13:\"DM Serif Text\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Damion\";a:3:{s:5:\"label\";s:6:\"Damion\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Dancing Script\";a:3:{s:5:\"label\";s:14:\"Dancing Script\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Dangrek\";a:3:{s:5:\"label\";s:7:\"Dangrek\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Darker Grotesque\";a:3:{s:5:\"label\";s:16:\"Darker Grotesque\";s:8:\"variants\";a:7:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Darumadrop One\";a:3:{s:5:\"label\";s:14:\"Darumadrop One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"David Libre\";a:3:{s:5:\"label\";s:11:\"David Libre\";s:8:\"variants\";a:3:{i:0;s:3:\"500\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"Dawning of a New Day\";a:3:{s:5:\"label\";s:20:\"Dawning of a New Day\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Days One\";a:3:{s:5:\"label\";s:8:\"Days One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Dekko\";a:3:{s:5:\"label\";s:5:\"Dekko\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Dela Gothic One\";a:3:{s:5:\"label\";s:15:\"Dela Gothic One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:18:\"Delicious Handrawn\";a:3:{s:5:\"label\";s:18:\"Delicious Handrawn\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Delius\";a:3:{s:5:\"label\";s:6:\"Delius\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:17:\"Delius Swash Caps\";a:3:{s:5:\"label\";s:17:\"Delius Swash Caps\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Delius Unicase\";a:3:{s:5:\"label\";s:14:\"Delius Unicase\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Della Respira\";a:3:{s:5:\"label\";s:13:\"Della Respira\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Denk One\";a:3:{s:5:\"label\";s:8:\"Denk One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Devonshire\";a:3:{s:5:\"label\";s:10:\"Devonshire\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Dhurjati\";a:3:{s:5:\"label\";s:8:\"Dhurjati\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Didact Gothic\";a:3:{s:5:\"label\";s:13:\"Didact Gothic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Diphylleia\";a:3:{s:5:\"label\";s:10:\"Diphylleia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Diplomata\";a:3:{s:5:\"label\";s:9:\"Diplomata\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Diplomata SC\";a:3:{s:5:\"label\";s:12:\"Diplomata SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Do Hyeon\";a:3:{s:5:\"label\";s:8:\"Do Hyeon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Dokdo\";a:3:{s:5:\"label\";s:5:\"Dokdo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Domine\";a:3:{s:5:\"label\";s:6:\"Domine\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Donegal One\";a:3:{s:5:\"label\";s:11:\"Donegal One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Dongle\";a:3:{s:5:\"label\";s:6:\"Dongle\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Doppio One\";a:3:{s:5:\"label\";s:10:\"Doppio One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Dorsa\";a:3:{s:5:\"label\";s:5:\"Dorsa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Dosis\";a:3:{s:5:\"label\";s:5:\"Dosis\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"DotGothic16\";a:3:{s:5:\"label\";s:11:\"DotGothic16\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Dr Sugiyama\";a:3:{s:5:\"label\";s:11:\"Dr Sugiyama\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Duru Sans\";a:3:{s:5:\"label\";s:9:\"Duru Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"DynaPuff\";a:3:{s:5:\"label\";s:8:\"DynaPuff\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Dynalight\";a:3:{s:5:\"label\";s:9:\"Dynalight\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"EB Garamond\";a:3:{s:5:\"label\";s:11:\"EB Garamond\";s:8:\"variants\";a:10:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Eagle Lake\";a:3:{s:5:\"label\";s:10:\"Eagle Lake\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"East Sea Dokdo\";a:3:{s:5:\"label\";s:14:\"East Sea Dokdo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Eater\";a:3:{s:5:\"label\";s:5:\"Eater\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Economica\";a:3:{s:5:\"label\";s:9:\"Economica\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Eczar\";a:3:{s:5:\"label\";s:5:\"Eczar\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:22:\"Edu NSW ACT Foundation\";a:3:{s:5:\"label\";s:22:\"Edu NSW ACT Foundation\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:16:\"Edu QLD Beginner\";a:3:{s:5:\"label\";s:16:\"Edu QLD Beginner\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Edu SA Beginner\";a:3:{s:5:\"label\";s:15:\"Edu SA Beginner\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:16:\"Edu TAS Beginner\";a:3:{s:5:\"label\";s:16:\"Edu TAS Beginner\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:22:\"Edu VIC WA NT Beginner\";a:3:{s:5:\"label\";s:22:\"Edu VIC WA NT Beginner\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"El Messiri\";a:3:{s:5:\"label\";s:10:\"El Messiri\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Electrolize\";a:3:{s:5:\"label\";s:11:\"Electrolize\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Elsie\";a:3:{s:5:\"label\";s:5:\"Elsie\";s:8:\"variants\";a:2:{i:0;s:3:\"900\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Elsie Swash Caps\";a:3:{s:5:\"label\";s:16:\"Elsie Swash Caps\";s:8:\"variants\";a:2:{i:0;s:3:\"900\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Emblema One\";a:3:{s:5:\"label\";s:11:\"Emblema One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Emilys Candy\";a:3:{s:5:\"label\";s:12:\"Emilys Candy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Encode Sans\";a:3:{s:5:\"label\";s:11:\"Encode Sans\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Encode Sans Condensed\";a:3:{s:5:\"label\";s:21:\"Encode Sans Condensed\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Encode Sans Expanded\";a:3:{s:5:\"label\";s:20:\"Encode Sans Expanded\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Encode Sans SC\";a:3:{s:5:\"label\";s:14:\"Encode Sans SC\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:26:\"Encode Sans Semi Condensed\";a:3:{s:5:\"label\";s:26:\"Encode Sans Semi Condensed\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:25:\"Encode Sans Semi Expanded\";a:3:{s:5:\"label\";s:25:\"Encode Sans Semi Expanded\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Engagement\";a:3:{s:5:\"label\";s:10:\"Engagement\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Englebert\";a:3:{s:5:\"label\";s:9:\"Englebert\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Enriqueta\";a:3:{s:5:\"label\";s:9:\"Enriqueta\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Ephesis\";a:3:{s:5:\"label\";s:7:\"Ephesis\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Epilogue\";a:3:{s:5:\"label\";s:8:\"Epilogue\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Erica One\";a:3:{s:5:\"label\";s:9:\"Erica One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Esteban\";a:3:{s:5:\"label\";s:7:\"Esteban\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Estonia\";a:3:{s:5:\"label\";s:7:\"Estonia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Euphoria Script\";a:3:{s:5:\"label\";s:15:\"Euphoria Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Ewert\";a:3:{s:5:\"label\";s:5:\"Ewert\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:3:\"Exo\";a:3:{s:5:\"label\";s:3:\"Exo\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Exo 2\";a:3:{s:5:\"label\";s:5:\"Exo 2\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Expletus Sans\";a:3:{s:5:\"label\";s:13:\"Expletus Sans\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Explora\";a:3:{s:5:\"label\";s:7:\"Explora\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Fahkwang\";a:3:{s:5:\"label\";s:8:\"Fahkwang\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Familjen Grotesk\";a:3:{s:5:\"label\";s:16:\"Familjen Grotesk\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Fanwood Text\";a:3:{s:5:\"label\";s:12:\"Fanwood Text\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Farro\";a:3:{s:5:\"label\";s:5:\"Farro\";s:8:\"variants\";a:4:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Farsan\";a:3:{s:5:\"label\";s:6:\"Farsan\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Fascinate\";a:3:{s:5:\"label\";s:9:\"Fascinate\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Fascinate Inline\";a:3:{s:5:\"label\";s:16:\"Fascinate Inline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Faster One\";a:3:{s:5:\"label\";s:10:\"Faster One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Fasthand\";a:3:{s:5:\"label\";s:8:\"Fasthand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Fauna One\";a:3:{s:5:\"label\";s:9:\"Fauna One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Faustina\";a:3:{s:5:\"label\";s:8:\"Faustina\";s:8:\"variants\";a:12:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Federant\";a:3:{s:5:\"label\";s:8:\"Federant\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Federo\";a:3:{s:5:\"label\";s:6:\"Federo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Felipa\";a:3:{s:5:\"label\";s:6:\"Felipa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Fenix\";a:3:{s:5:\"label\";s:5:\"Fenix\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Festive\";a:3:{s:5:\"label\";s:7:\"Festive\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Figtree\";a:3:{s:5:\"label\";s:7:\"Figtree\";s:8:\"variants\";a:14:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:3:\"900\";i:11;s:9:\"900italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Finger Paint\";a:3:{s:5:\"label\";s:12:\"Finger Paint\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Finlandica\";a:3:{s:5:\"label\";s:10:\"Finlandica\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Fira Code\";a:3:{s:5:\"label\";s:9:\"Fira Code\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:9:\"Fira Mono\";a:3:{s:5:\"label\";s:9:\"Fira Mono\";s:8:\"variants\";a:3:{i:0;s:3:\"500\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:9:\"Fira Sans\";a:3:{s:5:\"label\";s:9:\"Fira Sans\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Fira Sans Condensed\";a:3:{s:5:\"label\";s:19:\"Fira Sans Condensed\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:25:\"Fira Sans Extra Condensed\";a:3:{s:5:\"label\";s:25:\"Fira Sans Extra Condensed\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Fjalla One\";a:3:{s:5:\"label\";s:10:\"Fjalla One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Fjord One\";a:3:{s:5:\"label\";s:9:\"Fjord One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Flamenco\";a:3:{s:5:\"label\";s:8:\"Flamenco\";s:8:\"variants\";a:2:{i:0;s:3:\"300\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Flavors\";a:3:{s:5:\"label\";s:7:\"Flavors\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Fleur De Leah\";a:3:{s:5:\"label\";s:13:\"Fleur De Leah\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Flow Block\";a:3:{s:5:\"label\";s:10:\"Flow Block\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Flow Circular\";a:3:{s:5:\"label\";s:13:\"Flow Circular\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Flow Rounded\";a:3:{s:5:\"label\";s:12:\"Flow Rounded\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Foldit\";a:3:{s:5:\"label\";s:6:\"Foldit\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Fondamento\";a:3:{s:5:\"label\";s:10:\"Fondamento\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:16:\"Fontdiner Swanky\";a:3:{s:5:\"label\";s:16:\"Fontdiner Swanky\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Forum\";a:3:{s:5:\"label\";s:5:\"Forum\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Fragment Mono\";a:3:{s:5:\"label\";s:13:\"Fragment Mono\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:12:\"Francois One\";a:3:{s:5:\"label\";s:12:\"Francois One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Frank Ruhl Libre\";a:3:{s:5:\"label\";s:16:\"Frank Ruhl Libre\";s:8:\"variants\";a:7:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Fraunces\";a:3:{s:5:\"label\";s:8:\"Fraunces\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Freckle Face\";a:3:{s:5:\"label\";s:12:\"Freckle Face\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:20:\"Fredericka the Great\";a:3:{s:5:\"label\";s:20:\"Fredericka the Great\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Fredoka\";a:3:{s:5:\"label\";s:7:\"Fredoka\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Freehand\";a:3:{s:5:\"label\";s:8:\"Freehand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Fresca\";a:3:{s:5:\"label\";s:6:\"Fresca\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Frijole\";a:3:{s:5:\"label\";s:7:\"Frijole\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Fruktur\";a:3:{s:5:\"label\";s:7:\"Fruktur\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Fugaz One\";a:3:{s:5:\"label\";s:9:\"Fugaz One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Fuggles\";a:3:{s:5:\"label\";s:7:\"Fuggles\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Fuzzy Bubbles\";a:3:{s:5:\"label\";s:13:\"Fuzzy Bubbles\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"GFS Didot\";a:3:{s:5:\"label\";s:9:\"GFS Didot\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"GFS Neohellenic\";a:3:{s:5:\"label\";s:15:\"GFS Neohellenic\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Gabriela\";a:3:{s:5:\"label\";s:8:\"Gabriela\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Gaegu\";a:3:{s:5:\"label\";s:5:\"Gaegu\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Gafata\";a:3:{s:5:\"label\";s:6:\"Gafata\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Gajraj One\";a:3:{s:5:\"label\";s:10:\"Gajraj One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Galada\";a:3:{s:5:\"label\";s:6:\"Galada\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Galdeano\";a:3:{s:5:\"label\";s:8:\"Galdeano\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Galindo\";a:3:{s:5:\"label\";s:7:\"Galindo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Gamja Flower\";a:3:{s:5:\"label\";s:12:\"Gamja Flower\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Gantari\";a:3:{s:5:\"label\";s:7:\"Gantari\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Gasoek One\";a:3:{s:5:\"label\";s:10:\"Gasoek One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Gayathri\";a:3:{s:5:\"label\";s:8:\"Gayathri\";s:8:\"variants\";a:3:{i:0;s:3:\"100\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Gelasio\";a:3:{s:5:\"label\";s:7:\"Gelasio\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Gemunu Libre\";a:3:{s:5:\"label\";s:12:\"Gemunu Libre\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Genos\";a:3:{s:5:\"label\";s:5:\"Genos\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Gentium Book Plus\";a:3:{s:5:\"label\";s:17:\"Gentium Book Plus\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Gentium Plus\";a:3:{s:5:\"label\";s:12:\"Gentium Plus\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:3:\"Geo\";a:3:{s:5:\"label\";s:3:\"Geo\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Geologica\";a:3:{s:5:\"label\";s:9:\"Geologica\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Georama\";a:3:{s:5:\"label\";s:7:\"Georama\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Geostar\";a:3:{s:5:\"label\";s:7:\"Geostar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Geostar Fill\";a:3:{s:5:\"label\";s:12:\"Geostar Fill\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Germania One\";a:3:{s:5:\"label\";s:12:\"Germania One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Gideon Roman\";a:3:{s:5:\"label\";s:12:\"Gideon Roman\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Gidugu\";a:3:{s:5:\"label\";s:6:\"Gidugu\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Gilda Display\";a:3:{s:5:\"label\";s:13:\"Gilda Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Girassol\";a:3:{s:5:\"label\";s:8:\"Girassol\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Give You Glory\";a:3:{s:5:\"label\";s:14:\"Give You Glory\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Glass Antiqua\";a:3:{s:5:\"label\";s:13:\"Glass Antiqua\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Glegoo\";a:3:{s:5:\"label\";s:6:\"Glegoo\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Gloock\";a:3:{s:5:\"label\";s:6:\"Gloock\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Gloria Hallelujah\";a:3:{s:5:\"label\";s:17:\"Gloria Hallelujah\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Glory\";a:3:{s:5:\"label\";s:5:\"Glory\";s:8:\"variants\";a:16:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Gluten\";a:3:{s:5:\"label\";s:6:\"Gluten\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Goblin One\";a:3:{s:5:\"label\";s:10:\"Goblin One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Gochi Hand\";a:3:{s:5:\"label\";s:10:\"Gochi Hand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Goldman\";a:3:{s:5:\"label\";s:7:\"Goldman\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Golos Text\";a:3:{s:5:\"label\";s:10:\"Golos Text\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Gorditas\";a:3:{s:5:\"label\";s:8:\"Gorditas\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Gothic A1\";a:3:{s:5:\"label\";s:9:\"Gothic A1\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Gotu\";a:3:{s:5:\"label\";s:4:\"Gotu\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Goudy Bookletter 1911\";a:3:{s:5:\"label\";s:21:\"Goudy Bookletter 1911\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Gowun Batang\";a:3:{s:5:\"label\";s:12:\"Gowun Batang\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Gowun Dodum\";a:3:{s:5:\"label\";s:11:\"Gowun Dodum\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Graduate\";a:3:{s:5:\"label\";s:8:\"Graduate\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Grand Hotel\";a:3:{s:5:\"label\";s:11:\"Grand Hotel\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Grandiflora One\";a:3:{s:5:\"label\";s:15:\"Grandiflora One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Grandstander\";a:3:{s:5:\"label\";s:12:\"Grandstander\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Grape Nuts\";a:3:{s:5:\"label\";s:10:\"Grape Nuts\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Gravitas One\";a:3:{s:5:\"label\";s:12:\"Gravitas One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Great Vibes\";a:3:{s:5:\"label\";s:11:\"Great Vibes\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Grechen Fuemen\";a:3:{s:5:\"label\";s:14:\"Grechen Fuemen\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Grenze\";a:3:{s:5:\"label\";s:6:\"Grenze\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Grenze Gotisch\";a:3:{s:5:\"label\";s:14:\"Grenze Gotisch\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Grey Qo\";a:3:{s:5:\"label\";s:7:\"Grey Qo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Griffy\";a:3:{s:5:\"label\";s:6:\"Griffy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Gruppo\";a:3:{s:5:\"label\";s:6:\"Gruppo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Gudea\";a:3:{s:5:\"label\";s:5:\"Gudea\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Gugi\";a:3:{s:5:\"label\";s:4:\"Gugi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Gulzar\";a:3:{s:5:\"label\";s:6:\"Gulzar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Gupter\";a:3:{s:5:\"label\";s:6:\"Gupter\";s:8:\"variants\";a:3:{i:0;s:3:\"500\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Gurajada\";a:3:{s:5:\"label\";s:8:\"Gurajada\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Gwendolyn\";a:3:{s:5:\"label\";s:9:\"Gwendolyn\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Habibi\";a:3:{s:5:\"label\";s:6:\"Habibi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Hachi Maru Pop\";a:3:{s:5:\"label\";s:14:\"Hachi Maru Pop\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Hahmlet\";a:3:{s:5:\"label\";s:7:\"Hahmlet\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Halant\";a:3:{s:5:\"label\";s:6:\"Halant\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Hammersmith One\";a:3:{s:5:\"label\";s:15:\"Hammersmith One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Hanalei\";a:3:{s:5:\"label\";s:7:\"Hanalei\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Hanalei Fill\";a:3:{s:5:\"label\";s:12:\"Hanalei Fill\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Handlee\";a:3:{s:5:\"label\";s:7:\"Handlee\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Hanken Grotesk\";a:3:{s:5:\"label\";s:14:\"Hanken Grotesk\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Hanuman\";a:3:{s:5:\"label\";s:7:\"Hanuman\";s:8:\"variants\";a:5:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"900\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Happy Monkey\";a:3:{s:5:\"label\";s:12:\"Happy Monkey\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Harmattan\";a:3:{s:5:\"label\";s:9:\"Harmattan\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Headland One\";a:3:{s:5:\"label\";s:12:\"Headland One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Heebo\";a:3:{s:5:\"label\";s:5:\"Heebo\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Henny Penny\";a:3:{s:5:\"label\";s:11:\"Henny Penny\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Hepta Slab\";a:3:{s:5:\"label\";s:10:\"Hepta Slab\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"Herr Von Muellerhoff\";a:3:{s:5:\"label\";s:20:\"Herr Von Muellerhoff\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Hi Melody\";a:3:{s:5:\"label\";s:9:\"Hi Melody\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:11:\"Hina Mincho\";a:3:{s:5:\"label\";s:11:\"Hina Mincho\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Hind\";a:3:{s:5:\"label\";s:4:\"Hind\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Hind Guntur\";a:3:{s:5:\"label\";s:11:\"Hind Guntur\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Hind Madurai\";a:3:{s:5:\"label\";s:12:\"Hind Madurai\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Hind Siliguri\";a:3:{s:5:\"label\";s:13:\"Hind Siliguri\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Hind Vadodara\";a:3:{s:5:\"label\";s:13:\"Hind Vadodara\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Holtwood One SC\";a:3:{s:5:\"label\";s:15:\"Holtwood One SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Homemade Apple\";a:3:{s:5:\"label\";s:14:\"Homemade Apple\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Homenaje\";a:3:{s:5:\"label\";s:8:\"Homenaje\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Hubballi\";a:3:{s:5:\"label\";s:8:\"Hubballi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Hurricane\";a:3:{s:5:\"label\";s:9:\"Hurricane\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"IBM Plex Mono\";a:3:{s:5:\"label\";s:13:\"IBM Plex Mono\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:13:\"IBM Plex Sans\";a:3:{s:5:\"label\";s:13:\"IBM Plex Sans\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"IBM Plex Sans Arabic\";a:3:{s:5:\"label\";s:20:\"IBM Plex Sans Arabic\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:23:\"IBM Plex Sans Condensed\";a:3:{s:5:\"label\";s:23:\"IBM Plex Sans Condensed\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:24:\"IBM Plex Sans Devanagari\";a:3:{s:5:\"label\";s:24:\"IBM Plex Sans Devanagari\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"IBM Plex Sans Hebrew\";a:3:{s:5:\"label\";s:20:\"IBM Plex Sans Hebrew\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"IBM Plex Sans JP\";a:3:{s:5:\"label\";s:16:\"IBM Plex Sans JP\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"IBM Plex Sans KR\";a:3:{s:5:\"label\";s:16:\"IBM Plex Sans KR\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"IBM Plex Sans Thai\";a:3:{s:5:\"label\";s:18:\"IBM Plex Sans Thai\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:25:\"IBM Plex Sans Thai Looped\";a:3:{s:5:\"label\";s:25:\"IBM Plex Sans Thai Looped\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"IBM Plex Serif\";a:3:{s:5:\"label\";s:14:\"IBM Plex Serif\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"IM Fell DW Pica\";a:3:{s:5:\"label\";s:15:\"IM Fell DW Pica\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"IM Fell DW Pica SC\";a:3:{s:5:\"label\";s:18:\"IM Fell DW Pica SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"IM Fell Double Pica\";a:3:{s:5:\"label\";s:19:\"IM Fell Double Pica\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:22:\"IM Fell Double Pica SC\";a:3:{s:5:\"label\";s:22:\"IM Fell Double Pica SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"IM Fell English\";a:3:{s:5:\"label\";s:15:\"IM Fell English\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"IM Fell English SC\";a:3:{s:5:\"label\";s:18:\"IM Fell English SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"IM Fell French Canon\";a:3:{s:5:\"label\";s:20:\"IM Fell French Canon\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:23:\"IM Fell French Canon SC\";a:3:{s:5:\"label\";s:23:\"IM Fell French Canon SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"IM Fell Great Primer\";a:3:{s:5:\"label\";s:20:\"IM Fell Great Primer\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:23:\"IM Fell Great Primer SC\";a:3:{s:5:\"label\";s:23:\"IM Fell Great Primer SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Ibarra Real Nova\";a:3:{s:5:\"label\";s:16:\"Ibarra Real Nova\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Iceberg\";a:3:{s:5:\"label\";s:7:\"Iceberg\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Iceland\";a:3:{s:5:\"label\";s:7:\"Iceland\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Imbue\";a:3:{s:5:\"label\";s:5:\"Imbue\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Imperial Script\";a:3:{s:5:\"label\";s:15:\"Imperial Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Imprima\";a:3:{s:5:\"label\";s:7:\"Imprima\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Inconsolata\";a:3:{s:5:\"label\";s:11:\"Inconsolata\";s:8:\"variants\";a:8:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";i:7;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:5:\"Inder\";a:3:{s:5:\"label\";s:5:\"Inder\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Indie Flower\";a:3:{s:5:\"label\";s:12:\"Indie Flower\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Ingrid Darling\";a:3:{s:5:\"label\";s:14:\"Ingrid Darling\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Inika\";a:3:{s:5:\"label\";s:5:\"Inika\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Inknut Antiqua\";a:3:{s:5:\"label\";s:14:\"Inknut Antiqua\";s:8:\"variants\";a:7:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Inria Sans\";a:3:{s:5:\"label\";s:10:\"Inria Sans\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Inria Serif\";a:3:{s:5:\"label\";s:11:\"Inria Serif\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Inspiration\";a:3:{s:5:\"label\";s:11:\"Inspiration\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Instrument Sans\";a:3:{s:5:\"label\";s:15:\"Instrument Sans\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Instrument Serif\";a:3:{s:5:\"label\";s:16:\"Instrument Serif\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Inter\";a:3:{s:5:\"label\";s:5:\"Inter\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Inter Tight\";a:3:{s:5:\"label\";s:11:\"Inter Tight\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Irish Grover\";a:3:{s:5:\"label\";s:12:\"Irish Grover\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Island Moments\";a:3:{s:5:\"label\";s:14:\"Island Moments\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Istok Web\";a:3:{s:5:\"label\";s:9:\"Istok Web\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Italiana\";a:3:{s:5:\"label\";s:8:\"Italiana\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Italianno\";a:3:{s:5:\"label\";s:9:\"Italianno\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Itim\";a:3:{s:5:\"label\";s:4:\"Itim\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:16:\"Jacques Francois\";a:3:{s:5:\"label\";s:16:\"Jacques Francois\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:23:\"Jacques Francois Shadow\";a:3:{s:5:\"label\";s:23:\"Jacques Francois Shadow\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Jaldi\";a:3:{s:5:\"label\";s:5:\"Jaldi\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"JetBrains Mono\";a:3:{s:5:\"label\";s:14:\"JetBrains Mono\";s:8:\"variants\";a:16:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:14:\"Jim Nightshade\";a:3:{s:5:\"label\";s:14:\"Jim Nightshade\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Joan\";a:3:{s:5:\"label\";s:4:\"Joan\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Jockey One\";a:3:{s:5:\"label\";s:10:\"Jockey One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Jolly Lodger\";a:3:{s:5:\"label\";s:12:\"Jolly Lodger\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Jomhuria\";a:3:{s:5:\"label\";s:8:\"Jomhuria\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Jomolhari\";a:3:{s:5:\"label\";s:9:\"Jomolhari\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Josefin Sans\";a:3:{s:5:\"label\";s:12:\"Josefin Sans\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Josefin Slab\";a:3:{s:5:\"label\";s:12:\"Josefin Slab\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Jost\";a:3:{s:5:\"label\";s:4:\"Jost\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Joti One\";a:3:{s:5:\"label\";s:8:\"Joti One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:3:\"Jua\";a:3:{s:5:\"label\";s:3:\"Jua\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Judson\";a:3:{s:5:\"label\";s:6:\"Judson\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Julee\";a:3:{s:5:\"label\";s:5:\"Julee\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Julius Sans One\";a:3:{s:5:\"label\";s:15:\"Julius Sans One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Junge\";a:3:{s:5:\"label\";s:5:\"Junge\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Jura\";a:3:{s:5:\"label\";s:4:\"Jura\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Just Another Hand\";a:3:{s:5:\"label\";s:17:\"Just Another Hand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:23:\"Just Me Again Down Here\";a:3:{s:5:\"label\";s:23:\"Just Me Again Down Here\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:3:\"K2D\";a:3:{s:5:\"label\";s:3:\"K2D\";s:8:\"variants\";a:16:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Kablammo\";a:3:{s:5:\"label\";s:8:\"Kablammo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Kadwa\";a:3:{s:5:\"label\";s:5:\"Kadwa\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Kaisei Decol\";a:3:{s:5:\"label\";s:12:\"Kaisei Decol\";s:8:\"variants\";a:3:{i:0;s:3:\"500\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Kaisei HarunoUmi\";a:3:{s:5:\"label\";s:16:\"Kaisei HarunoUmi\";s:8:\"variants\";a:3:{i:0;s:3:\"500\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Kaisei Opti\";a:3:{s:5:\"label\";s:11:\"Kaisei Opti\";s:8:\"variants\";a:3:{i:0;s:3:\"500\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Kaisei Tokumin\";a:3:{s:5:\"label\";s:14:\"Kaisei Tokumin\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"700\";i:2;s:3:\"800\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Kalam\";a:3:{s:5:\"label\";s:5:\"Kalam\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Kameron\";a:3:{s:5:\"label\";s:7:\"Kameron\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Kanit\";a:3:{s:5:\"label\";s:5:\"Kanit\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Kantumruy Pro\";a:3:{s:5:\"label\";s:13:\"Kantumruy Pro\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Karantina\";a:3:{s:5:\"label\";s:9:\"Karantina\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Karla\";a:3:{s:5:\"label\";s:5:\"Karla\";s:8:\"variants\";a:14:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Karma\";a:3:{s:5:\"label\";s:5:\"Karma\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Katibeh\";a:3:{s:5:\"label\";s:7:\"Katibeh\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Kaushan Script\";a:3:{s:5:\"label\";s:14:\"Kaushan Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Kavivanar\";a:3:{s:5:\"label\";s:9:\"Kavivanar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Kavoon\";a:3:{s:5:\"label\";s:6:\"Kavoon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Kdam Thmor Pro\";a:3:{s:5:\"label\";s:14:\"Kdam Thmor Pro\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Keania One\";a:3:{s:5:\"label\";s:10:\"Keania One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Kelly Slab\";a:3:{s:5:\"label\";s:10:\"Kelly Slab\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Kenia\";a:3:{s:5:\"label\";s:5:\"Kenia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Khand\";a:3:{s:5:\"label\";s:5:\"Khand\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Khmer\";a:3:{s:5:\"label\";s:5:\"Khmer\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Khula\";a:3:{s:5:\"label\";s:5:\"Khula\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Kings\";a:3:{s:5:\"label\";s:5:\"Kings\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Kirang Haerang\";a:3:{s:5:\"label\";s:14:\"Kirang Haerang\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Kite One\";a:3:{s:5:\"label\";s:8:\"Kite One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Kiwi Maru\";a:3:{s:5:\"label\";s:9:\"Kiwi Maru\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Klee One\";a:3:{s:5:\"label\";s:8:\"Klee One\";s:8:\"variants\";a:2:{i:0;s:3:\"600\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Knewave\";a:3:{s:5:\"label\";s:7:\"Knewave\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"KoHo\";a:3:{s:5:\"label\";s:4:\"KoHo\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Kodchasan\";a:3:{s:5:\"label\";s:9:\"Kodchasan\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Koh Santepheap\";a:3:{s:5:\"label\";s:14:\"Koh Santepheap\";s:8:\"variants\";a:5:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"900\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Kolker Brush\";a:3:{s:5:\"label\";s:12:\"Kolker Brush\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:19:\"Konkhmer Sleokchher\";a:3:{s:5:\"label\";s:19:\"Konkhmer Sleokchher\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Kosugi\";a:3:{s:5:\"label\";s:6:\"Kosugi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Kosugi Maru\";a:3:{s:5:\"label\";s:11:\"Kosugi Maru\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Kotta One\";a:3:{s:5:\"label\";s:9:\"Kotta One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Koulen\";a:3:{s:5:\"label\";s:6:\"Koulen\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Kranky\";a:3:{s:5:\"label\";s:6:\"Kranky\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Kreon\";a:3:{s:5:\"label\";s:5:\"Kreon\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Kristi\";a:3:{s:5:\"label\";s:6:\"Kristi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Krona One\";a:3:{s:5:\"label\";s:9:\"Krona One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Krub\";a:3:{s:5:\"label\";s:4:\"Krub\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Kufam\";a:3:{s:5:\"label\";s:5:\"Kufam\";s:8:\"variants\";a:12:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Kulim Park\";a:3:{s:5:\"label\";s:10:\"Kulim Park\";s:8:\"variants\";a:10:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Kumar One\";a:3:{s:5:\"label\";s:9:\"Kumar One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:17:\"Kumar One Outline\";a:3:{s:5:\"label\";s:17:\"Kumar One Outline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Kumbh Sans\";a:3:{s:5:\"label\";s:10:\"Kumbh Sans\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Kurale\";a:3:{s:5:\"label\";s:6:\"Kurale\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"La Belle Aurore\";a:3:{s:5:\"label\";s:15:\"La Belle Aurore\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Labrada\";a:3:{s:5:\"label\";s:7:\"Labrada\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Lacquer\";a:3:{s:5:\"label\";s:7:\"Lacquer\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Laila\";a:3:{s:5:\"label\";s:5:\"Laila\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Lakki Reddy\";a:3:{s:5:\"label\";s:11:\"Lakki Reddy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Lalezar\";a:3:{s:5:\"label\";s:7:\"Lalezar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Lancelot\";a:3:{s:5:\"label\";s:8:\"Lancelot\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Langar\";a:3:{s:5:\"label\";s:6:\"Langar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Lateef\";a:3:{s:5:\"label\";s:6:\"Lateef\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Lato\";a:3:{s:5:\"label\";s:4:\"Lato\";s:8:\"variants\";a:10:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"900\";i:7;s:9:\"900italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Lavishly Yours\";a:3:{s:5:\"label\";s:14:\"Lavishly Yours\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"League Gothic\";a:3:{s:5:\"label\";s:13:\"League Gothic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"League Script\";a:3:{s:5:\"label\";s:13:\"League Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"League Spartan\";a:3:{s:5:\"label\";s:14:\"League Spartan\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Leckerli One\";a:3:{s:5:\"label\";s:12:\"Leckerli One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Ledger\";a:3:{s:5:\"label\";s:6:\"Ledger\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Lekton\";a:3:{s:5:\"label\";s:6:\"Lekton\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Lemon\";a:3:{s:5:\"label\";s:5:\"Lemon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Lemonada\";a:3:{s:5:\"label\";s:8:\"Lemonada\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Lexend\";a:3:{s:5:\"label\";s:6:\"Lexend\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Lexend Deca\";a:3:{s:5:\"label\";s:11:\"Lexend Deca\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Lexend Exa\";a:3:{s:5:\"label\";s:10:\"Lexend Exa\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Lexend Giga\";a:3:{s:5:\"label\";s:11:\"Lexend Giga\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Lexend Mega\";a:3:{s:5:\"label\";s:11:\"Lexend Mega\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Lexend Peta\";a:3:{s:5:\"label\";s:11:\"Lexend Peta\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Lexend Tera\";a:3:{s:5:\"label\";s:11:\"Lexend Tera\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Lexend Zetta\";a:3:{s:5:\"label\";s:12:\"Lexend Zetta\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Libre Barcode 128\";a:3:{s:5:\"label\";s:17:\"Libre Barcode 128\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:22:\"Libre Barcode 128 Text\";a:3:{s:5:\"label\";s:22:\"Libre Barcode 128 Text\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Libre Barcode 39\";a:3:{s:5:\"label\";s:16:\"Libre Barcode 39\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:25:\"Libre Barcode 39 Extended\";a:3:{s:5:\"label\";s:25:\"Libre Barcode 39 Extended\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:30:\"Libre Barcode 39 Extended Text\";a:3:{s:5:\"label\";s:30:\"Libre Barcode 39 Extended Text\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:21:\"Libre Barcode 39 Text\";a:3:{s:5:\"label\";s:21:\"Libre Barcode 39 Text\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:24:\"Libre Barcode EAN13 Text\";a:3:{s:5:\"label\";s:24:\"Libre Barcode EAN13 Text\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:17:\"Libre Baskerville\";a:3:{s:5:\"label\";s:17:\"Libre Baskerville\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Libre Bodoni\";a:3:{s:5:\"label\";s:12:\"Libre Bodoni\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"Libre Caslon Display\";a:3:{s:5:\"label\";s:20:\"Libre Caslon Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Libre Caslon Text\";a:3:{s:5:\"label\";s:17:\"Libre Caslon Text\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Libre Franklin\";a:3:{s:5:\"label\";s:14:\"Libre Franklin\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Licorice\";a:3:{s:5:\"label\";s:8:\"Licorice\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:11:\"Life Savers\";a:3:{s:5:\"label\";s:11:\"Life Savers\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"800\";i:2;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Lilita One\";a:3:{s:5:\"label\";s:10:\"Lilita One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Lily Script One\";a:3:{s:5:\"label\";s:15:\"Lily Script One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Limelight\";a:3:{s:5:\"label\";s:9:\"Limelight\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Linden Hill\";a:3:{s:5:\"label\";s:11:\"Linden Hill\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Literata\";a:3:{s:5:\"label\";s:8:\"Literata\";s:8:\"variants\";a:16:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Liu Jian Mao Cao\";a:3:{s:5:\"label\";s:16:\"Liu Jian Mao Cao\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Livvic\";a:3:{s:5:\"label\";s:6:\"Livvic\";s:8:\"variants\";a:16:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Lobster\";a:3:{s:5:\"label\";s:7:\"Lobster\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Lobster Two\";a:3:{s:5:\"label\";s:11:\"Lobster Two\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Londrina Outline\";a:3:{s:5:\"label\";s:16:\"Londrina Outline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Londrina Shadow\";a:3:{s:5:\"label\";s:15:\"Londrina Shadow\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Londrina Sketch\";a:3:{s:5:\"label\";s:15:\"Londrina Sketch\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Londrina Solid\";a:3:{s:5:\"label\";s:14:\"Londrina Solid\";s:8:\"variants\";a:4:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"900\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Long Cang\";a:3:{s:5:\"label\";s:9:\"Long Cang\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Lora\";a:3:{s:5:\"label\";s:4:\"Lora\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Love Light\";a:3:{s:5:\"label\";s:10:\"Love Light\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:21:\"Love Ya Like A Sister\";a:3:{s:5:\"label\";s:21:\"Love Ya Like A Sister\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:17:\"Loved by the King\";a:3:{s:5:\"label\";s:17:\"Loved by the King\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Lovers Quarrel\";a:3:{s:5:\"label\";s:14:\"Lovers Quarrel\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Luckiest Guy\";a:3:{s:5:\"label\";s:12:\"Luckiest Guy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Lusitana\";a:3:{s:5:\"label\";s:8:\"Lusitana\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Lustria\";a:3:{s:5:\"label\";s:7:\"Lustria\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Luxurious Roman\";a:3:{s:5:\"label\";s:15:\"Luxurious Roman\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Luxurious Script\";a:3:{s:5:\"label\";s:16:\"Luxurious Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"M PLUS 1\";a:3:{s:5:\"label\";s:8:\"M PLUS 1\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"M PLUS 1 Code\";a:3:{s:5:\"label\";s:13:\"M PLUS 1 Code\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"M PLUS 1p\";a:3:{s:5:\"label\";s:9:\"M PLUS 1p\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"M PLUS 2\";a:3:{s:5:\"label\";s:8:\"M PLUS 2\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"M PLUS Code Latin\";a:3:{s:5:\"label\";s:17:\"M PLUS Code Latin\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"M PLUS Rounded 1c\";a:3:{s:5:\"label\";s:17:\"M PLUS Rounded 1c\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Ma Shan Zheng\";a:3:{s:5:\"label\";s:13:\"Ma Shan Zheng\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Macondo\";a:3:{s:5:\"label\";s:7:\"Macondo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:18:\"Macondo Swash Caps\";a:3:{s:5:\"label\";s:18:\"Macondo Swash Caps\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Mada\";a:3:{s:5:\"label\";s:4:\"Mada\";s:8:\"variants\";a:8:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Magra\";a:3:{s:5:\"label\";s:5:\"Magra\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Maiden Orange\";a:3:{s:5:\"label\";s:13:\"Maiden Orange\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Maitree\";a:3:{s:5:\"label\";s:7:\"Maitree\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Major Mono Display\";a:3:{s:5:\"label\";s:18:\"Major Mono Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:4:\"Mako\";a:3:{s:5:\"label\";s:4:\"Mako\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Mali\";a:3:{s:5:\"label\";s:4:\"Mali\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Mallanna\";a:3:{s:5:\"label\";s:8:\"Mallanna\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Mandali\";a:3:{s:5:\"label\";s:7:\"Mandali\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Manjari\";a:3:{s:5:\"label\";s:7:\"Manjari\";s:8:\"variants\";a:3:{i:0;s:3:\"100\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Manrope\";a:3:{s:5:\"label\";s:7:\"Manrope\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Mansalva\";a:3:{s:5:\"label\";s:8:\"Mansalva\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Manuale\";a:3:{s:5:\"label\";s:7:\"Manuale\";s:8:\"variants\";a:12:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Marcellus\";a:3:{s:5:\"label\";s:9:\"Marcellus\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Marcellus SC\";a:3:{s:5:\"label\";s:12:\"Marcellus SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Marck Script\";a:3:{s:5:\"label\";s:12:\"Marck Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Margarine\";a:3:{s:5:\"label\";s:9:\"Margarine\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Marhey\";a:3:{s:5:\"label\";s:6:\"Marhey\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Markazi Text\";a:3:{s:5:\"label\";s:12:\"Markazi Text\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Marko One\";a:3:{s:5:\"label\";s:9:\"Marko One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Marmelad\";a:3:{s:5:\"label\";s:8:\"Marmelad\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Martel\";a:3:{s:5:\"label\";s:6:\"Martel\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Martel Sans\";a:3:{s:5:\"label\";s:11:\"Martel Sans\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Martian Mono\";a:3:{s:5:\"label\";s:12:\"Martian Mono\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:6:\"Marvel\";a:3:{s:5:\"label\";s:6:\"Marvel\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Mate\";a:3:{s:5:\"label\";s:4:\"Mate\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Mate SC\";a:3:{s:5:\"label\";s:7:\"Mate SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Material Icons\";a:3:{s:5:\"label\";s:14:\"Material Icons\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:23:\"Material Icons Outlined\";a:3:{s:5:\"label\";s:23:\"Material Icons Outlined\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:20:\"Material Icons Round\";a:3:{s:5:\"label\";s:20:\"Material Icons Round\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:20:\"Material Icons Sharp\";a:3:{s:5:\"label\";s:20:\"Material Icons Sharp\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:23:\"Material Icons Two Tone\";a:3:{s:5:\"label\";s:23:\"Material Icons Two Tone\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:25:\"Material Symbols Outlined\";a:3:{s:5:\"label\";s:25:\"Material Symbols Outlined\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:24:\"Material Symbols Rounded\";a:3:{s:5:\"label\";s:24:\"Material Symbols Rounded\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:22:\"Material Symbols Sharp\";a:3:{s:5:\"label\";s:22:\"Material Symbols Sharp\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:9:\"Maven Pro\";a:3:{s:5:\"label\";s:9:\"Maven Pro\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"McLaren\";a:3:{s:5:\"label\";s:7:\"McLaren\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Mea Culpa\";a:3:{s:5:\"label\";s:9:\"Mea Culpa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Meddon\";a:3:{s:5:\"label\";s:6:\"Meddon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"MedievalSharp\";a:3:{s:5:\"label\";s:13:\"MedievalSharp\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Medula One\";a:3:{s:5:\"label\";s:10:\"Medula One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Meera Inimai\";a:3:{s:5:\"label\";s:12:\"Meera Inimai\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Megrim\";a:3:{s:5:\"label\";s:6:\"Megrim\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Meie Script\";a:3:{s:5:\"label\";s:11:\"Meie Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:11:\"Meow Script\";a:3:{s:5:\"label\";s:11:\"Meow Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Merienda\";a:3:{s:5:\"label\";s:8:\"Merienda\";s:8:\"variants\";a:7:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Merriweather\";a:3:{s:5:\"label\";s:12:\"Merriweather\";s:8:\"variants\";a:8:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:3:\"900\";i:5;s:9:\"900italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Merriweather Sans\";a:3:{s:5:\"label\";s:17:\"Merriweather Sans\";s:8:\"variants\";a:12:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Metal\";a:3:{s:5:\"label\";s:5:\"Metal\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Metal Mania\";a:3:{s:5:\"label\";s:11:\"Metal Mania\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Metamorphous\";a:3:{s:5:\"label\";s:12:\"Metamorphous\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Metrophobic\";a:3:{s:5:\"label\";s:11:\"Metrophobic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Michroma\";a:3:{s:5:\"label\";s:8:\"Michroma\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Milonga\";a:3:{s:5:\"label\";s:7:\"Milonga\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Miltonian\";a:3:{s:5:\"label\";s:9:\"Miltonian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Miltonian Tattoo\";a:3:{s:5:\"label\";s:16:\"Miltonian Tattoo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Mina\";a:3:{s:5:\"label\";s:4:\"Mina\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Mingzat\";a:3:{s:5:\"label\";s:7:\"Mingzat\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Miniver\";a:3:{s:5:\"label\";s:7:\"Miniver\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Miriam Libre\";a:3:{s:5:\"label\";s:12:\"Miriam Libre\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Mirza\";a:3:{s:5:\"label\";s:5:\"Mirza\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Miss Fajardose\";a:3:{s:5:\"label\";s:14:\"Miss Fajardose\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Mitr\";a:3:{s:5:\"label\";s:4:\"Mitr\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Mochiy Pop One\";a:3:{s:5:\"label\";s:14:\"Mochiy Pop One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Mochiy Pop P One\";a:3:{s:5:\"label\";s:16:\"Mochiy Pop P One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Modak\";a:3:{s:5:\"label\";s:5:\"Modak\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Modern Antiqua\";a:3:{s:5:\"label\";s:14:\"Modern Antiqua\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Mogra\";a:3:{s:5:\"label\";s:5:\"Mogra\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Mohave\";a:3:{s:5:\"label\";s:6:\"Mohave\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Moirai One\";a:3:{s:5:\"label\";s:10:\"Moirai One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Molengo\";a:3:{s:5:\"label\";s:7:\"Molengo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Molle\";a:3:{s:5:\"label\";s:5:\"Molle\";s:8:\"variants\";a:1:{i:0;s:6:\"italic\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Monda\";a:3:{s:5:\"label\";s:5:\"Monda\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Monofett\";a:3:{s:5:\"label\";s:8:\"Monofett\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:14:\"Monomaniac One\";a:3:{s:5:\"label\";s:14:\"Monomaniac One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Monoton\";a:3:{s:5:\"label\";s:7:\"Monoton\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:20:\"Monsieur La Doulaise\";a:3:{s:5:\"label\";s:20:\"Monsieur La Doulaise\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Montaga\";a:3:{s:5:\"label\";s:7:\"Montaga\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Montagu Slab\";a:3:{s:5:\"label\";s:12:\"Montagu Slab\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"MonteCarlo\";a:3:{s:5:\"label\";s:10:\"MonteCarlo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Montez\";a:3:{s:5:\"label\";s:6:\"Montez\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Montserrat\";a:3:{s:5:\"label\";s:10:\"Montserrat\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Montserrat Alternates\";a:3:{s:5:\"label\";s:21:\"Montserrat Alternates\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Montserrat Subrayada\";a:3:{s:5:\"label\";s:20:\"Montserrat Subrayada\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Moo Lah Lah\";a:3:{s:5:\"label\";s:11:\"Moo Lah Lah\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Moon Dance\";a:3:{s:5:\"label\";s:10:\"Moon Dance\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Moul\";a:3:{s:5:\"label\";s:4:\"Moul\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Moulpali\";a:3:{s:5:\"label\";s:8:\"Moulpali\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:22:\"Mountains of Christmas\";a:3:{s:5:\"label\";s:22:\"Mountains of Christmas\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Mouse Memoirs\";a:3:{s:5:\"label\";s:13:\"Mouse Memoirs\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Mr Bedfort\";a:3:{s:5:\"label\";s:10:\"Mr Bedfort\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Mr Dafoe\";a:3:{s:5:\"label\";s:8:\"Mr Dafoe\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Mr De Haviland\";a:3:{s:5:\"label\";s:14:\"Mr De Haviland\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:19:\"Mrs Saint Delafield\";a:3:{s:5:\"label\";s:19:\"Mrs Saint Delafield\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Mrs Sheppards\";a:3:{s:5:\"label\";s:13:\"Mrs Sheppards\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Ms Madi\";a:3:{s:5:\"label\";s:7:\"Ms Madi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Mukta\";a:3:{s:5:\"label\";s:5:\"Mukta\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Mukta Mahee\";a:3:{s:5:\"label\";s:11:\"Mukta Mahee\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Mukta Malar\";a:3:{s:5:\"label\";s:11:\"Mukta Malar\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Mukta Vaani\";a:3:{s:5:\"label\";s:11:\"Mukta Vaani\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Mulish\";a:3:{s:5:\"label\";s:6:\"Mulish\";s:8:\"variants\";a:16:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Murecho\";a:3:{s:5:\"label\";s:7:\"Murecho\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"MuseoModerno\";a:3:{s:5:\"label\";s:12:\"MuseoModerno\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"My Soul\";a:3:{s:5:\"label\";s:7:\"My Soul\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Mynerve\";a:3:{s:5:\"label\";s:7:\"Mynerve\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Mystery Quest\";a:3:{s:5:\"label\";s:13:\"Mystery Quest\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:3:\"NTR\";a:3:{s:5:\"label\";s:3:\"NTR\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Nabla\";a:3:{s:5:\"label\";s:5:\"Nabla\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:18:\"Nanum Brush Script\";a:3:{s:5:\"label\";s:18:\"Nanum Brush Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Nanum Gothic\";a:3:{s:5:\"label\";s:12:\"Nanum Gothic\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"800\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Nanum Gothic Coding\";a:3:{s:5:\"label\";s:19:\"Nanum Gothic Coding\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:14:\"Nanum Myeongjo\";a:3:{s:5:\"label\";s:14:\"Nanum Myeongjo\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"800\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Nanum Pen Script\";a:3:{s:5:\"label\";s:16:\"Nanum Pen Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:11:\"Neonderthaw\";a:3:{s:5:\"label\";s:11:\"Neonderthaw\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Nerko One\";a:3:{s:5:\"label\";s:9:\"Nerko One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Neucha\";a:3:{s:5:\"label\";s:6:\"Neucha\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Neuton\";a:3:{s:5:\"label\";s:6:\"Neuton\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"New Rocker\";a:3:{s:5:\"label\";s:10:\"New Rocker\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"New Tegomin\";a:3:{s:5:\"label\";s:11:\"New Tegomin\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"News Cycle\";a:3:{s:5:\"label\";s:10:\"News Cycle\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Newsreader\";a:3:{s:5:\"label\";s:10:\"Newsreader\";s:8:\"variants\";a:14:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Niconne\";a:3:{s:5:\"label\";s:7:\"Niconne\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Niramit\";a:3:{s:5:\"label\";s:7:\"Niramit\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Nixie One\";a:3:{s:5:\"label\";s:9:\"Nixie One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Nobile\";a:3:{s:5:\"label\";s:6:\"Nobile\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Nokora\";a:3:{s:5:\"label\";s:6:\"Nokora\";s:8:\"variants\";a:5:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"900\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Norican\";a:3:{s:5:\"label\";s:7:\"Norican\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Nosifer\";a:3:{s:5:\"label\";s:7:\"Nosifer\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Notable\";a:3:{s:5:\"label\";s:7:\"Notable\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Nothing You Could Do\";a:3:{s:5:\"label\";s:20:\"Nothing You Could Do\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Noticia Text\";a:3:{s:5:\"label\";s:12:\"Noticia Text\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Noto Color Emoji\";a:3:{s:5:\"label\";s:16:\"Noto Color Emoji\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Noto Emoji\";a:3:{s:5:\"label\";s:10:\"Noto Emoji\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Kufi Arabic\";a:3:{s:5:\"label\";s:16:\"Noto Kufi Arabic\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Noto Music\";a:3:{s:5:\"label\";s:10:\"Noto Music\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Naskh Arabic\";a:3:{s:5:\"label\";s:17:\"Noto Naskh Arabic\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Noto Nastaliq Urdu\";a:3:{s:5:\"label\";s:18:\"Noto Nastaliq Urdu\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Noto Rashi Hebrew\";a:3:{s:5:\"label\";s:17:\"Noto Rashi Hebrew\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Noto Sans\";a:3:{s:5:\"label\";s:9:\"Noto Sans\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Adlam\";a:3:{s:5:\"label\";s:15:\"Noto Sans Adlam\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:24:\"Noto Sans Adlam Unjoined\";a:3:{s:5:\"label\";s:24:\"Noto Sans Adlam Unjoined\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:31:\"Noto Sans Anatolian Hieroglyphs\";a:3:{s:5:\"label\";s:31:\"Noto Sans Anatolian Hieroglyphs\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Arabic\";a:3:{s:5:\"label\";s:16:\"Noto Sans Arabic\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Armenian\";a:3:{s:5:\"label\";s:18:\"Noto Sans Armenian\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Avestan\";a:3:{s:5:\"label\";s:17:\"Noto Sans Avestan\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Balinese\";a:3:{s:5:\"label\";s:18:\"Noto Sans Balinese\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Bamum\";a:3:{s:5:\"label\";s:15:\"Noto Sans Bamum\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Noto Sans Bassa Vah\";a:3:{s:5:\"label\";s:19:\"Noto Sans Bassa Vah\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Batak\";a:3:{s:5:\"label\";s:15:\"Noto Sans Batak\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Bengali\";a:3:{s:5:\"label\";s:17:\"Noto Sans Bengali\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Noto Sans Bhaiksuki\";a:3:{s:5:\"label\";s:19:\"Noto Sans Bhaiksuki\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Brahmi\";a:3:{s:5:\"label\";s:16:\"Noto Sans Brahmi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Buginese\";a:3:{s:5:\"label\";s:18:\"Noto Sans Buginese\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Buhid\";a:3:{s:5:\"label\";s:15:\"Noto Sans Buhid\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:29:\"Noto Sans Canadian Aboriginal\";a:3:{s:5:\"label\";s:29:\"Noto Sans Canadian Aboriginal\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Carian\";a:3:{s:5:\"label\";s:16:\"Noto Sans Carian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:28:\"Noto Sans Caucasian Albanian\";a:3:{s:5:\"label\";s:28:\"Noto Sans Caucasian Albanian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Chakma\";a:3:{s:5:\"label\";s:16:\"Noto Sans Chakma\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Noto Sans Cham\";a:3:{s:5:\"label\";s:14:\"Noto Sans Cham\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Cherokee\";a:3:{s:5:\"label\";s:18:\"Noto Sans Cherokee\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Noto Sans Chorasmian\";a:3:{s:5:\"label\";s:20:\"Noto Sans Chorasmian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Coptic\";a:3:{s:5:\"label\";s:16:\"Noto Sans Coptic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Noto Sans Cuneiform\";a:3:{s:5:\"label\";s:19:\"Noto Sans Cuneiform\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Cypriot\";a:3:{s:5:\"label\";s:17:\"Noto Sans Cypriot\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Deseret\";a:3:{s:5:\"label\";s:17:\"Noto Sans Deseret\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Noto Sans Devanagari\";a:3:{s:5:\"label\";s:20:\"Noto Sans Devanagari\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Display\";a:3:{s:5:\"label\";s:17:\"Noto Sans Display\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Duployan\";a:3:{s:5:\"label\";s:18:\"Noto Sans Duployan\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:30:\"Noto Sans Egyptian Hieroglyphs\";a:3:{s:5:\"label\";s:30:\"Noto Sans Egyptian Hieroglyphs\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Elbasan\";a:3:{s:5:\"label\";s:17:\"Noto Sans Elbasan\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Elymaic\";a:3:{s:5:\"label\";s:17:\"Noto Sans Elymaic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Ethiopic\";a:3:{s:5:\"label\";s:18:\"Noto Sans Ethiopic\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Georgian\";a:3:{s:5:\"label\";s:18:\"Noto Sans Georgian\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Noto Sans Glagolitic\";a:3:{s:5:\"label\";s:20:\"Noto Sans Glagolitic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Gothic\";a:3:{s:5:\"label\";s:16:\"Noto Sans Gothic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Grantha\";a:3:{s:5:\"label\";s:17:\"Noto Sans Grantha\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Gujarati\";a:3:{s:5:\"label\";s:18:\"Noto Sans Gujarati\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:23:\"Noto Sans Gunjala Gondi\";a:3:{s:5:\"label\";s:23:\"Noto Sans Gunjala Gondi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Gurmukhi\";a:3:{s:5:\"label\";s:18:\"Noto Sans Gurmukhi\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Noto Sans HK\";a:3:{s:5:\"label\";s:12:\"Noto Sans HK\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:25:\"Noto Sans Hanifi Rohingya\";a:3:{s:5:\"label\";s:25:\"Noto Sans Hanifi Rohingya\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Hanunoo\";a:3:{s:5:\"label\";s:17:\"Noto Sans Hanunoo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Hatran\";a:3:{s:5:\"label\";s:16:\"Noto Sans Hatran\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Hebrew\";a:3:{s:5:\"label\";s:16:\"Noto Sans Hebrew\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:26:\"Noto Sans Imperial Aramaic\";a:3:{s:5:\"label\";s:26:\"Noto Sans Imperial Aramaic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:29:\"Noto Sans Indic Siyaq Numbers\";a:3:{s:5:\"label\";s:29:\"Noto Sans Indic Siyaq Numbers\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:31:\"Noto Sans Inscriptional Pahlavi\";a:3:{s:5:\"label\";s:31:\"Noto Sans Inscriptional Pahlavi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:32:\"Noto Sans Inscriptional Parthian\";a:3:{s:5:\"label\";s:32:\"Noto Sans Inscriptional Parthian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Noto Sans JP\";a:3:{s:5:\"label\";s:12:\"Noto Sans JP\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Javanese\";a:3:{s:5:\"label\";s:18:\"Noto Sans Javanese\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Noto Sans KR\";a:3:{s:5:\"label\";s:12:\"Noto Sans KR\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Kaithi\";a:3:{s:5:\"label\";s:16:\"Noto Sans Kaithi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Kannada\";a:3:{s:5:\"label\";s:17:\"Noto Sans Kannada\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Kayah Li\";a:3:{s:5:\"label\";s:18:\"Noto Sans Kayah Li\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Noto Sans Kharoshthi\";a:3:{s:5:\"label\";s:20:\"Noto Sans Kharoshthi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Khmer\";a:3:{s:5:\"label\";s:15:\"Noto Sans Khmer\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Khojki\";a:3:{s:5:\"label\";s:16:\"Noto Sans Khojki\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Noto Sans Khudawadi\";a:3:{s:5:\"label\";s:19:\"Noto Sans Khudawadi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Noto Sans Lao\";a:3:{s:5:\"label\";s:13:\"Noto Sans Lao\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Noto Sans Lao Looped\";a:3:{s:5:\"label\";s:20:\"Noto Sans Lao Looped\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Lepcha\";a:3:{s:5:\"label\";s:16:\"Noto Sans Lepcha\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Limbu\";a:3:{s:5:\"label\";s:15:\"Noto Sans Limbu\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Linear A\";a:3:{s:5:\"label\";s:18:\"Noto Sans Linear A\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Linear B\";a:3:{s:5:\"label\";s:18:\"Noto Sans Linear B\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Noto Sans Lisu\";a:3:{s:5:\"label\";s:14:\"Noto Sans Lisu\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Lycian\";a:3:{s:5:\"label\";s:16:\"Noto Sans Lycian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Lydian\";a:3:{s:5:\"label\";s:16:\"Noto Sans Lydian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Mahajani\";a:3:{s:5:\"label\";s:18:\"Noto Sans Mahajani\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Noto Sans Malayalam\";a:3:{s:5:\"label\";s:19:\"Noto Sans Malayalam\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Mandaic\";a:3:{s:5:\"label\";s:17:\"Noto Sans Mandaic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Noto Sans Manichaean\";a:3:{s:5:\"label\";s:20:\"Noto Sans Manichaean\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Marchen\";a:3:{s:5:\"label\";s:17:\"Noto Sans Marchen\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:23:\"Noto Sans Masaram Gondi\";a:3:{s:5:\"label\";s:23:\"Noto Sans Masaram Gondi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Noto Sans Math\";a:3:{s:5:\"label\";s:14:\"Noto Sans Math\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:24:\"Noto Sans Mayan Numerals\";a:3:{s:5:\"label\";s:24:\"Noto Sans Mayan Numerals\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Noto Sans Medefaidrin\";a:3:{s:5:\"label\";s:21:\"Noto Sans Medefaidrin\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:22:\"Noto Sans Meetei Mayek\";a:3:{s:5:\"label\";s:22:\"Noto Sans Meetei Mayek\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:23:\"Noto Sans Mende Kikakui\";a:3:{s:5:\"label\";s:23:\"Noto Sans Mende Kikakui\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Meroitic\";a:3:{s:5:\"label\";s:18:\"Noto Sans Meroitic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Noto Sans Miao\";a:3:{s:5:\"label\";s:14:\"Noto Sans Miao\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Noto Sans Modi\";a:3:{s:5:\"label\";s:14:\"Noto Sans Modi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Noto Sans Mongolian\";a:3:{s:5:\"label\";s:19:\"Noto Sans Mongolian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Noto Sans Mono\";a:3:{s:5:\"label\";s:14:\"Noto Sans Mono\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:13:\"Noto Sans Mro\";a:3:{s:5:\"label\";s:13:\"Noto Sans Mro\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Multani\";a:3:{s:5:\"label\";s:17:\"Noto Sans Multani\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Myanmar\";a:3:{s:5:\"label\";s:17:\"Noto Sans Myanmar\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Noto Sans NKo\";a:3:{s:5:\"label\";s:13:\"Noto Sans NKo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Noto Sans Nabataean\";a:3:{s:5:\"label\";s:19:\"Noto Sans Nabataean\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Noto Sans Nag Mundari\";a:3:{s:5:\"label\";s:21:\"Noto Sans Nag Mundari\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Noto Sans Nandinagari\";a:3:{s:5:\"label\";s:21:\"Noto Sans Nandinagari\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Noto Sans New Tai Lue\";a:3:{s:5:\"label\";s:21:\"Noto Sans New Tai Lue\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Noto Sans Newa\";a:3:{s:5:\"label\";s:14:\"Noto Sans Newa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Nushu\";a:3:{s:5:\"label\";s:15:\"Noto Sans Nushu\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Ogham\";a:3:{s:5:\"label\";s:15:\"Noto Sans Ogham\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Ol Chiki\";a:3:{s:5:\"label\";s:18:\"Noto Sans Ol Chiki\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:23:\"Noto Sans Old Hungarian\";a:3:{s:5:\"label\";s:23:\"Noto Sans Old Hungarian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Noto Sans Old Italic\";a:3:{s:5:\"label\";s:20:\"Noto Sans Old Italic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:27:\"Noto Sans Old North Arabian\";a:3:{s:5:\"label\";s:27:\"Noto Sans Old North Arabian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Noto Sans Old Permic\";a:3:{s:5:\"label\";s:20:\"Noto Sans Old Permic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Noto Sans Old Persian\";a:3:{s:5:\"label\";s:21:\"Noto Sans Old Persian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Noto Sans Old Sogdian\";a:3:{s:5:\"label\";s:21:\"Noto Sans Old Sogdian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:27:\"Noto Sans Old South Arabian\";a:3:{s:5:\"label\";s:27:\"Noto Sans Old South Arabian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Noto Sans Old Turkic\";a:3:{s:5:\"label\";s:20:\"Noto Sans Old Turkic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Oriya\";a:3:{s:5:\"label\";s:15:\"Noto Sans Oriya\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Osage\";a:3:{s:5:\"label\";s:15:\"Noto Sans Osage\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Osmanya\";a:3:{s:5:\"label\";s:17:\"Noto Sans Osmanya\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:22:\"Noto Sans Pahawh Hmong\";a:3:{s:5:\"label\";s:22:\"Noto Sans Pahawh Hmong\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Noto Sans Palmyrene\";a:3:{s:5:\"label\";s:19:\"Noto Sans Palmyrene\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Noto Sans Pau Cin Hau\";a:3:{s:5:\"label\";s:21:\"Noto Sans Pau Cin Hau\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Phags Pa\";a:3:{s:5:\"label\";s:18:\"Noto Sans Phags Pa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Noto Sans Phoenician\";a:3:{s:5:\"label\";s:20:\"Noto Sans Phoenician\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:25:\"Noto Sans Psalter Pahlavi\";a:3:{s:5:\"label\";s:25:\"Noto Sans Psalter Pahlavi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Rejang\";a:3:{s:5:\"label\";s:16:\"Noto Sans Rejang\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Runic\";a:3:{s:5:\"label\";s:15:\"Noto Sans Runic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Noto Sans SC\";a:3:{s:5:\"label\";s:12:\"Noto Sans SC\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Noto Sans Samaritan\";a:3:{s:5:\"label\";s:19:\"Noto Sans Samaritan\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Noto Sans Saurashtra\";a:3:{s:5:\"label\";s:20:\"Noto Sans Saurashtra\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Sharada\";a:3:{s:5:\"label\";s:17:\"Noto Sans Sharada\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Shavian\";a:3:{s:5:\"label\";s:17:\"Noto Sans Shavian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Siddham\";a:3:{s:5:\"label\";s:17:\"Noto Sans Siddham\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Noto Sans SignWriting\";a:3:{s:5:\"label\";s:21:\"Noto Sans SignWriting\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Sinhala\";a:3:{s:5:\"label\";s:17:\"Noto Sans Sinhala\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Sogdian\";a:3:{s:5:\"label\";s:17:\"Noto Sans Sogdian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:22:\"Noto Sans Sora Sompeng\";a:3:{s:5:\"label\";s:22:\"Noto Sans Sora Sompeng\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Soyombo\";a:3:{s:5:\"label\";s:17:\"Noto Sans Soyombo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Noto Sans Sundanese\";a:3:{s:5:\"label\";s:19:\"Noto Sans Sundanese\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:22:\"Noto Sans Syloti Nagri\";a:3:{s:5:\"label\";s:22:\"Noto Sans Syloti Nagri\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Symbols\";a:3:{s:5:\"label\";s:17:\"Noto Sans Symbols\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Noto Sans Symbols 2\";a:3:{s:5:\"label\";s:19:\"Noto Sans Symbols 2\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Syriac\";a:3:{s:5:\"label\";s:16:\"Noto Sans Syriac\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Noto Sans TC\";a:3:{s:5:\"label\";s:12:\"Noto Sans TC\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Tagalog\";a:3:{s:5:\"label\";s:17:\"Noto Sans Tagalog\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Tagbanwa\";a:3:{s:5:\"label\";s:18:\"Noto Sans Tagbanwa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Tai Le\";a:3:{s:5:\"label\";s:16:\"Noto Sans Tai Le\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Tai Tham\";a:3:{s:5:\"label\";s:18:\"Noto Sans Tai Tham\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Tai Viet\";a:3:{s:5:\"label\";s:18:\"Noto Sans Tai Viet\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Takri\";a:3:{s:5:\"label\";s:15:\"Noto Sans Takri\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Tamil\";a:3:{s:5:\"label\";s:15:\"Noto Sans Tamil\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:26:\"Noto Sans Tamil Supplement\";a:3:{s:5:\"label\";s:26:\"Noto Sans Tamil Supplement\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Tangsa\";a:3:{s:5:\"label\";s:16:\"Noto Sans Tangsa\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Telugu\";a:3:{s:5:\"label\";s:16:\"Noto Sans Telugu\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Thaana\";a:3:{s:5:\"label\";s:16:\"Noto Sans Thaana\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Noto Sans Thai\";a:3:{s:5:\"label\";s:14:\"Noto Sans Thai\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Noto Sans Thai Looped\";a:3:{s:5:\"label\";s:21:\"Noto Sans Thai Looped\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Tifinagh\";a:3:{s:5:\"label\";s:18:\"Noto Sans Tifinagh\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Tirhuta\";a:3:{s:5:\"label\";s:17:\"Noto Sans Tirhuta\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Ugaritic\";a:3:{s:5:\"label\";s:18:\"Noto Sans Ugaritic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Noto Sans Vai\";a:3:{s:5:\"label\";s:13:\"Noto Sans Vai\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Wancho\";a:3:{s:5:\"label\";s:16:\"Noto Sans Wancho\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Noto Sans Warang Citi\";a:3:{s:5:\"label\";s:21:\"Noto Sans Warang Citi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Noto Sans Yi\";a:3:{s:5:\"label\";s:12:\"Noto Sans Yi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:26:\"Noto Sans Zanabazar Square\";a:3:{s:5:\"label\";s:26:\"Noto Sans Zanabazar Square\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Noto Serif\";a:3:{s:5:\"label\";s:10:\"Noto Serif\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Noto Serif Ahom\";a:3:{s:5:\"label\";s:15:\"Noto Serif Ahom\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"Noto Serif Armenian\";a:3:{s:5:\"label\";s:19:\"Noto Serif Armenian\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"Noto Serif Balinese\";a:3:{s:5:\"label\";s:19:\"Noto Serif Balinese\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Noto Serif Bengali\";a:3:{s:5:\"label\";s:18:\"Noto Serif Bengali\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:21:\"Noto Serif Devanagari\";a:3:{s:5:\"label\";s:21:\"Noto Serif Devanagari\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Noto Serif Display\";a:3:{s:5:\"label\";s:18:\"Noto Serif Display\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Noto Serif Dogra\";a:3:{s:5:\"label\";s:16:\"Noto Serif Dogra\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"Noto Serif Ethiopic\";a:3:{s:5:\"label\";s:19:\"Noto Serif Ethiopic\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"Noto Serif Georgian\";a:3:{s:5:\"label\";s:19:\"Noto Serif Georgian\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Noto Serif Grantha\";a:3:{s:5:\"label\";s:18:\"Noto Serif Grantha\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"Noto Serif Gujarati\";a:3:{s:5:\"label\";s:19:\"Noto Serif Gujarati\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"Noto Serif Gurmukhi\";a:3:{s:5:\"label\";s:19:\"Noto Serif Gurmukhi\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Noto Serif HK\";a:3:{s:5:\"label\";s:13:\"Noto Serif HK\";s:8:\"variants\";a:8:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Noto Serif Hebrew\";a:3:{s:5:\"label\";s:17:\"Noto Serif Hebrew\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Noto Serif JP\";a:3:{s:5:\"label\";s:13:\"Noto Serif JP\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Noto Serif KR\";a:3:{s:5:\"label\";s:13:\"Noto Serif KR\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Noto Serif Kannada\";a:3:{s:5:\"label\";s:18:\"Noto Serif Kannada\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Noto Serif Khmer\";a:3:{s:5:\"label\";s:16:\"Noto Serif Khmer\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Noto Serif Khojki\";a:3:{s:5:\"label\";s:17:\"Noto Serif Khojki\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Noto Serif Lao\";a:3:{s:5:\"label\";s:14:\"Noto Serif Lao\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"Noto Serif Malayalam\";a:3:{s:5:\"label\";s:20:\"Noto Serif Malayalam\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Noto Serif Myanmar\";a:3:{s:5:\"label\";s:18:\"Noto Serif Myanmar\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"Noto Serif NP Hmong\";a:3:{s:5:\"label\";s:19:\"Noto Serif NP Hmong\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Noto Serif Oriya\";a:3:{s:5:\"label\";s:16:\"Noto Serif Oriya\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Noto Serif SC\";a:3:{s:5:\"label\";s:13:\"Noto Serif SC\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Noto Serif Sinhala\";a:3:{s:5:\"label\";s:18:\"Noto Serif Sinhala\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Noto Serif TC\";a:3:{s:5:\"label\";s:13:\"Noto Serif TC\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Noto Serif Tamil\";a:3:{s:5:\"label\";s:16:\"Noto Serif Tamil\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Noto Serif Tangut\";a:3:{s:5:\"label\";s:17:\"Noto Serif Tangut\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Noto Serif Telugu\";a:3:{s:5:\"label\";s:17:\"Noto Serif Telugu\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Noto Serif Thai\";a:3:{s:5:\"label\";s:15:\"Noto Serif Thai\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Noto Serif Tibetan\";a:3:{s:5:\"label\";s:18:\"Noto Serif Tibetan\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Noto Serif Toto\";a:3:{s:5:\"label\";s:15:\"Noto Serif Toto\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Noto Serif Yezidi\";a:3:{s:5:\"label\";s:17:\"Noto Serif Yezidi\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:22:\"Noto Traditional Nushu\";a:3:{s:5:\"label\";s:22:\"Noto Traditional Nushu\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Nova Cut\";a:3:{s:5:\"label\";s:8:\"Nova Cut\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Nova Flat\";a:3:{s:5:\"label\";s:9:\"Nova Flat\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Nova Mono\";a:3:{s:5:\"label\";s:9:\"Nova Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:9:\"Nova Oval\";a:3:{s:5:\"label\";s:9:\"Nova Oval\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Nova Round\";a:3:{s:5:\"label\";s:10:\"Nova Round\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Nova Script\";a:3:{s:5:\"label\";s:11:\"Nova Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Nova Slim\";a:3:{s:5:\"label\";s:9:\"Nova Slim\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Nova Square\";a:3:{s:5:\"label\";s:11:\"Nova Square\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Numans\";a:3:{s:5:\"label\";s:6:\"Numans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Nunito\";a:3:{s:5:\"label\";s:6:\"Nunito\";s:8:\"variants\";a:16:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Nunito Sans\";a:3:{s:5:\"label\";s:11:\"Nunito Sans\";s:8:\"variants\";a:16:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Nuosu SIL\";a:3:{s:5:\"label\";s:9:\"Nuosu SIL\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Odibee Sans\";a:3:{s:5:\"label\";s:11:\"Odibee Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Odor Mean Chey\";a:3:{s:5:\"label\";s:14:\"Odor Mean Chey\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Offside\";a:3:{s:5:\"label\";s:7:\"Offside\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:2:\"Oi\";a:3:{s:5:\"label\";s:2:\"Oi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Old Standard TT\";a:3:{s:5:\"label\";s:15:\"Old Standard TT\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Oldenburg\";a:3:{s:5:\"label\";s:9:\"Oldenburg\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:3:\"Ole\";a:3:{s:5:\"label\";s:3:\"Ole\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:11:\"Oleo Script\";a:3:{s:5:\"label\";s:11:\"Oleo Script\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:22:\"Oleo Script Swash Caps\";a:3:{s:5:\"label\";s:22:\"Oleo Script Swash Caps\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Oooh Baby\";a:3:{s:5:\"label\";s:9:\"Oooh Baby\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Open Sans\";a:3:{s:5:\"label\";s:9:\"Open Sans\";s:8:\"variants\";a:12:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Oranienbaum\";a:3:{s:5:\"label\";s:11:\"Oranienbaum\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Orbit\";a:3:{s:5:\"label\";s:5:\"Orbit\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Orbitron\";a:3:{s:5:\"label\";s:8:\"Orbitron\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Oregano\";a:3:{s:5:\"label\";s:7:\"Oregano\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Orelega One\";a:3:{s:5:\"label\";s:11:\"Orelega One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Orienta\";a:3:{s:5:\"label\";s:7:\"Orienta\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Original Surfer\";a:3:{s:5:\"label\";s:15:\"Original Surfer\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Oswald\";a:3:{s:5:\"label\";s:6:\"Oswald\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Outfit\";a:3:{s:5:\"label\";s:6:\"Outfit\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Over the Rainbow\";a:3:{s:5:\"label\";s:16:\"Over the Rainbow\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Overlock\";a:3:{s:5:\"label\";s:8:\"Overlock\";s:8:\"variants\";a:6:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:3:\"900\";i:3;s:9:\"900italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Overlock SC\";a:3:{s:5:\"label\";s:11:\"Overlock SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Overpass\";a:3:{s:5:\"label\";s:8:\"Overpass\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Overpass Mono\";a:3:{s:5:\"label\";s:13:\"Overpass Mono\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:3:\"Ovo\";a:3:{s:5:\"label\";s:3:\"Ovo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Oxanium\";a:3:{s:5:\"label\";s:7:\"Oxanium\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Oxygen\";a:3:{s:5:\"label\";s:6:\"Oxygen\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Oxygen Mono\";a:3:{s:5:\"label\";s:11:\"Oxygen Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:7:\"PT Mono\";a:3:{s:5:\"label\";s:7:\"PT Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:7:\"PT Sans\";a:3:{s:5:\"label\";s:7:\"PT Sans\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"PT Sans Caption\";a:3:{s:5:\"label\";s:15:\"PT Sans Caption\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"PT Sans Narrow\";a:3:{s:5:\"label\";s:14:\"PT Sans Narrow\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"PT Serif\";a:3:{s:5:\"label\";s:8:\"PT Serif\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"PT Serif Caption\";a:3:{s:5:\"label\";s:16:\"PT Serif Caption\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Pacifico\";a:3:{s:5:\"label\";s:8:\"Pacifico\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Padauk\";a:3:{s:5:\"label\";s:6:\"Padauk\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Padyakke Expanded One\";a:3:{s:5:\"label\";s:21:\"Padyakke Expanded One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Palanquin\";a:3:{s:5:\"label\";s:9:\"Palanquin\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Palanquin Dark\";a:3:{s:5:\"label\";s:14:\"Palanquin Dark\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Palette Mosaic\";a:3:{s:5:\"label\";s:14:\"Palette Mosaic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Pangolin\";a:3:{s:5:\"label\";s:8:\"Pangolin\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Paprika\";a:3:{s:5:\"label\";s:7:\"Paprika\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Parisienne\";a:3:{s:5:\"label\";s:10:\"Parisienne\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:11:\"Passero One\";a:3:{s:5:\"label\";s:11:\"Passero One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Passion One\";a:3:{s:5:\"label\";s:11:\"Passion One\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"900\";i:2;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:17:\"Passions Conflict\";a:3:{s:5:\"label\";s:17:\"Passions Conflict\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Pathway Extreme\";a:3:{s:5:\"label\";s:15:\"Pathway Extreme\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Pathway Gothic One\";a:3:{s:5:\"label\";s:18:\"Pathway Gothic One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Patrick Hand\";a:3:{s:5:\"label\";s:12:\"Patrick Hand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Patrick Hand SC\";a:3:{s:5:\"label\";s:15:\"Patrick Hand SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Pattaya\";a:3:{s:5:\"label\";s:7:\"Pattaya\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Patua One\";a:3:{s:5:\"label\";s:9:\"Patua One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Pavanam\";a:3:{s:5:\"label\";s:7:\"Pavanam\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Paytone One\";a:3:{s:5:\"label\";s:11:\"Paytone One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Peddana\";a:3:{s:5:\"label\";s:7:\"Peddana\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Peralta\";a:3:{s:5:\"label\";s:7:\"Peralta\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Permanent Marker\";a:3:{s:5:\"label\";s:16:\"Permanent Marker\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Petemoss\";a:3:{s:5:\"label\";s:8:\"Petemoss\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:19:\"Petit Formal Script\";a:3:{s:5:\"label\";s:19:\"Petit Formal Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Petrona\";a:3:{s:5:\"label\";s:7:\"Petrona\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Philosopher\";a:3:{s:5:\"label\";s:11:\"Philosopher\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Phudu\";a:3:{s:5:\"label\";s:5:\"Phudu\";s:8:\"variants\";a:7:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Piazzolla\";a:3:{s:5:\"label\";s:9:\"Piazzolla\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Piedra\";a:3:{s:5:\"label\";s:6:\"Piedra\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Pinyon Script\";a:3:{s:5:\"label\";s:13:\"Pinyon Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Pirata One\";a:3:{s:5:\"label\";s:10:\"Pirata One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Plaster\";a:3:{s:5:\"label\";s:7:\"Plaster\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Play\";a:3:{s:5:\"label\";s:4:\"Play\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Playball\";a:3:{s:5:\"label\";s:8:\"Playball\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Playfair\";a:3:{s:5:\"label\";s:8:\"Playfair\";s:8:\"variants\";a:14:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:3:\"900\";i:11;s:9:\"900italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Playfair Display\";a:3:{s:5:\"label\";s:16:\"Playfair Display\";s:8:\"variants\";a:12:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"Playfair Display SC\";a:3:{s:5:\"label\";s:19:\"Playfair Display SC\";s:8:\"variants\";a:6:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:3:\"900\";i:3;s:9:\"900italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Plus Jakarta Sans\";a:3:{s:5:\"label\";s:17:\"Plus Jakarta Sans\";s:8:\"variants\";a:14:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Podkova\";a:3:{s:5:\"label\";s:7:\"Podkova\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Poiret One\";a:3:{s:5:\"label\";s:10:\"Poiret One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Poller One\";a:3:{s:5:\"label\";s:10:\"Poller One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Poltawski Nowy\";a:3:{s:5:\"label\";s:14:\"Poltawski Nowy\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Poly\";a:3:{s:5:\"label\";s:4:\"Poly\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Pompiere\";a:3:{s:5:\"label\";s:8:\"Pompiere\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Pontano Sans\";a:3:{s:5:\"label\";s:12:\"Pontano Sans\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Poor Story\";a:3:{s:5:\"label\";s:10:\"Poor Story\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Poppins\";a:3:{s:5:\"label\";s:7:\"Poppins\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Port Lligat Sans\";a:3:{s:5:\"label\";s:16:\"Port Lligat Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Port Lligat Slab\";a:3:{s:5:\"label\";s:16:\"Port Lligat Slab\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Potta One\";a:3:{s:5:\"label\";s:9:\"Potta One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Pragati Narrow\";a:3:{s:5:\"label\";s:14:\"Pragati Narrow\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Praise\";a:3:{s:5:\"label\";s:6:\"Praise\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Prata\";a:3:{s:5:\"label\";s:5:\"Prata\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Preahvihear\";a:3:{s:5:\"label\";s:11:\"Preahvihear\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Press Start 2P\";a:3:{s:5:\"label\";s:14:\"Press Start 2P\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Pridi\";a:3:{s:5:\"label\";s:5:\"Pridi\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Princess Sofia\";a:3:{s:5:\"label\";s:14:\"Princess Sofia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Prociono\";a:3:{s:5:\"label\";s:8:\"Prociono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Prompt\";a:3:{s:5:\"label\";s:6:\"Prompt\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Prosto One\";a:3:{s:5:\"label\";s:10:\"Prosto One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Proza Libre\";a:3:{s:5:\"label\";s:11:\"Proza Libre\";s:8:\"variants\";a:10:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Public Sans\";a:3:{s:5:\"label\";s:11:\"Public Sans\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Puppies Play\";a:3:{s:5:\"label\";s:12:\"Puppies Play\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Puritan\";a:3:{s:5:\"label\";s:7:\"Puritan\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Purple Purse\";a:3:{s:5:\"label\";s:12:\"Purple Purse\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Qahiri\";a:3:{s:5:\"label\";s:6:\"Qahiri\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Quando\";a:3:{s:5:\"label\";s:6:\"Quando\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Quantico\";a:3:{s:5:\"label\";s:8:\"Quantico\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Quattrocento\";a:3:{s:5:\"label\";s:12:\"Quattrocento\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Quattrocento Sans\";a:3:{s:5:\"label\";s:17:\"Quattrocento Sans\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Questrial\";a:3:{s:5:\"label\";s:9:\"Questrial\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Quicksand\";a:3:{s:5:\"label\";s:9:\"Quicksand\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Quintessential\";a:3:{s:5:\"label\";s:14:\"Quintessential\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Qwigley\";a:3:{s:5:\"label\";s:7:\"Qwigley\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Qwitcher Grypen\";a:3:{s:5:\"label\";s:15:\"Qwitcher Grypen\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Racing Sans One\";a:3:{s:5:\"label\";s:15:\"Racing Sans One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Radio Canada\";a:3:{s:5:\"label\";s:12:\"Radio Canada\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Radley\";a:3:{s:5:\"label\";s:6:\"Radley\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Rajdhani\";a:3:{s:5:\"label\";s:8:\"Rajdhani\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Rakkas\";a:3:{s:5:\"label\";s:6:\"Rakkas\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Raleway\";a:3:{s:5:\"label\";s:7:\"Raleway\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Raleway Dots\";a:3:{s:5:\"label\";s:12:\"Raleway Dots\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Ramabhadra\";a:3:{s:5:\"label\";s:10:\"Ramabhadra\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Ramaraja\";a:3:{s:5:\"label\";s:8:\"Ramaraja\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Rambla\";a:3:{s:5:\"label\";s:6:\"Rambla\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Rammetto One\";a:3:{s:5:\"label\";s:12:\"Rammetto One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Rampart One\";a:3:{s:5:\"label\";s:11:\"Rampart One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Ranchers\";a:3:{s:5:\"label\";s:8:\"Ranchers\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Rancho\";a:3:{s:5:\"label\";s:6:\"Rancho\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Ranga\";a:3:{s:5:\"label\";s:5:\"Ranga\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Rasa\";a:3:{s:5:\"label\";s:4:\"Rasa\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Rationale\";a:3:{s:5:\"label\";s:9:\"Rationale\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Ravi Prakash\";a:3:{s:5:\"label\";s:12:\"Ravi Prakash\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Readex Pro\";a:3:{s:5:\"label\";s:10:\"Readex Pro\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Recursive\";a:3:{s:5:\"label\";s:9:\"Recursive\";s:8:\"variants\";a:7:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Red Hat Display\";a:3:{s:5:\"label\";s:15:\"Red Hat Display\";s:8:\"variants\";a:14:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:3:\"900\";i:11;s:9:\"900italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Red Hat Mono\";a:3:{s:5:\"label\";s:12:\"Red Hat Mono\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:12:\"Red Hat Text\";a:3:{s:5:\"label\";s:12:\"Red Hat Text\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Red Rose\";a:3:{s:5:\"label\";s:8:\"Red Rose\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Redacted\";a:3:{s:5:\"label\";s:8:\"Redacted\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Redacted Script\";a:3:{s:5:\"label\";s:15:\"Redacted Script\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Redressed\";a:3:{s:5:\"label\";s:9:\"Redressed\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Reem Kufi\";a:3:{s:5:\"label\";s:9:\"Reem Kufi\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Reem Kufi Fun\";a:3:{s:5:\"label\";s:13:\"Reem Kufi Fun\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Reem Kufi Ink\";a:3:{s:5:\"label\";s:13:\"Reem Kufi Ink\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Reenie Beanie\";a:3:{s:5:\"label\";s:13:\"Reenie Beanie\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Reggae One\";a:3:{s:5:\"label\";s:10:\"Reggae One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Revalia\";a:3:{s:5:\"label\";s:7:\"Revalia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Rhodium Libre\";a:3:{s:5:\"label\";s:13:\"Rhodium Libre\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Ribeye\";a:3:{s:5:\"label\";s:6:\"Ribeye\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Ribeye Marrow\";a:3:{s:5:\"label\";s:13:\"Ribeye Marrow\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Righteous\";a:3:{s:5:\"label\";s:9:\"Righteous\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Risque\";a:3:{s:5:\"label\";s:6:\"Risque\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Road Rage\";a:3:{s:5:\"label\";s:9:\"Road Rage\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Roboto\";a:3:{s:5:\"label\";s:6:\"Roboto\";s:8:\"variants\";a:12:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Roboto Condensed\";a:3:{s:5:\"label\";s:16:\"Roboto Condensed\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Roboto Flex\";a:3:{s:5:\"label\";s:11:\"Roboto Flex\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Roboto Mono\";a:3:{s:5:\"label\";s:11:\"Roboto Mono\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:12:\"Roboto Serif\";a:3:{s:5:\"label\";s:12:\"Roboto Serif\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Roboto Slab\";a:3:{s:5:\"label\";s:11:\"Roboto Slab\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Rochester\";a:3:{s:5:\"label\";s:9:\"Rochester\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Rock 3D\";a:3:{s:5:\"label\";s:7:\"Rock 3D\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Rock Salt\";a:3:{s:5:\"label\";s:9:\"Rock Salt\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"RocknRoll One\";a:3:{s:5:\"label\";s:13:\"RocknRoll One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Rokkitt\";a:3:{s:5:\"label\";s:7:\"Rokkitt\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Romanesco\";a:3:{s:5:\"label\";s:9:\"Romanesco\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Ropa Sans\";a:3:{s:5:\"label\";s:9:\"Ropa Sans\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Rosario\";a:3:{s:5:\"label\";s:7:\"Rosario\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Rosarivo\";a:3:{s:5:\"label\";s:8:\"Rosarivo\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Rouge Script\";a:3:{s:5:\"label\";s:12:\"Rouge Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Rowdies\";a:3:{s:5:\"label\";s:7:\"Rowdies\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Rozha One\";a:3:{s:5:\"label\";s:9:\"Rozha One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Rubik\";a:3:{s:5:\"label\";s:5:\"Rubik\";s:8:\"variants\";a:14:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:3:\"900\";i:11;s:9:\"900italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Rubik 80s Fade\";a:3:{s:5:\"label\";s:14:\"Rubik 80s Fade\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Rubik Beastly\";a:3:{s:5:\"label\";s:13:\"Rubik Beastly\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Rubik Bubbles\";a:3:{s:5:\"label\";s:13:\"Rubik Bubbles\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Rubik Burned\";a:3:{s:5:\"label\";s:12:\"Rubik Burned\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Rubik Dirt\";a:3:{s:5:\"label\";s:10:\"Rubik Dirt\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Rubik Distressed\";a:3:{s:5:\"label\";s:16:\"Rubik Distressed\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Rubik Gemstones\";a:3:{s:5:\"label\";s:15:\"Rubik Gemstones\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Rubik Glitch\";a:3:{s:5:\"label\";s:12:\"Rubik Glitch\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Rubik Iso\";a:3:{s:5:\"label\";s:9:\"Rubik Iso\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:18:\"Rubik Marker Hatch\";a:3:{s:5:\"label\";s:18:\"Rubik Marker Hatch\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Rubik Maze\";a:3:{s:5:\"label\";s:10:\"Rubik Maze\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Rubik Microbe\";a:3:{s:5:\"label\";s:13:\"Rubik Microbe\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Rubik Mono One\";a:3:{s:5:\"label\";s:14:\"Rubik Mono One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Rubik Moonrocks\";a:3:{s:5:\"label\";s:15:\"Rubik Moonrocks\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Rubik Pixels\";a:3:{s:5:\"label\";s:12:\"Rubik Pixels\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Rubik Puddles\";a:3:{s:5:\"label\";s:13:\"Rubik Puddles\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:17:\"Rubik Spray Paint\";a:3:{s:5:\"label\";s:17:\"Rubik Spray Paint\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Rubik Storm\";a:3:{s:5:\"label\";s:11:\"Rubik Storm\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Rubik Vinyl\";a:3:{s:5:\"label\";s:11:\"Rubik Vinyl\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Rubik Wet Paint\";a:3:{s:5:\"label\";s:15:\"Rubik Wet Paint\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Ruda\";a:3:{s:5:\"label\";s:4:\"Ruda\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Rufina\";a:3:{s:5:\"label\";s:6:\"Rufina\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Ruge Boogie\";a:3:{s:5:\"label\";s:11:\"Ruge Boogie\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Ruluko\";a:3:{s:5:\"label\";s:6:\"Ruluko\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Rum Raisin\";a:3:{s:5:\"label\";s:10:\"Rum Raisin\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Ruslan Display\";a:3:{s:5:\"label\";s:14:\"Ruslan Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Russo One\";a:3:{s:5:\"label\";s:9:\"Russo One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Ruthie\";a:3:{s:5:\"label\";s:6:\"Ruthie\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:3:\"Rye\";a:3:{s:5:\"label\";s:3:\"Rye\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"STIX Two Text\";a:3:{s:5:\"label\";s:13:\"STIX Two Text\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Sacramento\";a:3:{s:5:\"label\";s:10:\"Sacramento\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Sahitya\";a:3:{s:5:\"label\";s:7:\"Sahitya\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Sail\";a:3:{s:5:\"label\";s:4:\"Sail\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Saira\";a:3:{s:5:\"label\";s:5:\"Saira\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Saira Condensed\";a:3:{s:5:\"label\";s:15:\"Saira Condensed\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Saira Extra Condensed\";a:3:{s:5:\"label\";s:21:\"Saira Extra Condensed\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Saira Semi Condensed\";a:3:{s:5:\"label\";s:20:\"Saira Semi Condensed\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Saira Stencil One\";a:3:{s:5:\"label\";s:17:\"Saira Stencil One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Salsa\";a:3:{s:5:\"label\";s:5:\"Salsa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Sanchez\";a:3:{s:5:\"label\";s:7:\"Sanchez\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Sancreek\";a:3:{s:5:\"label\";s:8:\"Sancreek\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Sansita\";a:3:{s:5:\"label\";s:7:\"Sansita\";s:8:\"variants\";a:8:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:3:\"800\";i:3;s:9:\"800italic\";i:4;s:3:\"900\";i:5;s:9:\"900italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Sansita Swashed\";a:3:{s:5:\"label\";s:15:\"Sansita Swashed\";s:8:\"variants\";a:7:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Sarabun\";a:3:{s:5:\"label\";s:7:\"Sarabun\";s:8:\"variants\";a:16:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Sarala\";a:3:{s:5:\"label\";s:6:\"Sarala\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Sarina\";a:3:{s:5:\"label\";s:6:\"Sarina\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Sarpanch\";a:3:{s:5:\"label\";s:8:\"Sarpanch\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Sassy Frass\";a:3:{s:5:\"label\";s:11:\"Sassy Frass\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Satisfy\";a:3:{s:5:\"label\";s:7:\"Satisfy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Sawarabi Gothic\";a:3:{s:5:\"label\";s:15:\"Sawarabi Gothic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Sawarabi Mincho\";a:3:{s:5:\"label\";s:15:\"Sawarabi Mincho\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Scada\";a:3:{s:5:\"label\";s:5:\"Scada\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Scheherazade New\";a:3:{s:5:\"label\";s:16:\"Scheherazade New\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Schibsted Grotesk\";a:3:{s:5:\"label\";s:17:\"Schibsted Grotesk\";s:8:\"variants\";a:12:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Schoolbell\";a:3:{s:5:\"label\";s:10:\"Schoolbell\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Scope One\";a:3:{s:5:\"label\";s:9:\"Scope One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Seaweed Script\";a:3:{s:5:\"label\";s:14:\"Seaweed Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Secular One\";a:3:{s:5:\"label\";s:11:\"Secular One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Sedgwick Ave\";a:3:{s:5:\"label\";s:12:\"Sedgwick Ave\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:20:\"Sedgwick Ave Display\";a:3:{s:5:\"label\";s:20:\"Sedgwick Ave Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:3:\"Sen\";a:3:{s:5:\"label\";s:3:\"Sen\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"800\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Send Flowers\";a:3:{s:5:\"label\";s:12:\"Send Flowers\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Sevillana\";a:3:{s:5:\"label\";s:9:\"Sevillana\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Seymour One\";a:3:{s:5:\"label\";s:11:\"Seymour One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Shadows Into Light\";a:3:{s:5:\"label\";s:18:\"Shadows Into Light\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:22:\"Shadows Into Light Two\";a:3:{s:5:\"label\";s:22:\"Shadows Into Light Two\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Shalimar\";a:3:{s:5:\"label\";s:8:\"Shalimar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Shantell Sans\";a:3:{s:5:\"label\";s:13:\"Shantell Sans\";s:8:\"variants\";a:12:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Shanti\";a:3:{s:5:\"label\";s:6:\"Shanti\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Share\";a:3:{s:5:\"label\";s:5:\"Share\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Share Tech\";a:3:{s:5:\"label\";s:10:\"Share Tech\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Share Tech Mono\";a:3:{s:5:\"label\";s:15:\"Share Tech Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:16:\"Shippori Antique\";a:3:{s:5:\"label\";s:16:\"Shippori Antique\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Shippori Antique B1\";a:3:{s:5:\"label\";s:19:\"Shippori Antique B1\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Shippori Mincho\";a:3:{s:5:\"label\";s:15:\"Shippori Mincho\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Shippori Mincho B1\";a:3:{s:5:\"label\";s:18:\"Shippori Mincho B1\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Shizuru\";a:3:{s:5:\"label\";s:7:\"Shizuru\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Shojumaru\";a:3:{s:5:\"label\";s:9:\"Shojumaru\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Short Stack\";a:3:{s:5:\"label\";s:11:\"Short Stack\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Shrikhand\";a:3:{s:5:\"label\";s:9:\"Shrikhand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Siemreap\";a:3:{s:5:\"label\";s:8:\"Siemreap\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Sigmar\";a:3:{s:5:\"label\";s:6:\"Sigmar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Sigmar One\";a:3:{s:5:\"label\";s:10:\"Sigmar One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Signika\";a:3:{s:5:\"label\";s:7:\"Signika\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Signika Negative\";a:3:{s:5:\"label\";s:16:\"Signika Negative\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Silkscreen\";a:3:{s:5:\"label\";s:10:\"Silkscreen\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Simonetta\";a:3:{s:5:\"label\";s:9:\"Simonetta\";s:8:\"variants\";a:4:{i:0;s:3:\"900\";i:1;s:9:\"900italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Single Day\";a:3:{s:5:\"label\";s:10:\"Single Day\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Sintony\";a:3:{s:5:\"label\";s:7:\"Sintony\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Sirin Stencil\";a:3:{s:5:\"label\";s:13:\"Sirin Stencil\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Six Caps\";a:3:{s:5:\"label\";s:8:\"Six Caps\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Skranji\";a:3:{s:5:\"label\";s:7:\"Skranji\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Slabo 13px\";a:3:{s:5:\"label\";s:10:\"Slabo 13px\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Slabo 27px\";a:3:{s:5:\"label\";s:10:\"Slabo 27px\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Slackey\";a:3:{s:5:\"label\";s:7:\"Slackey\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Slackside One\";a:3:{s:5:\"label\";s:13:\"Slackside One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Smokum\";a:3:{s:5:\"label\";s:6:\"Smokum\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Smooch\";a:3:{s:5:\"label\";s:6:\"Smooch\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:11:\"Smooch Sans\";a:3:{s:5:\"label\";s:11:\"Smooch Sans\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Smythe\";a:3:{s:5:\"label\";s:6:\"Smythe\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Sniglet\";a:3:{s:5:\"label\";s:7:\"Sniglet\";s:8:\"variants\";a:2:{i:0;s:3:\"800\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Snippet\";a:3:{s:5:\"label\";s:7:\"Snippet\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Snowburst One\";a:3:{s:5:\"label\";s:13:\"Snowburst One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Sofadi One\";a:3:{s:5:\"label\";s:10:\"Sofadi One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Sofia\";a:3:{s:5:\"label\";s:5:\"Sofia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Sofia Sans\";a:3:{s:5:\"label\";s:10:\"Sofia Sans\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Sofia Sans Condensed\";a:3:{s:5:\"label\";s:20:\"Sofia Sans Condensed\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:26:\"Sofia Sans Extra Condensed\";a:3:{s:5:\"label\";s:26:\"Sofia Sans Extra Condensed\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:25:\"Sofia Sans Semi Condensed\";a:3:{s:5:\"label\";s:25:\"Sofia Sans Semi Condensed\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Solitreo\";a:3:{s:5:\"label\";s:8:\"Solitreo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Solway\";a:3:{s:5:\"label\";s:6:\"Solway\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Song Myung\";a:3:{s:5:\"label\";s:10:\"Song Myung\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Sono\";a:3:{s:5:\"label\";s:4:\"Sono\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Sonsie One\";a:3:{s:5:\"label\";s:10:\"Sonsie One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Sora\";a:3:{s:5:\"label\";s:4:\"Sora\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Sorts Mill Goudy\";a:3:{s:5:\"label\";s:16:\"Sorts Mill Goudy\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Source Code Pro\";a:3:{s:5:\"label\";s:15:\"Source Code Pro\";s:8:\"variants\";a:16:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:13:\"Source Sans 3\";a:3:{s:5:\"label\";s:13:\"Source Sans 3\";s:8:\"variants\";a:16:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Source Serif 4\";a:3:{s:5:\"label\";s:14:\"Source Serif 4\";s:8:\"variants\";a:16:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Space Grotesk\";a:3:{s:5:\"label\";s:13:\"Space Grotesk\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Space Mono\";a:3:{s:5:\"label\";s:10:\"Space Mono\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:13:\"Special Elite\";a:3:{s:5:\"label\";s:13:\"Special Elite\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Spectral\";a:3:{s:5:\"label\";s:8:\"Spectral\";s:8:\"variants\";a:14:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Spectral SC\";a:3:{s:5:\"label\";s:11:\"Spectral SC\";s:8:\"variants\";a:14:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Spicy Rice\";a:3:{s:5:\"label\";s:10:\"Spicy Rice\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Spinnaker\";a:3:{s:5:\"label\";s:9:\"Spinnaker\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Spirax\";a:3:{s:5:\"label\";s:6:\"Spirax\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Splash\";a:3:{s:5:\"label\";s:6:\"Splash\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:11:\"Spline Sans\";a:3:{s:5:\"label\";s:11:\"Spline Sans\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Spline Sans Mono\";a:3:{s:5:\"label\";s:16:\"Spline Sans Mono\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:10:\"Squada One\";a:3:{s:5:\"label\";s:10:\"Squada One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Square Peg\";a:3:{s:5:\"label\";s:10:\"Square Peg\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:20:\"Sree Krushnadevaraya\";a:3:{s:5:\"label\";s:20:\"Sree Krushnadevaraya\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Sriracha\";a:3:{s:5:\"label\";s:8:\"Sriracha\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Srisakdi\";a:3:{s:5:\"label\";s:8:\"Srisakdi\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Staatliches\";a:3:{s:5:\"label\";s:11:\"Staatliches\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Stalemate\";a:3:{s:5:\"label\";s:9:\"Stalemate\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Stalinist One\";a:3:{s:5:\"label\";s:13:\"Stalinist One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Stardos Stencil\";a:3:{s:5:\"label\";s:15:\"Stardos Stencil\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Stick\";a:3:{s:5:\"label\";s:5:\"Stick\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Stick No Bills\";a:3:{s:5:\"label\";s:14:\"Stick No Bills\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Stint Ultra Condensed\";a:3:{s:5:\"label\";s:21:\"Stint Ultra Condensed\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:20:\"Stint Ultra Expanded\";a:3:{s:5:\"label\";s:20:\"Stint Ultra Expanded\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Stoke\";a:3:{s:5:\"label\";s:5:\"Stoke\";s:8:\"variants\";a:2:{i:0;s:3:\"300\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Strait\";a:3:{s:5:\"label\";s:6:\"Strait\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Style Script\";a:3:{s:5:\"label\";s:12:\"Style Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Stylish\";a:3:{s:5:\"label\";s:7:\"Stylish\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Sue Ellen Francisco\";a:3:{s:5:\"label\";s:19:\"Sue Ellen Francisco\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Suez One\";a:3:{s:5:\"label\";s:8:\"Suez One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Sulphur Point\";a:3:{s:5:\"label\";s:13:\"Sulphur Point\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Sumana\";a:3:{s:5:\"label\";s:6:\"Sumana\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Sunflower\";a:3:{s:5:\"label\";s:9:\"Sunflower\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"700\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Sunshiney\";a:3:{s:5:\"label\";s:9:\"Sunshiney\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:16:\"Supermercado One\";a:3:{s:5:\"label\";s:16:\"Supermercado One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Sura\";a:3:{s:5:\"label\";s:4:\"Sura\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Suranna\";a:3:{s:5:\"label\";s:7:\"Suranna\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Suravaram\";a:3:{s:5:\"label\";s:9:\"Suravaram\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Suwannaphum\";a:3:{s:5:\"label\";s:11:\"Suwannaphum\";s:8:\"variants\";a:5:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"900\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Swanky and Moo Moo\";a:3:{s:5:\"label\";s:18:\"Swanky and Moo Moo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Syncopate\";a:3:{s:5:\"label\";s:9:\"Syncopate\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Syne\";a:3:{s:5:\"label\";s:4:\"Syne\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Syne Mono\";a:3:{s:5:\"label\";s:9:\"Syne Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:12:\"Syne Tactile\";a:3:{s:5:\"label\";s:12:\"Syne Tactile\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Tai Heritage Pro\";a:3:{s:5:\"label\";s:16:\"Tai Heritage Pro\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Tajawal\";a:3:{s:5:\"label\";s:7:\"Tajawal\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Tangerine\";a:3:{s:5:\"label\";s:9:\"Tangerine\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Tapestry\";a:3:{s:5:\"label\";s:8:\"Tapestry\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Taprom\";a:3:{s:5:\"label\";s:6:\"Taprom\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Tauri\";a:3:{s:5:\"label\";s:5:\"Tauri\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Taviraj\";a:3:{s:5:\"label\";s:7:\"Taviraj\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Teko\";a:3:{s:5:\"label\";s:4:\"Teko\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Telex\";a:3:{s:5:\"label\";s:5:\"Telex\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Tenali Ramakrishna\";a:3:{s:5:\"label\";s:18:\"Tenali Ramakrishna\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Tenor Sans\";a:3:{s:5:\"label\";s:10:\"Tenor Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Text Me One\";a:3:{s:5:\"label\";s:11:\"Text Me One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Texturina\";a:3:{s:5:\"label\";s:9:\"Texturina\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Thasadith\";a:3:{s:5:\"label\";s:9:\"Thasadith\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"The Girl Next Door\";a:3:{s:5:\"label\";s:18:\"The Girl Next Door\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"The Nautigal\";a:3:{s:5:\"label\";s:12:\"The Nautigal\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Tienne\";a:3:{s:5:\"label\";s:6:\"Tienne\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"900\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Tillana\";a:3:{s:5:\"label\";s:7:\"Tillana\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Tilt Neon\";a:3:{s:5:\"label\";s:9:\"Tilt Neon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Tilt Prism\";a:3:{s:5:\"label\";s:10:\"Tilt Prism\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Tilt Warp\";a:3:{s:5:\"label\";s:9:\"Tilt Warp\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Timmana\";a:3:{s:5:\"label\";s:7:\"Timmana\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Tinos\";a:3:{s:5:\"label\";s:5:\"Tinos\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Tiro Bangla\";a:3:{s:5:\"label\";s:11:\"Tiro Bangla\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:21:\"Tiro Devanagari Hindi\";a:3:{s:5:\"label\";s:21:\"Tiro Devanagari Hindi\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:23:\"Tiro Devanagari Marathi\";a:3:{s:5:\"label\";s:23:\"Tiro Devanagari Marathi\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:24:\"Tiro Devanagari Sanskrit\";a:3:{s:5:\"label\";s:24:\"Tiro Devanagari Sanskrit\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Tiro Gurmukhi\";a:3:{s:5:\"label\";s:13:\"Tiro Gurmukhi\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Tiro Kannada\";a:3:{s:5:\"label\";s:12:\"Tiro Kannada\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Tiro Tamil\";a:3:{s:5:\"label\";s:10:\"Tiro Tamil\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Tiro Telugu\";a:3:{s:5:\"label\";s:11:\"Tiro Telugu\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Titan One\";a:3:{s:5:\"label\";s:9:\"Titan One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Titillium Web\";a:3:{s:5:\"label\";s:13:\"Titillium Web\";s:8:\"variants\";a:11:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"900\";i:9;s:6:\"italic\";i:10;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Tomorrow\";a:3:{s:5:\"label\";s:8:\"Tomorrow\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Tourney\";a:3:{s:5:\"label\";s:7:\"Tourney\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Trade Winds\";a:3:{s:5:\"label\";s:11:\"Trade Winds\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Train One\";a:3:{s:5:\"label\";s:9:\"Train One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Trirong\";a:3:{s:5:\"label\";s:7:\"Trirong\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Trispace\";a:3:{s:5:\"label\";s:8:\"Trispace\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Trocchi\";a:3:{s:5:\"label\";s:7:\"Trocchi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Trochut\";a:3:{s:5:\"label\";s:7:\"Trochut\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Truculenta\";a:3:{s:5:\"label\";s:10:\"Truculenta\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Trykker\";a:3:{s:5:\"label\";s:7:\"Trykker\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Tsukimi Rounded\";a:3:{s:5:\"label\";s:15:\"Tsukimi Rounded\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Tulpen One\";a:3:{s:5:\"label\";s:10:\"Tulpen One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Turret Road\";a:3:{s:5:\"label\";s:11:\"Turret Road\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Twinkle Star\";a:3:{s:5:\"label\";s:12:\"Twinkle Star\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Ubuntu\";a:3:{s:5:\"label\";s:6:\"Ubuntu\";s:8:\"variants\";a:8:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Ubuntu Condensed\";a:3:{s:5:\"label\";s:16:\"Ubuntu Condensed\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Ubuntu Mono\";a:3:{s:5:\"label\";s:11:\"Ubuntu Mono\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:5:\"Uchen\";a:3:{s:5:\"label\";s:5:\"Uchen\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Ultra\";a:3:{s:5:\"label\";s:5:\"Ultra\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Unbounded\";a:3:{s:5:\"label\";s:9:\"Unbounded\";s:8:\"variants\";a:8:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";i:7;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Uncial Antiqua\";a:3:{s:5:\"label\";s:14:\"Uncial Antiqua\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Underdog\";a:3:{s:5:\"label\";s:8:\"Underdog\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Unica One\";a:3:{s:5:\"label\";s:9:\"Unica One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"UnifrakturCook\";a:3:{s:5:\"label\";s:14:\"UnifrakturCook\";s:8:\"variants\";a:1:{i:0;s:3:\"700\";}s:8:\"category\";s:7:\"display\";}s:18:\"UnifrakturMaguntia\";a:3:{s:5:\"label\";s:18:\"UnifrakturMaguntia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Unkempt\";a:3:{s:5:\"label\";s:7:\"Unkempt\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Unlock\";a:3:{s:5:\"label\";s:6:\"Unlock\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Unna\";a:3:{s:5:\"label\";s:4:\"Unna\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Updock\";a:3:{s:5:\"label\";s:6:\"Updock\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Urbanist\";a:3:{s:5:\"label\";s:8:\"Urbanist\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"VT323\";a:3:{s:5:\"label\";s:5:\"VT323\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:11:\"Vampiro One\";a:3:{s:5:\"label\";s:11:\"Vampiro One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Varela\";a:3:{s:5:\"label\";s:6:\"Varela\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Varela Round\";a:3:{s:5:\"label\";s:12:\"Varela Round\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Varta\";a:3:{s:5:\"label\";s:5:\"Varta\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Vast Shadow\";a:3:{s:5:\"label\";s:11:\"Vast Shadow\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Vazirmatn\";a:3:{s:5:\"label\";s:9:\"Vazirmatn\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Vesper Libre\";a:3:{s:5:\"label\";s:12:\"Vesper Libre\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"700\";i:2;s:3:\"900\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Viaoda Libre\";a:3:{s:5:\"label\";s:12:\"Viaoda Libre\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Vibes\";a:3:{s:5:\"label\";s:5:\"Vibes\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Vibur\";a:3:{s:5:\"label\";s:5:\"Vibur\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Vidaloka\";a:3:{s:5:\"label\";s:8:\"Vidaloka\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Viga\";a:3:{s:5:\"label\";s:4:\"Viga\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Vina Sans\";a:3:{s:5:\"label\";s:9:\"Vina Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Voces\";a:3:{s:5:\"label\";s:5:\"Voces\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Volkhov\";a:3:{s:5:\"label\";s:7:\"Volkhov\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Vollkorn\";a:3:{s:5:\"label\";s:8:\"Vollkorn\";s:8:\"variants\";a:12:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Vollkorn SC\";a:3:{s:5:\"label\";s:11:\"Vollkorn SC\";s:8:\"variants\";a:4:{i:0;s:3:\"600\";i:1;s:3:\"700\";i:2;s:3:\"900\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Voltaire\";a:3:{s:5:\"label\";s:8:\"Voltaire\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Vujahday Script\";a:3:{s:5:\"label\";s:15:\"Vujahday Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:23:\"Waiting for the Sunrise\";a:3:{s:5:\"label\";s:23:\"Waiting for the Sunrise\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Wallpoet\";a:3:{s:5:\"label\";s:8:\"Wallpoet\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Walter Turncoat\";a:3:{s:5:\"label\";s:15:\"Walter Turncoat\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Warnes\";a:3:{s:5:\"label\";s:6:\"Warnes\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Water Brush\";a:3:{s:5:\"label\";s:11:\"Water Brush\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Waterfall\";a:3:{s:5:\"label\";s:9:\"Waterfall\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Wellfleet\";a:3:{s:5:\"label\";s:9:\"Wellfleet\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Wendy One\";a:3:{s:5:\"label\";s:9:\"Wendy One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Whisper\";a:3:{s:5:\"label\";s:7:\"Whisper\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"WindSong\";a:3:{s:5:\"label\";s:8:\"WindSong\";s:8:\"variants\";a:2:{i:0;s:3:\"500\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Wire One\";a:3:{s:5:\"label\";s:8:\"Wire One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Wix Madefor Display\";a:3:{s:5:\"label\";s:19:\"Wix Madefor Display\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Wix Madefor Text\";a:3:{s:5:\"label\";s:16:\"Wix Madefor Text\";s:8:\"variants\";a:10:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Work Sans\";a:3:{s:5:\"label\";s:9:\"Work Sans\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Xanh Mono\";a:3:{s:5:\"label\";s:9:\"Xanh Mono\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:7:\"Yaldevi\";a:3:{s:5:\"label\";s:7:\"Yaldevi\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Yanone Kaffeesatz\";a:3:{s:5:\"label\";s:17:\"Yanone Kaffeesatz\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Yantramanav\";a:3:{s:5:\"label\";s:11:\"Yantramanav\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Yatra One\";a:3:{s:5:\"label\";s:9:\"Yatra One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Yellowtail\";a:3:{s:5:\"label\";s:10:\"Yellowtail\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Yeon Sung\";a:3:{s:5:\"label\";s:9:\"Yeon Sung\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Yeseva One\";a:3:{s:5:\"label\";s:10:\"Yeseva One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Yesteryear\";a:3:{s:5:\"label\";s:10:\"Yesteryear\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Yomogi\";a:3:{s:5:\"label\";s:6:\"Yomogi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Yrsa\";a:3:{s:5:\"label\";s:4:\"Yrsa\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Ysabeau\";a:3:{s:5:\"label\";s:7:\"Ysabeau\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Yuji Boku\";a:3:{s:5:\"label\";s:9:\"Yuji Boku\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:21:\"Yuji Hentaigana Akari\";a:3:{s:5:\"label\";s:21:\"Yuji Hentaigana Akari\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:23:\"Yuji Hentaigana Akebono\";a:3:{s:5:\"label\";s:23:\"Yuji Hentaigana Akebono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Yuji Mai\";a:3:{s:5:\"label\";s:8:\"Yuji Mai\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Yuji Syuku\";a:3:{s:5:\"label\";s:10:\"Yuji Syuku\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Yusei Magic\";a:3:{s:5:\"label\";s:11:\"Yusei Magic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"ZCOOL KuaiLe\";a:3:{s:5:\"label\";s:12:\"ZCOOL KuaiLe\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"ZCOOL QingKe HuangYou\";a:3:{s:5:\"label\";s:21:\"ZCOOL QingKe HuangYou\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"ZCOOL XiaoWei\";a:3:{s:5:\"label\";s:13:\"ZCOOL XiaoWei\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Zen Antique\";a:3:{s:5:\"label\";s:11:\"Zen Antique\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Zen Antique Soft\";a:3:{s:5:\"label\";s:16:\"Zen Antique Soft\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Zen Dots\";a:3:{s:5:\"label\";s:8:\"Zen Dots\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:23:\"Zen Kaku Gothic Antique\";a:3:{s:5:\"label\";s:23:\"Zen Kaku Gothic Antique\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"700\";i:3;s:3:\"900\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Zen Kaku Gothic New\";a:3:{s:5:\"label\";s:19:\"Zen Kaku Gothic New\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"700\";i:3;s:3:\"900\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Zen Kurenaido\";a:3:{s:5:\"label\";s:13:\"Zen Kurenaido\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Zen Loop\";a:3:{s:5:\"label\";s:8:\"Zen Loop\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Zen Maru Gothic\";a:3:{s:5:\"label\";s:15:\"Zen Maru Gothic\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"700\";i:3;s:3:\"900\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Zen Old Mincho\";a:3:{s:5:\"label\";s:14:\"Zen Old Mincho\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"900\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Zen Tokyo Zoo\";a:3:{s:5:\"label\";s:13:\"Zen Tokyo Zoo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Zeyada\";a:3:{s:5:\"label\";s:6:\"Zeyada\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Zhi Mang Xing\";a:3:{s:5:\"label\";s:13:\"Zhi Mang Xing\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Zilla Slab\";a:3:{s:5:\"label\";s:10:\"Zilla Slab\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"Zilla Slab Highlight\";a:3:{s:5:\"label\";s:20:\"Zilla Slab Highlight\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}}','no'),(303109,'_transient_timeout_vgse_sort_options_product','1706444182','no'),(303110,'_transient_vgse_sort_options_product','a:10:{s:6:\"ASC:ID\";s:8:\"ID : ASC\";s:7:\"DESC:ID\";s:9:\"ID : DESC\";s:14:\"ASC:post_title\";s:16:\"post_title : ASC\";s:15:\"DESC:post_title\";s:17:\"post_title : DESC\";s:13:\"ASC:post_name\";s:15:\"post_name : ASC\";s:14:\"DESC:post_name\";s:16:\"post_name : DESC\";s:13:\"ASC:post_date\";s:15:\"post_date : ASC\";s:0:\"\";s:26:\"post_date : DESC (Default)\";s:17:\"ASC:post_modified\";s:19:\"post_modified : ASC\";s:18:\"DESC:post_modified\";s:20:\"post_modified : DESC\";}','no'),(303129,'_transient_timeout__woocommerce_helper_updates','1705899119','no'),(303130,'_transient__woocommerce_helper_updates','a:4:{s:4:\"hash\";s:32:\"5ee7a3b6723ea6e143a2250895453a7e\";s:7:\"updated\";i:1705855919;s:8:\"products\";a:0:{}s:6:\"errors\";a:1:{i:0;s:10:\"http-error\";}}','no'),(303135,'_transient_timeout_wp_rocket_customer_data','1705948194','no'),(303136,'_transient_wp_rocket_customer_data','O:8:\"stdClass\":3:{s:15:\"licence_account\";s:2:\"-1\";s:18:\"licence_expiration\";i:1893456000;s:19:\"has_one-com_account\";b:0;}','no'),(303143,'_transient_timeout_f3e07d8a5567b52eda97b45478a42948','1705948204','no'),(303144,'_transient_f3e07d8a5567b52eda97b45478a42948','O:8:\"stdClass\":18:{s:11:\"new_version\";s:5:\"1.8.6\";s:14:\"stable_version\";s:5:\"1.8.6\";s:4:\"name\";s:13:\"WP All Export\";s:4:\"slug\";s:17:\"wp-all-export-pro\";s:3:\"url\";s:68:\"https://www.wpallimport.com/downloads/wp-all-export-pro/?changelog=1\";s:12:\"last_updated\";s:19:\"2023-12-04 11:16:50\";s:8:\"homepage\";s:56:\"https://www.wpallimport.com/downloads/wp-all-export-pro/\";s:8:\"sections\";a:2:{s:11:\"description\";s:164:\"<p>Learn more about WP All Export at <a href=\"http://www.wpallimport.com/export\" target=\"_blank\" rel=\"noopener noreferrer\">http://www.wpallimport.com/export</a></p>\";s:9:\"changelog\";s:35960:\"<h4>1.8.6</h4>Minimum WordPress version: 5.0\r\nMinimum PHP version: 7.4\r\n<ul>\r\n<li>security improvement</li>\r\n<li>API: add new filter \'wp_all_export_functions_file_path\' to change the Function Editor\'s file location</li>\r\n<li>API: add new filter \'wp_all_export_product_variation_where\' to override the WP_Query \'where\' for variations</li>\r\n<li>API: add new filter \'wp_all_export_meta_query_limit\' to control how many custom fields can be shown</li>\r\n<li>bug fix: resolve PHP notices for ajax requests</li>\r\n<li>bug fix: fatal error on pre-HPOS WooCommerce versions</li>\r\n<li>bug fix: fatal error in some cases when exporting to XML or GMC</li>\r\n<li>bug fix: fatal error when retrieving file if export doesn\'t exist</li>\r\n<li>bug fix: PHP 8.2 errors</li>\r\n<li>improvement: better handling of brackets in exported data when using custom export fields</li><h4>1.8.5</h4><ul>\r\n<li>minimum WordPress version: 5.0</li>\r\n<li>minimum PHP version: 7.2</li>\r\n<li>note: WooCommerce Export Add-On 1.0.8+ is required to export orders</li>\r\n<li>improvement: better PHP 8.2 support</li>\r\n<li>improvement: add support for filtering by parent slug</li>\r\n<li>improvement: enable adding BOM to files by default for new exports and improve description</li>\r\n<li>improvement: minimize code called during AJAX requests</li>\r\n<li>improvement: remove \'wp_navigation\' from dropdown on Step 1</li>\r\n<li>improvement: gracefully handle cron URL calls to nonexistent exports</li>\r\n<li>improvement: add \'cancel\' action for cron URLs</li>\r\n<li>improvement: only add code to \'admin_head\' when on WP All Export pages</li>\r\n<li>bug fix: resolve miscellaneous PHP notices</li>\r\n<li>bug fix: setting \'Display each product in its own row\' not saved in some cases</li>\r\n<li>bug fix: prevent saved WP All Export sessions from being corrupted by some database configurations</li>\r\n</ul><h4>1.8.4</h4><ul>\r\n<li>minimum WordPress version: 5.0</li>\r\n<li>minimum PHP version: 7.2</li>\r\n<li> improvement: prevent caching of file URLs used with Zapier</li>\r\n<li> adjustment: uncheck \'Display each product in its own row ?\' by default when using \'Migrate\' option for WooCommerce Orders</li>\r\n<li> bug fix: corrected XML layout when using real time order exports</li>\r\n<li> bug fix: corrected exporting of comment IDs to XLS</li>\r\n<li> bug fix: ensure the correct Unique Identifier is set when using the \'Import with WP All Import\' option</li>\r\n</ul><h4>1.8.3</h4><ul>\r\n<li>bug fix: resolve \'enable_real_time_exports\' notice</li>\r\n<li>bug fix: fatal error when post types are defined using closures</li>\r\n</ul><h4>1.8.2</h4><ul>\r\n<li>improvement: individual record data is now available in Zapier when using real time exports (requires 2.0.1+ Zapier trigger version)</li>\r\n<li>improvement: allow exporting \'0\' value in ACF fields</li>\r\n<li>improvement: better \'s\' parameter support for WP_Query exports</li>\r\n<li>improvement: clean up PHP 8 related notices</li>\r\n<li>improvement: better support for symlinked /upload folders</li>\r\n<li>improvement: remove deprecated jQuery functions</li>\r\n<li>improvement: enhanced real time exporting support for RealHomes theme properties</li>\r\n<li>bug fix: don\'t change the \'Product\' label used in the ShopCommerce theme\'s breadcrumbs</li>\r\n<li>bug fix: resolve PHP notices related to Google Merchant Center exports</li>\r\n<li>bug fix: prevent custom XML editor from being shown when exporting to CSV in rare circumstances</li>\r\n<li>bug fix: correct Gravity Forms exported record counts</li>\r\n<li>bug fix: delete missing now works properly with imports created with the \'Import with WP All Import\' option</li>\r\n</ul><h4>1.8.1</h4><ul>\r\n<li>new feature: real time exports - <a href=\"https://www.wpallimport.com/documentation/how-to-run-real-time-exports/\" target=\"_blank\">https://www.wpallimport.com/documentation/how-to-run-real-time-exports/</a> </li>\r\n<li>improvement: set headers to prevent cron URLs and export bundle from being cached</li>\r\n<li>bug fix: enable use of \'s\', \'LIKE\' and \'NOT LIKE\' in WP_Query exports</li>\r\n</ul><h4>1.8.0 </h4><ul><li>bug fix: revert filtering improvements</li></ul>\r\n<h4>1.7.9</h4><ul>\r\n<li>security improvement</li>\r\n<li>bug fix: JavaScript error when the user has the \'Disable syntax highlighting when editing code\' option enabled</li>\r\n<li>bug fix: only one export field can use the \'Export the value returned by a PHP function\' option at a time</li>\r\n<li>improvement: restore compatibility for WordPress 5.0+</li>\r\n<li>improvement: better filtering performance</li>\r\n<li>improvement: better \'custom export field\' performance</li>\r\n</ul><h4>1.7.8</h4><ul><li>bug fix: cannot export products in a single language when using WPML</li></ul>\r\n</ul><h4>1.7.7</h4><ul>\r\n<li>new feature: add option to disable generation of empty export files if no records are matched for export when running via automation</li>\r\n<li>bug fix: allow exporting empty value with custom export field</li>\r\n<li>bug fix: encoded ampersand showing in \'Confirm & Run\' text</li>\r\n<li>bug fix: delimiters are sometimes removed when a field with multiple values is used in a custom export field</li>\r\n<li>bug fix: prevent caching of GMC export files</li>\r\n<li>bug fix: properly format multiple values provided via \'Custom data\' for Product Type in a GMC export</li>\r\n<li>improvement: resolve miscellaneous PHP notices</li>\r\n<li>improvement: only check Scheduling Service connectivity if a Scheduling license has been saved</li>\r\n<li>improvement: UI enhancements</li>\r\n<li>improvement: use CodeMirror library from WordPress Core</li>\r\n</ul><h4>1.7.6</h4><ul>\r\n<li>improvement: add support for Country, Region, and Service shipping sub-attributes for GMC exports</li>\r\n<li>bug fix: can\'t save code to Function Editor</li>\r\n<li>bug fix: error when product dimensions are empty in GMC exports</li>\r\n</ul><h4>1.7.5</h4><ul>\r\n<li>improvement: UI updates</li>\r\n</ul><h4>1.7.4</h4>- bug fix: jQuery nestedSortable compatibility with WordPress 5.9\r\n- improvement: PHP 8 compatibility<h4>1.7.3</h4><ul>\r\n<li>New Feature: compatibility with the Gravity Forms Export Add-On</li>\r\n<li>improvement: fallback to PclZip if ZipArchive isn\'t available</li>\r\n<li>improvement: add support for Cyrillic and Greek characters in element names</li>\r\n<li>bugfix: some output not correctly escaped</li>\r\n<li>bugfix: in some cases, export files are cached when downloaded via a direct link</li>\r\n<li>bugfix: error when exporting attributes</li>\r\n<li>bugfix: notice  when saving client mode settings</li>\r\n<li>bugfix: error on PHP 8 when exports are corrupt</li>\r\n<li>bugfix: error when exporting custom field in simple XML</li>\r\n</ul><h4>1.7.2</h4><ul>\r\n<li>improvement: add support for exporting non-WooCommerce \'product\' CPTs</li>\r\n<li>improvement: initial PHP 8 support</li>\r\n<li>bug fix: fatal error when running \'post\' WP_Query export</li>\r\n<li>bug fix: unexpected newline added to manual custom XML exports</li>\r\n<li>bug fix: CPT exports failing when WooCommerce Export Add-On not active</li>\r\n<li>bug fix: Google Merchant Center shipping dimension unit conversions were incorrect in some cases</li>\r\n<li>bug fix</li>\r\n</ul><h4>1.7.1</h4>\r\n<ul>\r\n 	<li>improvement: decrease the frequency of plugin update checks</li>\r\n 	<li>improvement: add HKG Dollar to Google Merchant Center exports</li>\r\n 	<li>bugfix: error when filtering by WPML language</li>\r\n 	<li>bugfix: WPML language filter not applied when running scheduled exports</li>\r\n 	<li>bugfix: closing tag missing when custom XML export files are empty</li>\r\n</ul>\r\n<h4>1.7.0</h4>\r\n<ul>\r\n 	<li>improvement: added RON to Google Merchant Center export currencies</li>\r\n 	<li>improvement: moved ACF and WooCommerce support to add-ons</li>\r\n</ul>\r\n<h4>1.6.7</h4>\r\n<ul>\r\n 	<li>bugfix: XML tag appended to empty CSV files</li>\r\n 	<li>bugfix: ACF user email field not exported correctly</li>\r\n 	<li>bugfix: PHP notice when adjusting prices in Google Merchant Center exports</li>\r\n</ul>\r\n<h4>1.6.6</h4>\r\n<ul>\r\n 	<li>maintenance: compatibility with Elementor v3.3 JavaScript changes</li>\r\n</ul>\r\n<h4>1.6.5</h4>\r\n<ul>\r\n 	<li>improvement: hide _oembed_ fields from custom fields</li>\r\n 	<li>improvement: update scheduling keys in the scheduling service when changed in settings</li>\r\n 	<li>bugfix: filtering by a custom field called featured working only for products</li>\r\n 	<li>bugfix: functions with empty string arguments not parsed correctly in Custom XML exports</li>\r\n 	<li>bugfix: ratings and star count not exported in WooCommerce Review exports</li>\r\n 	<li>bugfix: simple XML exports generate invalid XML when there are no records by missing the closing tag</li>\r\n 	<li>bugfix: values that contain square brackets not exported in Google Merchants Exports</li>\r\n 	<li>bugfix: custom functions not correctly parsed in Google Merchants Exports</li>\r\n 	<li>bugfix: ACF repeater fields are exported using commas as a delimiter, but the bundle defaults to pipes when importing</li>\r\n</ul>\r\n<h4>1.6.4</h4>\r\n<ul>\r\n 	<li>improvement - remove Friendly Name editing option from Client Mode</li>\r\n 	<li>bugfix - array_intersect_key error when PMXE_Options are corrupt</li>\r\n 	<li>bugfix - order item fields with HTML encoded names can\'t be exported</li>\r\n</ul>\r\n<h4>1.6.3</h4>\r\n<ul>\r\n 	<li>New Feature: Allow non-admins to run exports with Client Mode</li>\r\n 	<li>bug fix: incorrect number of processed entries when exporting items only once in multiple iterations</li>\r\n 	<li>bug fix: Google Merchant Center throws error on shipping length</li>\r\n 	<li>bug fix: state not saved for \'Fill in empty columns\' and \'Display each repeater row in its own csv line\' in ACF repeater fields</li>\r\n 	<li>bug fix: js error when removing filters</li>\r\n 	<li>bug fix: use wp_salt() when AUTH_SALT isn\'t defined</li>\r\n 	<li>bug fix: downloadable files aren\'t migrated properly in some cases</li>\r\n 	<li>bug fix: \'0\' is present in the \'Export the value returned by a PHP function\' setting for Attachment fields</li>\r\n 	<li>bug fix: import template in bundle file not set to choose \'WooCommerce Reviews\' when imported</li>\r\n 	<li>bug fix: featured and attached images options not working for image fields</li>\r\n</ul>\r\n<h4>1.6.2</h4>\r\n<ul>\r\n 	<li>bugfix: some checkbox options broken after WordPress v5.5 compatibility fix</li>\r\n</ul>\r\n<h4>1.6.1</h4>\r\n<ul>\r\n 	<li>maintenance: compatibility with WordPress v5.5 jQuery changes</li>\r\n</ul>\r\n<h4>1.6.0</h4>\r\n<ul>\r\n 	<li>improvement: Export WooCommerce Reviews</li>\r\n 	<li>improvement: Migrate Comments and WooCommerce Reviews</li>\r\n 	<li>improvement: Export Cost of Goods Sold to Google Merchant Center</li>\r\n 	<li>improvement: Add WP_Query support for Toolset Types exports</li>\r\n 	<li>bug fix: time not exported in fields with date and time</li>\r\n 	<li>bug fix: date filters with ‘equal or older than’ doesn\'t include dates equal to the filter value</li>\r\n 	<li>bug fix: no default value for \"Set to false if product has no GTIN or MPN\"</li>\r\n 	<li>bug fix: PHP 7.3 warnings when exporting Excel files</li>\r\n</ul>\r\n<h4>1.5.11</h4>\r\n<ul>\r\n 	<li>improvement: export custom ACF fields defined in Gutenberg blocks</li>\r\n 	<li>improvement: disable scheduled exports via Automatic Scheduling UI</li>\r\n 	<li>API: add new filter wp_all_export_no_cache to avoid server cache for export files</li>\r\n 	<li>bug fix: WPAE UI is translated to the filtered WPML language</li>\r\n 	<li>bug fix: custom functions unavailable when editing an exported field</li>\r\n 	<li>bug fix: unable to update filters on the Run Export page</li>\r\n 	<li>bug fix: date filters including first/last day of month do not work properly</li>\r\n 	<li>bug fix: notices related to Google Merchants exports</li>\r\n 	<li>bug fix: exports sent to Zapier in the incorrect order</li>\r\n 	<li>bug fix: WooCommerce customer exports do not correctly report the number of exported customers</li>\r\n 	<li>bug fix: unable to only export customers once via scheduled exports</li>\r\n 	<li>bug fix: fields containing commas incorrectly exported to Google Merchant Center</li>\r\n 	<li>bug fix: product names are incorrectly urlencoded in custom XML exports</li>\r\n 	<li>bug fix: taxonomy meta fields not available for export</li>\r\n 	<li>bug fix: 0 values are represented as an empty string in custom XML exports</li>\r\n 	<li>bug fix: order items doubled in custom export fields in custom XML exports</li>\r\n 	<li>bug fix: custom fields not parsed correctly in custom XML exports</li>\r\n 	<li>bug fix: Manual Scheduling disabled when Automatic Scheduling is selected</li>\r\n 	<li>bug fix: unable to filtering by hours or minutes in some cases</li>\r\n 	<li>bug fix: unable to export ACF group fields</li>\r\n 	<li>bug fix: trying to delete History File fails ungracefully if it doesn\'t exist</li>\r\n 	<li>bug fix: Fee Amount exporting as an empty field in custom XML exports</li>\r\n</ul>\r\n<h4>1.5.10</h4>\r\n<ul>\r\n 	<li>improvement: add SAR currency to Google Merchant Center</li>\r\n 	<li>improvement: add default Unit Pricing Measure to Google Merchant Center</li>\r\n 	<li>improvement: only update max_execution_time on plugin requests, don\'t modify it globally</li>\r\n 	<li>bugfix: unable to export WooCommerce customers to XML</li>\r\n 	<li>bugfix: error with empty strings at the beginning or end of function calls</li>\r\n 	<li>bugfix: ACF date field not parsed correctly with some custom date formats</li>\r\n 	<li>bugfix: unable to export image galleries inside ACF flexible content fields to XML</li>\r\n 	<li>bugfix: time-based export filters should use GMT not server time</li>\r\n</ul>\r\n<h4>1.5.9</h4>\r\n<ul>\r\n 	<li>bug fix: unable to export users</li>\r\n</ul>\r\n<h4>1.5.8</h4>\r\n<ul>\r\n 	<li>improvement: add UAH currency to Google Merchant Center exports</li>\r\n 	<li>API: add \'pmxe_is_bundle\' filter</li>\r\n 	<li>bug fix: unable to filter by user data</li>\r\n 	<li>bug fix: wp_query missing error in some cases</li>\r\n 	<li>bug fix: ACF link export incorrectly formatted</li>\r\n 	<li>bug fix: \"Tax Amount\" rounded to nearest integer</li>\r\n 	<li>bug fix: currency included in price field when price is empty for Google Merchant Center exports</li>\r\n</ul>\r\n<h4>1.5.7</h4>\r\n<ul>\r\n 	<li>improvement: add Thai Baht to Google Merchant Center currencies</li>\r\n 	<li>improvement: add custom line endings for CSV</li>\r\n 	<li>API: add new action pmxe_acf_date_picker_format to set custom ACF date formats</li>\r\n 	<li>bugfix: unable to use wp-cron for scheduled exports on sites running PHP-FPM and WordPress 5.1+</li>\r\n 	<li>switched to wp-load for cron URLs, with backwards compatibility for wp-cron</li>\r\n 	<li>bugfix: ACF repeaters export incorrect values in ACF version 5.7.10+</li>\r\n 	<li>bugfix: Google Merchant Center incorrectly converts units from inches to mm</li>\r\n 	<li>bugfix: ACF date format not parsed correctly</li>\r\n 	<li>bugfix: tax amount incorrectly calculated in PHP 7.1+</li>\r\n 	<li>bugfix: is_empty field only looks for NULL fields, not empty values</li>\r\n 	<li>bugfix: exporting ACF user fields results in error</li>\r\n</ul>\r\n<h4>1.5.6</h4>\r\n<ul>\r\n 	<li>add-on: move all user export functionality to new user export add-on</li>\r\n 	<li>improvement: preserve admin body classes that are added by other plugins</li>\r\n 	<li>improvement: change scheduling endpoints from wp-cron.php to wp-load.php for WordPress 5.1/PHP-FPM compatibility</li>\r\n 	<li>bugfix: change language code alias for WPML compatibility</li>\r\n 	<li>bugfix: meta keys that are not returned as an array are exported as empty</li>\r\n 	<li>bugfix: allow uppercase ID in custom XML template</li>\r\n 	<li>bugfix: use ACF date format for date pickers</li>\r\n 	<li>bugfix: custom export field notices not working for WooCommerce orders</li>\r\n 	<li>bugfix: missing items in combine multiple fields are not replaced</li>\r\n 	<li>bugfix: term ID missing when using custom fields and exporting taxonomies</li>\r\n 	<li>bugfix: some WooCommerce attributes cause errors when writing to CSV</li>\r\n 	<li>bugfix: scheduling API responses improperly translated</li>\r\n 	<li>bugfix: changes to field not rendered in preview from edit field modal</li>\r\n</ul>\r\n<h4>1.5.5</h4>\r\n<ul>\r\n 	<li>bug fix: compatibility with ACF v5.7.11</li>\r\n</ul>\r\n<h4>1.5.4</h4>\r\n<ul>\r\n 	<li>improvement: add RTL support for Excel</li>\r\n 	<li>improvement: add Indonesian Rupiah to Google Merchant Center</li>\r\n 	<li>improvement: add Google Merchant Center field name as global variable to be used in custom functions</li>\r\n 	<li>bugfix: improve support for quotes in custom xml</li>\r\n 	<li>bugfix: increase number of rendered categories for Google Merchant Center</li>\r\n 	<li>bugfix: Google Merchant Center dimensions</li>\r\n 	<li>bugfix: include variations when filtering by categories</li>\r\n 	<li>bugfix: combine error messages when exporting refunds</li>\r\n 	<li>bugfix: refund ID snippet not being replaced when field is missing</li>\r\n 	<li>bugfix: fix filtering error when exporting comments</li>\r\n 	<li>bugfix: support exports scheduled at 12am and 12pm</li>\r\n 	<li>bugfix: fix filtering products with titles that contain slashes</li>\r\n 	<li>bugfix: merge headers for empty columns at end of file</li>\r\n 	<li>bugfix: fix filtering UI for long titles</li>\r\n 	<li>bugfix: allow exporting ACF checkbox fields</li>\r\n 	<li>bugfix: pmxe_woo_field parameters incorrect</li>\r\n 	<li>bugfix: downloadable files in custom XML not exporting</li>\r\n 	<li>bugfix: close incorrect tags when exporting ACF</li>\r\n 	<li>bugfix: export serialized values in combined fields</li>\r\n 	<li>bugfix: custom functions in Google Merchant Center price elements not triggering</li>\r\n 	<li>bugfix: get_site_url in multisite when using Google Merchant Center</li>\r\n 	<li>bugfix: allow users to be filtered by name</li>\r\n 	<li>bugfix: fix custom export fields in simple XML exports</li>\r\n 	<li>bugfix: fix tax rate code exports in custom export fields</li>\r\n</ul>\r\n<h4>1.5.3</h4>\r\n<ul>\r\n 	<li>improvement: improve function parsing in custom export fields</li>\r\n 	<li>improvement: Google Merchant Center titles are limited to 150 characters</li>\r\n 	<li>improvement: increase custom query meta limit</li>\r\n 	<li>new filter: added pmxe_after_iteration action</li>\r\n 	<li>bugfix: remove deprecated function calls for PHP 7.2 compatibility</li>\r\n 	<li>bugfix: address various PHP warnings and notices</li>\r\n 	<li>bugfix: filters for WooCommerce product variations</li>\r\n 	<li>bugfix: graceful failure for non:writable uploads folder</li>\r\n 	<li>bugfix: add warning when exporting WooCommerce orders using Automatic Scheduling</li>\r\n 	<li>bugfix: WooCommerce product variations exported as separate products when adding product attributes to custom export fields</li>\r\n 	<li>bugfix: function editor not rendered until clicked</li>\r\n 	<li>bugfix: small UI and spacing issues</li>\r\n 	<li>bugfix: WooCommerce products don\'t on their own row in order exports when using custom export fields</li>\r\n 	<li>bugfix: prices with more than two decimal places are not exported correctly</li>\r\n 	<li>bugfix: \'Only export orders that have been modified since last export\' doesn\'t work when filtering orders</li>\r\n 	<li>bugfix: exporting empty ACF values shifts rows in CSV exports</li>\r\n 	<li>bugfix: Australia missing from scheduling timezones</li>\r\n 	<li>bugfix: exporting meta in WooCommerce orders</li>\r\n 	<li>bugfix: unable to filter or export WooCommerce product visibility data</li>\r\n 	<li>bugfix: cannot export product type for variable products to Google Merchant Center</li>\r\n 	<li>bugfix: Google Merchant Center exports cannot automatically map sub-categories</li>\r\n</ul>\r\n<h4>1.5.2</h4>\r\n<ul>\r\n 	<li>improvement: Support migrating users &amp; keeping passwords</li>\r\n 	<li>improvement: Add Featured Image to Available Data › Media</li>\r\n 	<li>new filter: wp_all_export_raw_prices - disables price formatting</li>\r\n 	<li>bugfix: Error thrown when uploads folder is not writable</li>\r\n 	<li>bugfix: Preview is broken for date fields</li>\r\n 	<li>bugfix: Product visibility broken for old WooCommerce versions</li>\r\n 	<li>bugfix: Custom Export Field values not saved in some cases</li>\r\n 	<li>bugfix: Headers not matching content when they contain special characters</li>\r\n 	<li>bugfix: Headers not matching content when exporting certain ACF fields</li>\r\n 	<li>bugfix: Loading order for styles optimized to reduce conflicts</li>\r\n 	<li>bugfix: Import templates broken for WooCommerce product attributes</li>\r\n 	<li>bugfix: \'Export Images from Post Content\' option doesn\'t displaying in some cases</li>\r\n 	<li>bugfix: JSON parameters can now be passed through functions in Google Merchant Center exports</li>\r\n 	<li>bugfix: WP Query exports broken for users and comments</li>\r\n 	<li>bugfix: Meta missing when migrating unattached images</li>\r\n 	<li>bugfix: Available Data broken when there\'s more than 500 data elements</li>\r\n 	<li>bugfix: Custom Export Fields are unstable when many are added to the same export</li>\r\n</ul>\r\n<h4>1.5.1</h4>\r\n<ul>\r\n 	<li>bug fix: custom fields are exported as their name</li>\r\n</ul>\r\n<h4>1.5.0</h4>\r\n<ul>\r\n 	<li>new feature: Automatic Scheduling</li>\r\n 	<li>new feature: Custom export fields</li>\r\n 	<li>improvement: licenses hidden in the ui and encoded in the database</li>\r\n 	<li>improvement: improved error reporting for custom functions errors</li>\r\n 	<li>improvement: changed excerpt to short description</li>\r\n 	<li>improvement: better price formatting</li>\r\n 	<li>improvement: better function parsing in Google Merchant Center exports</li>\r\n 	<li>improvement: exclude parent products from Google Merchant Center exports</li>\r\n 	<li>improvement: added CHF to list of supported Google Merchant Center currencies</li>\r\n 	<li>improvement: added support for acf clone field</li>\r\n 	<li>improvement: added security token to cron URLs for improved security</li>\r\n 	<li>improvement: added author information to Available Data</li>\r\n 	<li>improvement: added wp_all_export_order_item filter</li>\r\n 	<li>improvement: added wp_all_export_use_csv_compliant_line_endings filter</li>\r\n 	<li>improvement: added wp_all_export_pre_csv_headers filter</li>\r\n 	<li>improvement: added wp_all_export_repeater_delimiter filter</li>\r\n 	<li>bugfix: PHP notices and warnings</li>\r\n 	<li>bugfix: error when activating Pro version and Free version</li>\r\n 	<li>bugfix: splitting custom XML export files</li>\r\n 	<li>bugfix: removed moment.js which was causing false virus positives in some browsers</li>\r\n 	<li>bugfix: Google Merchant Center category mapping</li>\r\n 	<li>bugfix: do not update comment status by default</li>\r\n 	<li>bugfix: \"only export modified posts\" when using cron</li>\r\n 	<li>bugfix: file name filters when using crons</li>\r\n 	<li>bugfix: shortcodes in custom XML snippets</li>\r\n 	<li>bugfix: ACF flexible fields</li>\r\n 	<li>bugfix: problems when running Google Merchant Center exports via cron</li>\r\n 	<li>bugfix: CSV writer fixes to take into account https://bugs.php.net/bug.php?id=43225</li>\r\n 	<li>bugfix: exporting ACF and custom fields with HTML tags</li>\r\n 	<li>bugfix: stray root tags in WooCommerce Order exports</li>\r\n 	<li>bugfix: timeouts when connecting Jetpack to WordPress.com</li>\r\n 	<li>bugfix: exporting product images in Google Merchant Center</li>\r\n 	<li>bugfix: corrupted Excel files</li>\r\n 	<li>bugfix: conflicts with some plugins changing the post order</li>\r\n 	<li>bugfix: comment handling in custom XML</li>\r\n 	<li>bugfix: blank CodeMirror in dialogs</li>\r\n 	<li>bugfix: parsing CDATA tags that contain HTML tags</li>\r\n 	<li>bugfix: Google Merchant Center handling quotes in functions</li>\r\n 	<li>bugfix: improved Google Merchant Center snippet parser</li>\r\n 	<li>bugfix: CSV headers when field names contained quotes</li>\r\n 	<li>bugfix: included WPML query in variation query</li>\r\n 	<li>bugfix: handling of the \"visibility\" field based on WooCommerce version</li>\r\n</ul>\r\n<h4>1.4.7</h4>\r\n<ul>\r\n 	<li>improvement: Improved accuracy for export timer</li>\r\n 	<li>improvement: Removed moment.js dependency which causes false positives in some antivirus software</li>\r\n 	<li>imporovement New export complete page</li>\r\n 	<li>bugfix: Fixed problems when switching from WPAE free to WPAE pro</li>\r\n 	<li>bugfix: Special characters in product attributes support</li>\r\n 	<li>bugfix: Fix category mapper containing special characters</li>\r\n 	<li>bugfix: Fixed parsing content with shortcodes in custom XML Export</li>\r\n 	<li>bugfix: Fixed exporting ACF fields with no value for some posts</li>\r\n</ul>\r\n<h4>1.4.6</h4>\r\n<ul>\r\n 	<li>improvement: removed autoload=true from wp_options</li>\r\n 	<li>improvement: use \'Export product variations and their parent products\' by default</li>\r\n 	<li>improvement: WPML options in separate section</li>\r\n 	<li>improvement: category mapper optimization</li>\r\n 	<li>improvement: memory usage to avoid memory limit errors</li>\r\n 	<li>bug fix: allow underscores in main xml tags</li>\r\n 	<li>bug fix: prevent uploading import template into wpae</li>\r\n 	<li>bug fix: ID column in CSV</li>\r\n 	<li>bug fix: date equals or older filter</li>\r\n 	<li>bug fix: ACF repeater headers</li>\r\n 	<li>bug fix: size type mapper and no categories message</li>\r\n 	<li>bug fix: export ID in custom XML mode</li>\r\n 	<li>bug fix: date filtering</li>\r\n 	<li>bug fix: export product variation status</li>\r\n 	<li>bug fix: the \"Shipping Class\" field in Google Merchants export.</li>\r\n</ul>\r\n<h4>1.4.5</h4>\r\n<ul>\r\n 	<li>improvement: added new option \'Only export Pages that have been modified since last export\'</li>\r\n 	<li>improvement: added post_modified field</li>\r\n 	<li>improvement: handling functions in google meerchants fields</li>\r\n 	<li>bug fix: snippets parsing in Custom XML Export</li>\r\n 	<li>bug fix: template saving. Fixed product image export to Google Merchants</li>\r\n 	<li>bug fix: export attributes for simple products</li>\r\n 	<li>bug fix: db schema updating</li>\r\n 	<li>bug fix: variations with trashed parents shouldn\'t be included in the export</li>\r\n 	<li>bug fix: google Merchants inconsistent category search</li>\r\n 	<li>bug fix: minified JS to avoid problems for CloudFlare users</li>\r\n</ul>\r\n<h4>1.4.4</h4>\r\n<ul>\r\n 	<li>improvement: export to Google Merchant Center</li>\r\n 	<li>improvement: choose WPML language in export options</li>\r\n 	<li>improvement: filter WooCommerce Orders by order item data</li>\r\n 	<li>improvement: export CSV without header row</li>\r\n 	<li>bug fix: export ACF message field</li>\r\n 	<li>bug fix: export product categories with AFC repeater fields</li>\r\n 	<li>bug fix: export duplicate images from gallery</li>\r\n 	<li>bug fix: filter products by custom fields</li>\r\n 	<li>bug fix: export search</li>\r\n 	<li>bug fix: export product variation attribute names</li>\r\n 	<li>bug fix: processing serialized data in custom snippets</li>\r\n 	<li>bug fix: export more than one coupon_used field</li>\r\n 	<li>bug fix: migrating hierarchical posts and pages</li>\r\n</ul>\r\n<h4>1.4.3</h4>\r\n<ul>\r\n 	<li>improvement: compatibility with PHP 7.x</li>\r\n 	<li>improvement: new export field \'Order Item ID\'</li>\r\n 	<li>improvement: possibility for filter order by order items data</li>\r\n 	<li>improvement: new option \'Include header row and column titles in export\'</li>\r\n 	<li>bug fix: processing serialized data in custom snippets</li>\r\n 	<li>bug fix: export ACF repeater field in custom XML mode</li>\r\n 	<li>bug fix: applying php function to product attributes</li>\r\n 	<li>bug fix: export coupon_used field</li>\r\n</ul>\r\n<h4>1.4.2</h4>\r\n<ul>\r\n 	<li>new feature: added export taxonomies feature</li>\r\n 	<li>improvement: new export variable products options</li>\r\n 	<li>improvement: added possibility to export to xlsx</li>\r\n 	<li>improvement: added ACF fields to \'migrate\' &amp; \'add all fields\' features</li>\r\n 	<li>improvement: added new filter \'wp_all_export_field_name\'</li>\r\n 	<li>improvement: changed default date export to Y/m/d</li>\r\n 	<li>bug fix: export shipping class for product variations</li>\r\n 	<li>bug fix: import template for ACF relationship fields</li>\r\n 	<li>bug fix: export ACF fields in custom XML mode</li>\r\n 	<li>bug fix: export empty images metadata</li>\r\n 	<li>bug fix: import template for ACF gallery</li>\r\n 	<li>bug fix: import template for variation_description</li>\r\n 	<li>bug fix: import template for default product attributes</li>\r\n 	<li>bug fix: fields ordering for custom XML export</li>\r\n 	<li>bug fix: menu order migration</li>\r\n 	<li>bug fix: automatically adding parent_id column on products export</li>\r\n 	<li>bug fix: SQL query ( caused timeout error )</li>\r\n 	<li>bug fix: parsing snippets in attributes in elements</li>\r\n</ul>\r\n<h4>1.4.1</h4>\r\n<ul>\r\n 	<li>bug fix: compatibility with PHP 5.3</li>\r\n</ul>\r\n<h4>1.4.0</h4>\r\n<ul>\r\n 	<li>new feature: export custom xml template</li>\r\n 	<li>improvement: new filter wp_all_export_after_csv_line</li>\r\n 	<li>improvement: date options for sale price dates from/to</li>\r\n 	<li>improvement: ability to use tab as csv delimiter</li>\r\n 	<li>improvement: new filter \'wp_all_export_csv_headers\'</li>\r\n 	<li>improvement: pull the parent taxonomy data when exporting variations</li>\r\n 	<li>improvement: remove spaces from export filename</li>\r\n 	<li>bug fix: \'posts_clauses\' filter issue</li>\r\n 	<li>bug fix: db schema on multisite</li>\r\n 	<li>bug fix: export order items date</li>\r\n 	<li>bug fix: import template for media items</li>\r\n 	<li>bug fix: \'Only export Products once\' for new exports</li>\r\n 	<li>bug fix: export ACF repeater in XML format</li>\r\n 	<li>bug fix: order_completed_date filter</li>\r\n 	<li>bug fix: export in CSV format when \'Main XML Tag\' &amp; \'Record XML Tag\' option are blank</li>\r\n 	<li>bug fix: export order items taxonomies</li>\r\n 	<li>bug fix: export ACF date_time_picker</li>\r\n 	<li>bug fix: date filter by time</li>\r\n 	<li>bug fix: is empty filters</li>\r\n 	<li>bug fix: nested filter rules</li>\r\n</ul>\r\n<h4>1.3.2</h4>\r\n<ul>\r\n 	<li>fixed \'Only export Posts once\' for new exports</li>\r\n 	<li>fixed db schema for multisite</li>\r\n 	<li>fixed export order items date</li>\r\n 	<li>fixed media items export ordering</li>\r\n 	<li>fixed import template for media items</li>\r\n 	<li>fixed export ACF repeater in XML format</li>\r\n 	<li>fixed order_completed_date filter</li>\r\n 	<li>added new filter \'wp_all_export_csv_headers\'</li>\r\n 	<li>added possibility to use tab as csv delimiter \"t\"</li>\r\n 	<li>updated french translation</li>\r\n</ul>\r\n<h4>1.3.1</h4>\r\n<ul>\r\n 	<li>added WooCommerce order migration</li>\r\n 	<li>added _thumbnail_id to the filtering dropdown</li>\r\n 	<li>added new filter \'wp_all_export_is_wrap_value_into_cdata\'</li>\r\n 	<li>added new filters \'wp_all_export_add_before_element\', \'wp_all_export_add_after_element\'</li>\r\n 	<li>added \'WPML Translation ID\' element to available data</li>\r\n 	<li>modified preview to show first 10 records</li>\r\n 	<li>fixed csv export with non comma delimiter</li>\r\n 	<li>fixed conflict with WP Google Maps Pro plugin</li>\r\n 	<li>fixed downloading XLS export file when security mode is disabled</li>\r\n</ul>\r\n<h4>1.3.0</h4>\r\n<ul>\r\n 	<li>fixed misaligned columns on exporting product attributes</li>\r\n 	<li>fixed export nested repeaters field in CSV format</li>\r\n 	<li>fixed conflict between enabled ‘Only export Products once’ &amp; filtering rules</li>\r\n 	<li>fixed live records counting for advanced export mode</li>\r\n 	<li>fixed Events Calendar conflict</li>\r\n 	<li>added Google Merchants support</li>\r\n 	<li>added new filters \'wp_all_export_add_before_node\', \'wp_all_export_add_after_node\'</li>\r\n 	<li>added possibility to filter posts by author data</li>\r\n 	<li>added XLS support, redesign CSV/XML options in Step 2</li>\r\n 	<li>added feature to use php function in filtering rules</li>\r\n 	<li>added possibility export repeater rows one per line</li>\r\n 	<li>added backward compatibility for export comments on WordPress less than 4.2.0</li>\r\n 	<li>exclude orphaned variations from exprt file</li>\r\n 	<li>changed UI for export media data ( images &amp; attachments )</li>\r\n</ul>\r\n<h4>1.2.3</h4>\r\n<ul>\r\n 	<li>fixed export attachment meta alt</li>\r\n 	<li>fixed export manually stored ACF</li>\r\n 	<li>fixed export repeater field for users in csv format</li>\r\n 	<li>fixed saving special chars in function editor</li>\r\n 	<li>fixed import export templates</li>\r\n 	<li>fixed error on activate WPAE license</li>\r\n 	<li>fixed ajaxurl conflict with WPML</li>\r\n 	<li>fixed filtering by ACF taxonomy field</li>\r\n 	<li>create a stable copy of exported file for remote access during export process</li>\r\n 	<li>added French &amp; Latvian translations</li>\r\n 	<li>added \'Variation Description\' field</li>\r\n</ul>\r\n<h4>1.2.2</h4>\r\n<ul>\r\n 	<li>fixed \'wp_all_export_additional_data\' filter on cron job</li>\r\n 	<li>fixed Zapier intergation</li>\r\n 	<li>fixed import template for variable products</li>\r\n 	<li>fixed css for WordPress 4.4</li>\r\n 	<li>fixed export ACF repeater field</li>\r\n</ul>\r\n<h4>1.2.1</h4>\r\n<ul>\r\n 	<li>added export comments</li>\r\n 	<li>added possibility to add NS to field names</li>\r\n 	<li>fixed export repeater field ACF 4.x</li>\r\n 	<li>fixed cron export, was exported wrong data amount when there are sticky posts in database</li>\r\n 	<li>fixed updating filter rules on cron job</li>\r\n 	<li>fixed error on edit custom column name for Woo Orders</li>\r\n</ul>\r\n<h4>1.2.0</h4>\r\n<ul>\r\n 	<li>fixed manage exports screen: \"Info and options\" disappears when WPAI plugin is disabled</li>\r\n 	<li>fixed WP_Query results ordering</li>\r\n 	<li>fixed export ACF repeater field for CSV</li>\r\n 	<li>fixed export filtering</li>\r\n 	<li>added es_ES translation</li>\r\n 	<li>added possibility to change export field name ( related to export WooCommerce Orders )</li>\r\n 	<li>added option \'Split large exports into multiple files\'</li>\r\n 	<li>added option \'Only export posts once\'</li>\r\n 	<li>added option \'Create a new export file each time export is run\'</li>\r\n 	<li>added option \'Fill in empty columns\': If enabled, each order item will appear as its own row with all order info filled in for every column. If disabled, order info will only display on one row with only the order item info displaying in additional rows</li>\r\n 	<li>added ‘pmxe_exported_post’ action: do_action(\'pmxe_exported_post\', $record-&gt;ID );</li>\r\n 	<li>added Zapier support ( beta )</li>\r\n 	<li>added possibility to control main xml tag names &amp; put additional info into xml file: apply_filters(\'wp_all_export_additional_data\', array(), $exportOptions)</li>\r\n 	<li>added export templates</li>\r\n 	<li>added hidden post types to the dropdown list on step 1</li>\r\n 	<li>replaced \'export key\' to \'export hash\' in \'Export File URL\' on scheduling page</li>\r\n 	<li>updated re-run export screen</li>\r\n</ul>\r\n<h4>1.1.1</h4>\r\n<ul>\r\n 	<li>fixed download bundle</li>\r\n 	<li>fixed export repeater fields for ACF 4.x</li>\r\n 	<li>fixed import template for custom product attributes</li>\r\n 	<li>fixed cron job responses, now theay are in JSON format</li>\r\n 	<li>added bundle URL to scheduling page</li>\r\n 	<li>added new option \'include BOM to export file</li>\r\n 	<li>added RU translation</li>\r\n 	<li>added function editor</li>\r\n 	<li>removed hidden post types from dropdown in step 1</li>\r\n</ul>\r\n<h4>1.1.0</h4>\r\n<ul>\r\n 	<li>fixed export taxonomy: name instead of slug</li>\r\n 	<li>fixed export filtering (query with multiple meta keys)</li>\r\n 	<li>fixed display products in own row option</li>\r\n 	<li>fixed pass data through php function</li>\r\n 	<li>added advanced (custom fields) section to export woo orders</li>\r\n 	<li>added draggable element deletion</li>\r\n 	<li>added auto-generate product export fields</li>\r\n 	<li>added \'attributes\' field to product data</li>\r\n 	<li>added feedback page</li>\r\n 	<li>added another \'Auto Generate\' button for products export</li>\r\n 	<li>added button to download bundle for WP All Import</li>\r\n 	<li>updated export file name</li>\r\n 	<li>changed export files destination to /exports</li>\r\n</ul>\r\n<h4>1.0.2</h4>\r\n<ul>\r\n 	<li>Added export users</li>\r\n 	<li>Added scheduled exports</li>\r\n 	<li>Added orders export</li>\r\n 	<li>Added filtering options</li>\r\n</ul>\r\n<h4>1.0.1</h4>\r\n<ul>\r\n 	<li>updated icons</li>\r\n 	<li>fixed taxonomies export</li>\r\n</ul>\r\n<h4>1.0.0</h4>\r\n<ul>\r\n 	<li>Initial release</li>\r\n</ul>\";}s:7:\"banners\";a:2:{s:4:\"high\";s:56:\"https://ps.w.org/wp-all-export/assets/banner-772x250.png\";s:3:\"low\";s:0:\"\";}s:18:\"custom_update_note\";s:0:\"\";s:19:\"update_note_version\";s:0:\"\";s:5:\"icons\";a:0:{}s:3:\"msg\";s:33:\"No license key has been provided.\";s:6:\"tested\";s:5:\"6.4.2\";s:6:\"author\";s:6:\"Soflyy\";s:8:\"requires\";s:3:\"5.0\";s:12:\"requires_php\";s:3:\"7.4\";s:12:\"contributors\";a:2:{s:6:\"soflyy\";a:3:{s:12:\"display_name\";s:6:\"soflyy\";s:7:\"profile\";s:37:\"https://profiles.wordpress.org/soflyy\";s:6:\"avatar\";s:51:\"https://wordpress.org/grav-redirect.php?user=soflyy\";}s:11:\"wpallimport\";a:3:{s:12:\"display_name\";s:11:\"wpallimport\";s:7:\"profile\";s:42:\"https://profiles.wordpress.org/wpallimport\";s:6:\"avatar\";s:56:\"https://wordpress.org/grav-redirect.php?user=wpallimport\";}}}','no'),(303145,'wp-all-export-pro_f3e07d8a5567b52eda97b45478a42948','O:8:\"stdClass\":18:{s:11:\"new_version\";s:5:\"1.8.6\";s:14:\"stable_version\";s:5:\"1.8.6\";s:4:\"name\";s:13:\"WP All Export\";s:4:\"slug\";s:17:\"wp-all-export-pro\";s:3:\"url\";s:68:\"https://www.wpallimport.com/downloads/wp-all-export-pro/?changelog=1\";s:12:\"last_updated\";s:19:\"2023-12-04 11:16:50\";s:8:\"homepage\";s:56:\"https://www.wpallimport.com/downloads/wp-all-export-pro/\";s:8:\"sections\";a:2:{s:11:\"description\";s:164:\"<p>Learn more about WP All Export at <a href=\"http://www.wpallimport.com/export\" target=\"_blank\" rel=\"noopener noreferrer\">http://www.wpallimport.com/export</a></p>\";s:9:\"changelog\";s:35960:\"<h4>1.8.6</h4>Minimum WordPress version: 5.0\r\nMinimum PHP version: 7.4\r\n<ul>\r\n<li>security improvement</li>\r\n<li>API: add new filter \'wp_all_export_functions_file_path\' to change the Function Editor\'s file location</li>\r\n<li>API: add new filter \'wp_all_export_product_variation_where\' to override the WP_Query \'where\' for variations</li>\r\n<li>API: add new filter \'wp_all_export_meta_query_limit\' to control how many custom fields can be shown</li>\r\n<li>bug fix: resolve PHP notices for ajax requests</li>\r\n<li>bug fix: fatal error on pre-HPOS WooCommerce versions</li>\r\n<li>bug fix: fatal error in some cases when exporting to XML or GMC</li>\r\n<li>bug fix: fatal error when retrieving file if export doesn\'t exist</li>\r\n<li>bug fix: PHP 8.2 errors</li>\r\n<li>improvement: better handling of brackets in exported data when using custom export fields</li><h4>1.8.5</h4><ul>\r\n<li>minimum WordPress version: 5.0</li>\r\n<li>minimum PHP version: 7.2</li>\r\n<li>note: WooCommerce Export Add-On 1.0.8+ is required to export orders</li>\r\n<li>improvement: better PHP 8.2 support</li>\r\n<li>improvement: add support for filtering by parent slug</li>\r\n<li>improvement: enable adding BOM to files by default for new exports and improve description</li>\r\n<li>improvement: minimize code called during AJAX requests</li>\r\n<li>improvement: remove \'wp_navigation\' from dropdown on Step 1</li>\r\n<li>improvement: gracefully handle cron URL calls to nonexistent exports</li>\r\n<li>improvement: add \'cancel\' action for cron URLs</li>\r\n<li>improvement: only add code to \'admin_head\' when on WP All Export pages</li>\r\n<li>bug fix: resolve miscellaneous PHP notices</li>\r\n<li>bug fix: setting \'Display each product in its own row\' not saved in some cases</li>\r\n<li>bug fix: prevent saved WP All Export sessions from being corrupted by some database configurations</li>\r\n</ul><h4>1.8.4</h4><ul>\r\n<li>minimum WordPress version: 5.0</li>\r\n<li>minimum PHP version: 7.2</li>\r\n<li> improvement: prevent caching of file URLs used with Zapier</li>\r\n<li> adjustment: uncheck \'Display each product in its own row ?\' by default when using \'Migrate\' option for WooCommerce Orders</li>\r\n<li> bug fix: corrected XML layout when using real time order exports</li>\r\n<li> bug fix: corrected exporting of comment IDs to XLS</li>\r\n<li> bug fix: ensure the correct Unique Identifier is set when using the \'Import with WP All Import\' option</li>\r\n</ul><h4>1.8.3</h4><ul>\r\n<li>bug fix: resolve \'enable_real_time_exports\' notice</li>\r\n<li>bug fix: fatal error when post types are defined using closures</li>\r\n</ul><h4>1.8.2</h4><ul>\r\n<li>improvement: individual record data is now available in Zapier when using real time exports (requires 2.0.1+ Zapier trigger version)</li>\r\n<li>improvement: allow exporting \'0\' value in ACF fields</li>\r\n<li>improvement: better \'s\' parameter support for WP_Query exports</li>\r\n<li>improvement: clean up PHP 8 related notices</li>\r\n<li>improvement: better support for symlinked /upload folders</li>\r\n<li>improvement: remove deprecated jQuery functions</li>\r\n<li>improvement: enhanced real time exporting support for RealHomes theme properties</li>\r\n<li>bug fix: don\'t change the \'Product\' label used in the ShopCommerce theme\'s breadcrumbs</li>\r\n<li>bug fix: resolve PHP notices related to Google Merchant Center exports</li>\r\n<li>bug fix: prevent custom XML editor from being shown when exporting to CSV in rare circumstances</li>\r\n<li>bug fix: correct Gravity Forms exported record counts</li>\r\n<li>bug fix: delete missing now works properly with imports created with the \'Import with WP All Import\' option</li>\r\n</ul><h4>1.8.1</h4><ul>\r\n<li>new feature: real time exports - <a href=\"https://www.wpallimport.com/documentation/how-to-run-real-time-exports/\" target=\"_blank\">https://www.wpallimport.com/documentation/how-to-run-real-time-exports/</a> </li>\r\n<li>improvement: set headers to prevent cron URLs and export bundle from being cached</li>\r\n<li>bug fix: enable use of \'s\', \'LIKE\' and \'NOT LIKE\' in WP_Query exports</li>\r\n</ul><h4>1.8.0 </h4><ul><li>bug fix: revert filtering improvements</li></ul>\r\n<h4>1.7.9</h4><ul>\r\n<li>security improvement</li>\r\n<li>bug fix: JavaScript error when the user has the \'Disable syntax highlighting when editing code\' option enabled</li>\r\n<li>bug fix: only one export field can use the \'Export the value returned by a PHP function\' option at a time</li>\r\n<li>improvement: restore compatibility for WordPress 5.0+</li>\r\n<li>improvement: better filtering performance</li>\r\n<li>improvement: better \'custom export field\' performance</li>\r\n</ul><h4>1.7.8</h4><ul><li>bug fix: cannot export products in a single language when using WPML</li></ul>\r\n</ul><h4>1.7.7</h4><ul>\r\n<li>new feature: add option to disable generation of empty export files if no records are matched for export when running via automation</li>\r\n<li>bug fix: allow exporting empty value with custom export field</li>\r\n<li>bug fix: encoded ampersand showing in \'Confirm & Run\' text</li>\r\n<li>bug fix: delimiters are sometimes removed when a field with multiple values is used in a custom export field</li>\r\n<li>bug fix: prevent caching of GMC export files</li>\r\n<li>bug fix: properly format multiple values provided via \'Custom data\' for Product Type in a GMC export</li>\r\n<li>improvement: resolve miscellaneous PHP notices</li>\r\n<li>improvement: only check Scheduling Service connectivity if a Scheduling license has been saved</li>\r\n<li>improvement: UI enhancements</li>\r\n<li>improvement: use CodeMirror library from WordPress Core</li>\r\n</ul><h4>1.7.6</h4><ul>\r\n<li>improvement: add support for Country, Region, and Service shipping sub-attributes for GMC exports</li>\r\n<li>bug fix: can\'t save code to Function Editor</li>\r\n<li>bug fix: error when product dimensions are empty in GMC exports</li>\r\n</ul><h4>1.7.5</h4><ul>\r\n<li>improvement: UI updates</li>\r\n</ul><h4>1.7.4</h4>- bug fix: jQuery nestedSortable compatibility with WordPress 5.9\r\n- improvement: PHP 8 compatibility<h4>1.7.3</h4><ul>\r\n<li>New Feature: compatibility with the Gravity Forms Export Add-On</li>\r\n<li>improvement: fallback to PclZip if ZipArchive isn\'t available</li>\r\n<li>improvement: add support for Cyrillic and Greek characters in element names</li>\r\n<li>bugfix: some output not correctly escaped</li>\r\n<li>bugfix: in some cases, export files are cached when downloaded via a direct link</li>\r\n<li>bugfix: error when exporting attributes</li>\r\n<li>bugfix: notice  when saving client mode settings</li>\r\n<li>bugfix: error on PHP 8 when exports are corrupt</li>\r\n<li>bugfix: error when exporting custom field in simple XML</li>\r\n</ul><h4>1.7.2</h4><ul>\r\n<li>improvement: add support for exporting non-WooCommerce \'product\' CPTs</li>\r\n<li>improvement: initial PHP 8 support</li>\r\n<li>bug fix: fatal error when running \'post\' WP_Query export</li>\r\n<li>bug fix: unexpected newline added to manual custom XML exports</li>\r\n<li>bug fix: CPT exports failing when WooCommerce Export Add-On not active</li>\r\n<li>bug fix: Google Merchant Center shipping dimension unit conversions were incorrect in some cases</li>\r\n<li>bug fix</li>\r\n</ul><h4>1.7.1</h4>\r\n<ul>\r\n 	<li>improvement: decrease the frequency of plugin update checks</li>\r\n 	<li>improvement: add HKG Dollar to Google Merchant Center exports</li>\r\n 	<li>bugfix: error when filtering by WPML language</li>\r\n 	<li>bugfix: WPML language filter not applied when running scheduled exports</li>\r\n 	<li>bugfix: closing tag missing when custom XML export files are empty</li>\r\n</ul>\r\n<h4>1.7.0</h4>\r\n<ul>\r\n 	<li>improvement: added RON to Google Merchant Center export currencies</li>\r\n 	<li>improvement: moved ACF and WooCommerce support to add-ons</li>\r\n</ul>\r\n<h4>1.6.7</h4>\r\n<ul>\r\n 	<li>bugfix: XML tag appended to empty CSV files</li>\r\n 	<li>bugfix: ACF user email field not exported correctly</li>\r\n 	<li>bugfix: PHP notice when adjusting prices in Google Merchant Center exports</li>\r\n</ul>\r\n<h4>1.6.6</h4>\r\n<ul>\r\n 	<li>maintenance: compatibility with Elementor v3.3 JavaScript changes</li>\r\n</ul>\r\n<h4>1.6.5</h4>\r\n<ul>\r\n 	<li>improvement: hide _oembed_ fields from custom fields</li>\r\n 	<li>improvement: update scheduling keys in the scheduling service when changed in settings</li>\r\n 	<li>bugfix: filtering by a custom field called featured working only for products</li>\r\n 	<li>bugfix: functions with empty string arguments not parsed correctly in Custom XML exports</li>\r\n 	<li>bugfix: ratings and star count not exported in WooCommerce Review exports</li>\r\n 	<li>bugfix: simple XML exports generate invalid XML when there are no records by missing the closing tag</li>\r\n 	<li>bugfix: values that contain square brackets not exported in Google Merchants Exports</li>\r\n 	<li>bugfix: custom functions not correctly parsed in Google Merchants Exports</li>\r\n 	<li>bugfix: ACF repeater fields are exported using commas as a delimiter, but the bundle defaults to pipes when importing</li>\r\n</ul>\r\n<h4>1.6.4</h4>\r\n<ul>\r\n 	<li>improvement - remove Friendly Name editing option from Client Mode</li>\r\n 	<li>bugfix - array_intersect_key error when PMXE_Options are corrupt</li>\r\n 	<li>bugfix - order item fields with HTML encoded names can\'t be exported</li>\r\n</ul>\r\n<h4>1.6.3</h4>\r\n<ul>\r\n 	<li>New Feature: Allow non-admins to run exports with Client Mode</li>\r\n 	<li>bug fix: incorrect number of processed entries when exporting items only once in multiple iterations</li>\r\n 	<li>bug fix: Google Merchant Center throws error on shipping length</li>\r\n 	<li>bug fix: state not saved for \'Fill in empty columns\' and \'Display each repeater row in its own csv line\' in ACF repeater fields</li>\r\n 	<li>bug fix: js error when removing filters</li>\r\n 	<li>bug fix: use wp_salt() when AUTH_SALT isn\'t defined</li>\r\n 	<li>bug fix: downloadable files aren\'t migrated properly in some cases</li>\r\n 	<li>bug fix: \'0\' is present in the \'Export the value returned by a PHP function\' setting for Attachment fields</li>\r\n 	<li>bug fix: import template in bundle file not set to choose \'WooCommerce Reviews\' when imported</li>\r\n 	<li>bug fix: featured and attached images options not working for image fields</li>\r\n</ul>\r\n<h4>1.6.2</h4>\r\n<ul>\r\n 	<li>bugfix: some checkbox options broken after WordPress v5.5 compatibility fix</li>\r\n</ul>\r\n<h4>1.6.1</h4>\r\n<ul>\r\n 	<li>maintenance: compatibility with WordPress v5.5 jQuery changes</li>\r\n</ul>\r\n<h4>1.6.0</h4>\r\n<ul>\r\n 	<li>improvement: Export WooCommerce Reviews</li>\r\n 	<li>improvement: Migrate Comments and WooCommerce Reviews</li>\r\n 	<li>improvement: Export Cost of Goods Sold to Google Merchant Center</li>\r\n 	<li>improvement: Add WP_Query support for Toolset Types exports</li>\r\n 	<li>bug fix: time not exported in fields with date and time</li>\r\n 	<li>bug fix: date filters with ‘equal or older than’ doesn\'t include dates equal to the filter value</li>\r\n 	<li>bug fix: no default value for \"Set to false if product has no GTIN or MPN\"</li>\r\n 	<li>bug fix: PHP 7.3 warnings when exporting Excel files</li>\r\n</ul>\r\n<h4>1.5.11</h4>\r\n<ul>\r\n 	<li>improvement: export custom ACF fields defined in Gutenberg blocks</li>\r\n 	<li>improvement: disable scheduled exports via Automatic Scheduling UI</li>\r\n 	<li>API: add new filter wp_all_export_no_cache to avoid server cache for export files</li>\r\n 	<li>bug fix: WPAE UI is translated to the filtered WPML language</li>\r\n 	<li>bug fix: custom functions unavailable when editing an exported field</li>\r\n 	<li>bug fix: unable to update filters on the Run Export page</li>\r\n 	<li>bug fix: date filters including first/last day of month do not work properly</li>\r\n 	<li>bug fix: notices related to Google Merchants exports</li>\r\n 	<li>bug fix: exports sent to Zapier in the incorrect order</li>\r\n 	<li>bug fix: WooCommerce customer exports do not correctly report the number of exported customers</li>\r\n 	<li>bug fix: unable to only export customers once via scheduled exports</li>\r\n 	<li>bug fix: fields containing commas incorrectly exported to Google Merchant Center</li>\r\n 	<li>bug fix: product names are incorrectly urlencoded in custom XML exports</li>\r\n 	<li>bug fix: taxonomy meta fields not available for export</li>\r\n 	<li>bug fix: 0 values are represented as an empty string in custom XML exports</li>\r\n 	<li>bug fix: order items doubled in custom export fields in custom XML exports</li>\r\n 	<li>bug fix: custom fields not parsed correctly in custom XML exports</li>\r\n 	<li>bug fix: Manual Scheduling disabled when Automatic Scheduling is selected</li>\r\n 	<li>bug fix: unable to filtering by hours or minutes in some cases</li>\r\n 	<li>bug fix: unable to export ACF group fields</li>\r\n 	<li>bug fix: trying to delete History File fails ungracefully if it doesn\'t exist</li>\r\n 	<li>bug fix: Fee Amount exporting as an empty field in custom XML exports</li>\r\n</ul>\r\n<h4>1.5.10</h4>\r\n<ul>\r\n 	<li>improvement: add SAR currency to Google Merchant Center</li>\r\n 	<li>improvement: add default Unit Pricing Measure to Google Merchant Center</li>\r\n 	<li>improvement: only update max_execution_time on plugin requests, don\'t modify it globally</li>\r\n 	<li>bugfix: unable to export WooCommerce customers to XML</li>\r\n 	<li>bugfix: error with empty strings at the beginning or end of function calls</li>\r\n 	<li>bugfix: ACF date field not parsed correctly with some custom date formats</li>\r\n 	<li>bugfix: unable to export image galleries inside ACF flexible content fields to XML</li>\r\n 	<li>bugfix: time-based export filters should use GMT not server time</li>\r\n</ul>\r\n<h4>1.5.9</h4>\r\n<ul>\r\n 	<li>bug fix: unable to export users</li>\r\n</ul>\r\n<h4>1.5.8</h4>\r\n<ul>\r\n 	<li>improvement: add UAH currency to Google Merchant Center exports</li>\r\n 	<li>API: add \'pmxe_is_bundle\' filter</li>\r\n 	<li>bug fix: unable to filter by user data</li>\r\n 	<li>bug fix: wp_query missing error in some cases</li>\r\n 	<li>bug fix: ACF link export incorrectly formatted</li>\r\n 	<li>bug fix: \"Tax Amount\" rounded to nearest integer</li>\r\n 	<li>bug fix: currency included in price field when price is empty for Google Merchant Center exports</li>\r\n</ul>\r\n<h4>1.5.7</h4>\r\n<ul>\r\n 	<li>improvement: add Thai Baht to Google Merchant Center currencies</li>\r\n 	<li>improvement: add custom line endings for CSV</li>\r\n 	<li>API: add new action pmxe_acf_date_picker_format to set custom ACF date formats</li>\r\n 	<li>bugfix: unable to use wp-cron for scheduled exports on sites running PHP-FPM and WordPress 5.1+</li>\r\n 	<li>switched to wp-load for cron URLs, with backwards compatibility for wp-cron</li>\r\n 	<li>bugfix: ACF repeaters export incorrect values in ACF version 5.7.10+</li>\r\n 	<li>bugfix: Google Merchant Center incorrectly converts units from inches to mm</li>\r\n 	<li>bugfix: ACF date format not parsed correctly</li>\r\n 	<li>bugfix: tax amount incorrectly calculated in PHP 7.1+</li>\r\n 	<li>bugfix: is_empty field only looks for NULL fields, not empty values</li>\r\n 	<li>bugfix: exporting ACF user fields results in error</li>\r\n</ul>\r\n<h4>1.5.6</h4>\r\n<ul>\r\n 	<li>add-on: move all user export functionality to new user export add-on</li>\r\n 	<li>improvement: preserve admin body classes that are added by other plugins</li>\r\n 	<li>improvement: change scheduling endpoints from wp-cron.php to wp-load.php for WordPress 5.1/PHP-FPM compatibility</li>\r\n 	<li>bugfix: change language code alias for WPML compatibility</li>\r\n 	<li>bugfix: meta keys that are not returned as an array are exported as empty</li>\r\n 	<li>bugfix: allow uppercase ID in custom XML template</li>\r\n 	<li>bugfix: use ACF date format for date pickers</li>\r\n 	<li>bugfix: custom export field notices not working for WooCommerce orders</li>\r\n 	<li>bugfix: missing items in combine multiple fields are not replaced</li>\r\n 	<li>bugfix: term ID missing when using custom fields and exporting taxonomies</li>\r\n 	<li>bugfix: some WooCommerce attributes cause errors when writing to CSV</li>\r\n 	<li>bugfix: scheduling API responses improperly translated</li>\r\n 	<li>bugfix: changes to field not rendered in preview from edit field modal</li>\r\n</ul>\r\n<h4>1.5.5</h4>\r\n<ul>\r\n 	<li>bug fix: compatibility with ACF v5.7.11</li>\r\n</ul>\r\n<h4>1.5.4</h4>\r\n<ul>\r\n 	<li>improvement: add RTL support for Excel</li>\r\n 	<li>improvement: add Indonesian Rupiah to Google Merchant Center</li>\r\n 	<li>improvement: add Google Merchant Center field name as global variable to be used in custom functions</li>\r\n 	<li>bugfix: improve support for quotes in custom xml</li>\r\n 	<li>bugfix: increase number of rendered categories for Google Merchant Center</li>\r\n 	<li>bugfix: Google Merchant Center dimensions</li>\r\n 	<li>bugfix: include variations when filtering by categories</li>\r\n 	<li>bugfix: combine error messages when exporting refunds</li>\r\n 	<li>bugfix: refund ID snippet not being replaced when field is missing</li>\r\n 	<li>bugfix: fix filtering error when exporting comments</li>\r\n 	<li>bugfix: support exports scheduled at 12am and 12pm</li>\r\n 	<li>bugfix: fix filtering products with titles that contain slashes</li>\r\n 	<li>bugfix: merge headers for empty columns at end of file</li>\r\n 	<li>bugfix: fix filtering UI for long titles</li>\r\n 	<li>bugfix: allow exporting ACF checkbox fields</li>\r\n 	<li>bugfix: pmxe_woo_field parameters incorrect</li>\r\n 	<li>bugfix: downloadable files in custom XML not exporting</li>\r\n 	<li>bugfix: close incorrect tags when exporting ACF</li>\r\n 	<li>bugfix: export serialized values in combined fields</li>\r\n 	<li>bugfix: custom functions in Google Merchant Center price elements not triggering</li>\r\n 	<li>bugfix: get_site_url in multisite when using Google Merchant Center</li>\r\n 	<li>bugfix: allow users to be filtered by name</li>\r\n 	<li>bugfix: fix custom export fields in simple XML exports</li>\r\n 	<li>bugfix: fix tax rate code exports in custom export fields</li>\r\n</ul>\r\n<h4>1.5.3</h4>\r\n<ul>\r\n 	<li>improvement: improve function parsing in custom export fields</li>\r\n 	<li>improvement: Google Merchant Center titles are limited to 150 characters</li>\r\n 	<li>improvement: increase custom query meta limit</li>\r\n 	<li>new filter: added pmxe_after_iteration action</li>\r\n 	<li>bugfix: remove deprecated function calls for PHP 7.2 compatibility</li>\r\n 	<li>bugfix: address various PHP warnings and notices</li>\r\n 	<li>bugfix: filters for WooCommerce product variations</li>\r\n 	<li>bugfix: graceful failure for non:writable uploads folder</li>\r\n 	<li>bugfix: add warning when exporting WooCommerce orders using Automatic Scheduling</li>\r\n 	<li>bugfix: WooCommerce product variations exported as separate products when adding product attributes to custom export fields</li>\r\n 	<li>bugfix: function editor not rendered until clicked</li>\r\n 	<li>bugfix: small UI and spacing issues</li>\r\n 	<li>bugfix: WooCommerce products don\'t on their own row in order exports when using custom export fields</li>\r\n 	<li>bugfix: prices with more than two decimal places are not exported correctly</li>\r\n 	<li>bugfix: \'Only export orders that have been modified since last export\' doesn\'t work when filtering orders</li>\r\n 	<li>bugfix: exporting empty ACF values shifts rows in CSV exports</li>\r\n 	<li>bugfix: Australia missing from scheduling timezones</li>\r\n 	<li>bugfix: exporting meta in WooCommerce orders</li>\r\n 	<li>bugfix: unable to filter or export WooCommerce product visibility data</li>\r\n 	<li>bugfix: cannot export product type for variable products to Google Merchant Center</li>\r\n 	<li>bugfix: Google Merchant Center exports cannot automatically map sub-categories</li>\r\n</ul>\r\n<h4>1.5.2</h4>\r\n<ul>\r\n 	<li>improvement: Support migrating users &amp; keeping passwords</li>\r\n 	<li>improvement: Add Featured Image to Available Data › Media</li>\r\n 	<li>new filter: wp_all_export_raw_prices - disables price formatting</li>\r\n 	<li>bugfix: Error thrown when uploads folder is not writable</li>\r\n 	<li>bugfix: Preview is broken for date fields</li>\r\n 	<li>bugfix: Product visibility broken for old WooCommerce versions</li>\r\n 	<li>bugfix: Custom Export Field values not saved in some cases</li>\r\n 	<li>bugfix: Headers not matching content when they contain special characters</li>\r\n 	<li>bugfix: Headers not matching content when exporting certain ACF fields</li>\r\n 	<li>bugfix: Loading order for styles optimized to reduce conflicts</li>\r\n 	<li>bugfix: Import templates broken for WooCommerce product attributes</li>\r\n 	<li>bugfix: \'Export Images from Post Content\' option doesn\'t displaying in some cases</li>\r\n 	<li>bugfix: JSON parameters can now be passed through functions in Google Merchant Center exports</li>\r\n 	<li>bugfix: WP Query exports broken for users and comments</li>\r\n 	<li>bugfix: Meta missing when migrating unattached images</li>\r\n 	<li>bugfix: Available Data broken when there\'s more than 500 data elements</li>\r\n 	<li>bugfix: Custom Export Fields are unstable when many are added to the same export</li>\r\n</ul>\r\n<h4>1.5.1</h4>\r\n<ul>\r\n 	<li>bug fix: custom fields are exported as their name</li>\r\n</ul>\r\n<h4>1.5.0</h4>\r\n<ul>\r\n 	<li>new feature: Automatic Scheduling</li>\r\n 	<li>new feature: Custom export fields</li>\r\n 	<li>improvement: licenses hidden in the ui and encoded in the database</li>\r\n 	<li>improvement: improved error reporting for custom functions errors</li>\r\n 	<li>improvement: changed excerpt to short description</li>\r\n 	<li>improvement: better price formatting</li>\r\n 	<li>improvement: better function parsing in Google Merchant Center exports</li>\r\n 	<li>improvement: exclude parent products from Google Merchant Center exports</li>\r\n 	<li>improvement: added CHF to list of supported Google Merchant Center currencies</li>\r\n 	<li>improvement: added support for acf clone field</li>\r\n 	<li>improvement: added security token to cron URLs for improved security</li>\r\n 	<li>improvement: added author information to Available Data</li>\r\n 	<li>improvement: added wp_all_export_order_item filter</li>\r\n 	<li>improvement: added wp_all_export_use_csv_compliant_line_endings filter</li>\r\n 	<li>improvement: added wp_all_export_pre_csv_headers filter</li>\r\n 	<li>improvement: added wp_all_export_repeater_delimiter filter</li>\r\n 	<li>bugfix: PHP notices and warnings</li>\r\n 	<li>bugfix: error when activating Pro version and Free version</li>\r\n 	<li>bugfix: splitting custom XML export files</li>\r\n 	<li>bugfix: removed moment.js which was causing false virus positives in some browsers</li>\r\n 	<li>bugfix: Google Merchant Center category mapping</li>\r\n 	<li>bugfix: do not update comment status by default</li>\r\n 	<li>bugfix: \"only export modified posts\" when using cron</li>\r\n 	<li>bugfix: file name filters when using crons</li>\r\n 	<li>bugfix: shortcodes in custom XML snippets</li>\r\n 	<li>bugfix: ACF flexible fields</li>\r\n 	<li>bugfix: problems when running Google Merchant Center exports via cron</li>\r\n 	<li>bugfix: CSV writer fixes to take into account https://bugs.php.net/bug.php?id=43225</li>\r\n 	<li>bugfix: exporting ACF and custom fields with HTML tags</li>\r\n 	<li>bugfix: stray root tags in WooCommerce Order exports</li>\r\n 	<li>bugfix: timeouts when connecting Jetpack to WordPress.com</li>\r\n 	<li>bugfix: exporting product images in Google Merchant Center</li>\r\n 	<li>bugfix: corrupted Excel files</li>\r\n 	<li>bugfix: conflicts with some plugins changing the post order</li>\r\n 	<li>bugfix: comment handling in custom XML</li>\r\n 	<li>bugfix: blank CodeMirror in dialogs</li>\r\n 	<li>bugfix: parsing CDATA tags that contain HTML tags</li>\r\n 	<li>bugfix: Google Merchant Center handling quotes in functions</li>\r\n 	<li>bugfix: improved Google Merchant Center snippet parser</li>\r\n 	<li>bugfix: CSV headers when field names contained quotes</li>\r\n 	<li>bugfix: included WPML query in variation query</li>\r\n 	<li>bugfix: handling of the \"visibility\" field based on WooCommerce version</li>\r\n</ul>\r\n<h4>1.4.7</h4>\r\n<ul>\r\n 	<li>improvement: Improved accuracy for export timer</li>\r\n 	<li>improvement: Removed moment.js dependency which causes false positives in some antivirus software</li>\r\n 	<li>imporovement New export complete page</li>\r\n 	<li>bugfix: Fixed problems when switching from WPAE free to WPAE pro</li>\r\n 	<li>bugfix: Special characters in product attributes support</li>\r\n 	<li>bugfix: Fix category mapper containing special characters</li>\r\n 	<li>bugfix: Fixed parsing content with shortcodes in custom XML Export</li>\r\n 	<li>bugfix: Fixed exporting ACF fields with no value for some posts</li>\r\n</ul>\r\n<h4>1.4.6</h4>\r\n<ul>\r\n 	<li>improvement: removed autoload=true from wp_options</li>\r\n 	<li>improvement: use \'Export product variations and their parent products\' by default</li>\r\n 	<li>improvement: WPML options in separate section</li>\r\n 	<li>improvement: category mapper optimization</li>\r\n 	<li>improvement: memory usage to avoid memory limit errors</li>\r\n 	<li>bug fix: allow underscores in main xml tags</li>\r\n 	<li>bug fix: prevent uploading import template into wpae</li>\r\n 	<li>bug fix: ID column in CSV</li>\r\n 	<li>bug fix: date equals or older filter</li>\r\n 	<li>bug fix: ACF repeater headers</li>\r\n 	<li>bug fix: size type mapper and no categories message</li>\r\n 	<li>bug fix: export ID in custom XML mode</li>\r\n 	<li>bug fix: date filtering</li>\r\n 	<li>bug fix: export product variation status</li>\r\n 	<li>bug fix: the \"Shipping Class\" field in Google Merchants export.</li>\r\n</ul>\r\n<h4>1.4.5</h4>\r\n<ul>\r\n 	<li>improvement: added new option \'Only export Pages that have been modified since last export\'</li>\r\n 	<li>improvement: added post_modified field</li>\r\n 	<li>improvement: handling functions in google meerchants fields</li>\r\n 	<li>bug fix: snippets parsing in Custom XML Export</li>\r\n 	<li>bug fix: template saving. Fixed product image export to Google Merchants</li>\r\n 	<li>bug fix: export attributes for simple products</li>\r\n 	<li>bug fix: db schema updating</li>\r\n 	<li>bug fix: variations with trashed parents shouldn\'t be included in the export</li>\r\n 	<li>bug fix: google Merchants inconsistent category search</li>\r\n 	<li>bug fix: minified JS to avoid problems for CloudFlare users</li>\r\n</ul>\r\n<h4>1.4.4</h4>\r\n<ul>\r\n 	<li>improvement: export to Google Merchant Center</li>\r\n 	<li>improvement: choose WPML language in export options</li>\r\n 	<li>improvement: filter WooCommerce Orders by order item data</li>\r\n 	<li>improvement: export CSV without header row</li>\r\n 	<li>bug fix: export ACF message field</li>\r\n 	<li>bug fix: export product categories with AFC repeater fields</li>\r\n 	<li>bug fix: export duplicate images from gallery</li>\r\n 	<li>bug fix: filter products by custom fields</li>\r\n 	<li>bug fix: export search</li>\r\n 	<li>bug fix: export product variation attribute names</li>\r\n 	<li>bug fix: processing serialized data in custom snippets</li>\r\n 	<li>bug fix: export more than one coupon_used field</li>\r\n 	<li>bug fix: migrating hierarchical posts and pages</li>\r\n</ul>\r\n<h4>1.4.3</h4>\r\n<ul>\r\n 	<li>improvement: compatibility with PHP 7.x</li>\r\n 	<li>improvement: new export field \'Order Item ID\'</li>\r\n 	<li>improvement: possibility for filter order by order items data</li>\r\n 	<li>improvement: new option \'Include header row and column titles in export\'</li>\r\n 	<li>bug fix: processing serialized data in custom snippets</li>\r\n 	<li>bug fix: export ACF repeater field in custom XML mode</li>\r\n 	<li>bug fix: applying php function to product attributes</li>\r\n 	<li>bug fix: export coupon_used field</li>\r\n</ul>\r\n<h4>1.4.2</h4>\r\n<ul>\r\n 	<li>new feature: added export taxonomies feature</li>\r\n 	<li>improvement: new export variable products options</li>\r\n 	<li>improvement: added possibility to export to xlsx</li>\r\n 	<li>improvement: added ACF fields to \'migrate\' &amp; \'add all fields\' features</li>\r\n 	<li>improvement: added new filter \'wp_all_export_field_name\'</li>\r\n 	<li>improvement: changed default date export to Y/m/d</li>\r\n 	<li>bug fix: export shipping class for product variations</li>\r\n 	<li>bug fix: import template for ACF relationship fields</li>\r\n 	<li>bug fix: export ACF fields in custom XML mode</li>\r\n 	<li>bug fix: export empty images metadata</li>\r\n 	<li>bug fix: import template for ACF gallery</li>\r\n 	<li>bug fix: import template for variation_description</li>\r\n 	<li>bug fix: import template for default product attributes</li>\r\n 	<li>bug fix: fields ordering for custom XML export</li>\r\n 	<li>bug fix: menu order migration</li>\r\n 	<li>bug fix: automatically adding parent_id column on products export</li>\r\n 	<li>bug fix: SQL query ( caused timeout error )</li>\r\n 	<li>bug fix: parsing snippets in attributes in elements</li>\r\n</ul>\r\n<h4>1.4.1</h4>\r\n<ul>\r\n 	<li>bug fix: compatibility with PHP 5.3</li>\r\n</ul>\r\n<h4>1.4.0</h4>\r\n<ul>\r\n 	<li>new feature: export custom xml template</li>\r\n 	<li>improvement: new filter wp_all_export_after_csv_line</li>\r\n 	<li>improvement: date options for sale price dates from/to</li>\r\n 	<li>improvement: ability to use tab as csv delimiter</li>\r\n 	<li>improvement: new filter \'wp_all_export_csv_headers\'</li>\r\n 	<li>improvement: pull the parent taxonomy data when exporting variations</li>\r\n 	<li>improvement: remove spaces from export filename</li>\r\n 	<li>bug fix: \'posts_clauses\' filter issue</li>\r\n 	<li>bug fix: db schema on multisite</li>\r\n 	<li>bug fix: export order items date</li>\r\n 	<li>bug fix: import template for media items</li>\r\n 	<li>bug fix: \'Only export Products once\' for new exports</li>\r\n 	<li>bug fix: export ACF repeater in XML format</li>\r\n 	<li>bug fix: order_completed_date filter</li>\r\n 	<li>bug fix: export in CSV format when \'Main XML Tag\' &amp; \'Record XML Tag\' option are blank</li>\r\n 	<li>bug fix: export order items taxonomies</li>\r\n 	<li>bug fix: export ACF date_time_picker</li>\r\n 	<li>bug fix: date filter by time</li>\r\n 	<li>bug fix: is empty filters</li>\r\n 	<li>bug fix: nested filter rules</li>\r\n</ul>\r\n<h4>1.3.2</h4>\r\n<ul>\r\n 	<li>fixed \'Only export Posts once\' for new exports</li>\r\n 	<li>fixed db schema for multisite</li>\r\n 	<li>fixed export order items date</li>\r\n 	<li>fixed media items export ordering</li>\r\n 	<li>fixed import template for media items</li>\r\n 	<li>fixed export ACF repeater in XML format</li>\r\n 	<li>fixed order_completed_date filter</li>\r\n 	<li>added new filter \'wp_all_export_csv_headers\'</li>\r\n 	<li>added possibility to use tab as csv delimiter \"t\"</li>\r\n 	<li>updated french translation</li>\r\n</ul>\r\n<h4>1.3.1</h4>\r\n<ul>\r\n 	<li>added WooCommerce order migration</li>\r\n 	<li>added _thumbnail_id to the filtering dropdown</li>\r\n 	<li>added new filter \'wp_all_export_is_wrap_value_into_cdata\'</li>\r\n 	<li>added new filters \'wp_all_export_add_before_element\', \'wp_all_export_add_after_element\'</li>\r\n 	<li>added \'WPML Translation ID\' element to available data</li>\r\n 	<li>modified preview to show first 10 records</li>\r\n 	<li>fixed csv export with non comma delimiter</li>\r\n 	<li>fixed conflict with WP Google Maps Pro plugin</li>\r\n 	<li>fixed downloading XLS export file when security mode is disabled</li>\r\n</ul>\r\n<h4>1.3.0</h4>\r\n<ul>\r\n 	<li>fixed misaligned columns on exporting product attributes</li>\r\n 	<li>fixed export nested repeaters field in CSV format</li>\r\n 	<li>fixed conflict between enabled ‘Only export Products once’ &amp; filtering rules</li>\r\n 	<li>fixed live records counting for advanced export mode</li>\r\n 	<li>fixed Events Calendar conflict</li>\r\n 	<li>added Google Merchants support</li>\r\n 	<li>added new filters \'wp_all_export_add_before_node\', \'wp_all_export_add_after_node\'</li>\r\n 	<li>added possibility to filter posts by author data</li>\r\n 	<li>added XLS support, redesign CSV/XML options in Step 2</li>\r\n 	<li>added feature to use php function in filtering rules</li>\r\n 	<li>added possibility export repeater rows one per line</li>\r\n 	<li>added backward compatibility for export comments on WordPress less than 4.2.0</li>\r\n 	<li>exclude orphaned variations from exprt file</li>\r\n 	<li>changed UI for export media data ( images &amp; attachments )</li>\r\n</ul>\r\n<h4>1.2.3</h4>\r\n<ul>\r\n 	<li>fixed export attachment meta alt</li>\r\n 	<li>fixed export manually stored ACF</li>\r\n 	<li>fixed export repeater field for users in csv format</li>\r\n 	<li>fixed saving special chars in function editor</li>\r\n 	<li>fixed import export templates</li>\r\n 	<li>fixed error on activate WPAE license</li>\r\n 	<li>fixed ajaxurl conflict with WPML</li>\r\n 	<li>fixed filtering by ACF taxonomy field</li>\r\n 	<li>create a stable copy of exported file for remote access during export process</li>\r\n 	<li>added French &amp; Latvian translations</li>\r\n 	<li>added \'Variation Description\' field</li>\r\n</ul>\r\n<h4>1.2.2</h4>\r\n<ul>\r\n 	<li>fixed \'wp_all_export_additional_data\' filter on cron job</li>\r\n 	<li>fixed Zapier intergation</li>\r\n 	<li>fixed import template for variable products</li>\r\n 	<li>fixed css for WordPress 4.4</li>\r\n 	<li>fixed export ACF repeater field</li>\r\n</ul>\r\n<h4>1.2.1</h4>\r\n<ul>\r\n 	<li>added export comments</li>\r\n 	<li>added possibility to add NS to field names</li>\r\n 	<li>fixed export repeater field ACF 4.x</li>\r\n 	<li>fixed cron export, was exported wrong data amount when there are sticky posts in database</li>\r\n 	<li>fixed updating filter rules on cron job</li>\r\n 	<li>fixed error on edit custom column name for Woo Orders</li>\r\n</ul>\r\n<h4>1.2.0</h4>\r\n<ul>\r\n 	<li>fixed manage exports screen: \"Info and options\" disappears when WPAI plugin is disabled</li>\r\n 	<li>fixed WP_Query results ordering</li>\r\n 	<li>fixed export ACF repeater field for CSV</li>\r\n 	<li>fixed export filtering</li>\r\n 	<li>added es_ES translation</li>\r\n 	<li>added possibility to change export field name ( related to export WooCommerce Orders )</li>\r\n 	<li>added option \'Split large exports into multiple files\'</li>\r\n 	<li>added option \'Only export posts once\'</li>\r\n 	<li>added option \'Create a new export file each time export is run\'</li>\r\n 	<li>added option \'Fill in empty columns\': If enabled, each order item will appear as its own row with all order info filled in for every column. If disabled, order info will only display on one row with only the order item info displaying in additional rows</li>\r\n 	<li>added ‘pmxe_exported_post’ action: do_action(\'pmxe_exported_post\', $record-&gt;ID );</li>\r\n 	<li>added Zapier support ( beta )</li>\r\n 	<li>added possibility to control main xml tag names &amp; put additional info into xml file: apply_filters(\'wp_all_export_additional_data\', array(), $exportOptions)</li>\r\n 	<li>added export templates</li>\r\n 	<li>added hidden post types to the dropdown list on step 1</li>\r\n 	<li>replaced \'export key\' to \'export hash\' in \'Export File URL\' on scheduling page</li>\r\n 	<li>updated re-run export screen</li>\r\n</ul>\r\n<h4>1.1.1</h4>\r\n<ul>\r\n 	<li>fixed download bundle</li>\r\n 	<li>fixed export repeater fields for ACF 4.x</li>\r\n 	<li>fixed import template for custom product attributes</li>\r\n 	<li>fixed cron job responses, now theay are in JSON format</li>\r\n 	<li>added bundle URL to scheduling page</li>\r\n 	<li>added new option \'include BOM to export file</li>\r\n 	<li>added RU translation</li>\r\n 	<li>added function editor</li>\r\n 	<li>removed hidden post types from dropdown in step 1</li>\r\n</ul>\r\n<h4>1.1.0</h4>\r\n<ul>\r\n 	<li>fixed export taxonomy: name instead of slug</li>\r\n 	<li>fixed export filtering (query with multiple meta keys)</li>\r\n 	<li>fixed display products in own row option</li>\r\n 	<li>fixed pass data through php function</li>\r\n 	<li>added advanced (custom fields) section to export woo orders</li>\r\n 	<li>added draggable element deletion</li>\r\n 	<li>added auto-generate product export fields</li>\r\n 	<li>added \'attributes\' field to product data</li>\r\n 	<li>added feedback page</li>\r\n 	<li>added another \'Auto Generate\' button for products export</li>\r\n 	<li>added button to download bundle for WP All Import</li>\r\n 	<li>updated export file name</li>\r\n 	<li>changed export files destination to /exports</li>\r\n</ul>\r\n<h4>1.0.2</h4>\r\n<ul>\r\n 	<li>Added export users</li>\r\n 	<li>Added scheduled exports</li>\r\n 	<li>Added orders export</li>\r\n 	<li>Added filtering options</li>\r\n</ul>\r\n<h4>1.0.1</h4>\r\n<ul>\r\n 	<li>updated icons</li>\r\n 	<li>fixed taxonomies export</li>\r\n</ul>\r\n<h4>1.0.0</h4>\r\n<ul>\r\n 	<li>Initial release</li>\r\n</ul>\";}s:7:\"banners\";a:2:{s:4:\"high\";s:56:\"https://ps.w.org/wp-all-export/assets/banner-772x250.png\";s:3:\"low\";s:0:\"\";}s:18:\"custom_update_note\";s:0:\"\";s:19:\"update_note_version\";s:0:\"\";s:5:\"icons\";a:0:{}s:3:\"msg\";s:33:\"No license key has been provided.\";s:6:\"tested\";s:5:\"6.4.2\";s:6:\"author\";s:6:\"Soflyy\";s:8:\"requires\";s:3:\"5.0\";s:12:\"requires_php\";s:3:\"7.4\";s:12:\"contributors\";a:2:{s:6:\"soflyy\";a:3:{s:12:\"display_name\";s:6:\"soflyy\";s:7:\"profile\";s:37:\"https://profiles.wordpress.org/soflyy\";s:6:\"avatar\";s:51:\"https://wordpress.org/grav-redirect.php?user=soflyy\";}s:11:\"wpallimport\";a:3:{s:12:\"display_name\";s:11:\"wpallimport\";s:7:\"profile\";s:42:\"https://profiles.wordpress.org/wpallimport\";s:6:\"avatar\";s:56:\"https://wordpress.org/grav-redirect.php?user=wpallimport\";}}}','no'),(303146,'wp-all-export-pro_timeout_f3e07d8a5567b52eda97b45478a42948','1705865404','yes'),(303149,'_transient_timeout_85b8495febade7a221f67b0bca7d59d9','1705948205','no');
INSERT INTO `wpj7_options` VALUES (303150,'_transient_85b8495febade7a221f67b0bca7d59d9','O:8:\"stdClass\":18:{s:11:\"new_version\";s:5:\"4.8.5\";s:14:\"stable_version\";s:5:\"4.8.5\";s:4:\"name\";s:13:\"WP All Import\";s:4:\"slug\";s:17:\"wp-all-import-pro\";s:3:\"url\";s:68:\"https://www.wpallimport.com/downloads/wp-all-import-pro/?changelog=1\";s:12:\"last_updated\";s:19:\"2023-12-12 02:27:11\";s:8:\"homepage\";s:56:\"https://www.wpallimport.com/downloads/wp-all-import-pro/\";s:8:\"sections\";a:2:{s:11:\"description\";s:216:\"<p>Learn more about WP All Import at <a href=\"https://www.wpallimport.com/import-wordpress-csv-xml-excel/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.wpallimport.com/import-wordpress-csv-xml-excel/</a></p>\";s:9:\"changelog\";s:45284:\"<h4>4.8.5</h4><ul>\r\n<li>improvement: ensure temporary files never use a .php extension</li>\r\n<li>bug fix: restore old CSV encoding conversion behavior</li>\r\n<li>bug fix: orders cannot be matched by order meta</li>\r\n<li>bug fix: SFTP imports fail to run via cron in some cases</li>\r\n</ul><h4>4.8.4</h4><ul>\r\n<li>minimum WordPress version: 5.0</li>\r\n<li>minimum PHP version: 7.2</li>\r\n<li>bug fix: do not automatically deactivate old versions of the WooCommerce Import Add-On</li>\r\n</ul><h4>4.8.3</h4><ul>\r\n<li>minimum WordPress version: 5.0</li>\r\n<li>minimum PHP version: 7.2</li>\r\n<li>bug fix: PHP 8.2 fatal error when importing some Excel files</li>\r\n<li>bug fix: PHP 8.2 fatal error when file cannot be written in some cases</li>\r\n</ul><h4>4.8.2</h4><ul>\r\n<li>minimum WordPress version: 5.0</li>\r\n<li>minimum PHP version: 7.2</li>\r\n<li>note: WooCommerce Import Add-On 4.0.0+ is required to import orders</li>\r\n<li>new setting: add \'Do not create new terms\' setting on Edit Template page</li>\r\n<li>improvement: better PHP 8.2 support</li>\r\n<li>improvement: include example cron commands on Scheduling Options modal</li>\r\n<li>improvement: better import file preview loading</li>\r\n<li>improvement: enable updating taxonomy description image URLs when using \'Scan through post content...\' option</li>\r\n<li>improvement: enable matching review products by title</li>\r\n<li>improvement: replace tmpfile() call with wp_tempnam() to avoid host restrictions</li>\r\n<li>bug fix: preview modal isn\'t scrollable in some cases</li>\r\n<li>bug fix: resolve \'change missing\' loop in some cases when products have backorders enabled</li>\r\n<li>bug fix: resolve fatal error when taxonomies are set to update but the WooCommerce Add-On isn\'t active</li>\r\n<li>bug fix: navigating import file preview shows incorrectly numbered records</li>\r\n</ul><h4>4.8.1</h4><ul>\r\n<li> minimum required WP version: 5.0</li>\r\n<li> minimum required PHP version: 7.2.5</li>\r\n<li> improvement: remove wp_navigation from Step 1 dropdown</li>\r\n<li> improvement: fix PHP 8 deprecated notice</li>\r\n<li> improvement: add new filter \'wp_all_import_hash_ignore_options\' </li>\r\n<li> bug fix: match existing terms by ID</li>\r\n<li> bug fix: ensure records added with an \'Existing Items\' import are recognized by the options to modify missing records</li>\r\n<li> bug fix: ensure \"History file not found\' message doesn\'t remain when file is valid</li>\r\n<li> bug fix: avoid fatal error while editing import when import file has been deleted outside of WP All Import</li>\r\n<li> bug fix: ensure correct import IDs are processed when running multiple imports sequentially via WP-CLI</li>\r\n<li> bug fix: don\'t invalidate unchanged record hash when import \'security\' option value changes</li>\r\n<li> bug fix: allow using an \'Existing Items\' import that only removes products that aren\'t in the import file</li>\r\n</ul><h4>4.8.0</h4><ul>\r\n    <li>bug fix: file preview shows incorrect record order in some cases</li>\r\n    <li>bug fix: PHP8 fatal error when updating Scheduling configuration in limited cases</li>\r\n</ul><h4>4.7.9</h4><ul>\r\n    <li>new feature: edit import filters on import \'Edit Template\' screen</li>\r\n    <li>bug fix: allow saving custom fields \'0\' values</li>\r\n    <li>bug fix: do not duplicate images when they contain dimensions in the name</li>\r\n    <li>bug fix: infinite loop when performing \'missing post\' actions in some cases</li>\r\n    <li>bug fix: undefined variable $import notice</li>\r\n    <li>bug fix: resolve notice when $attch variable not defined</li>\r\n    <li>improvement: use wp_trash_post when sending posts to trash</li>\r\n    <li>improvement: resolve PHP 8.x deprecated items</li>\r\n    <li>improvement: allow more strings to be translated with _e</li>\r\n    <li>improvement: use wp_add_inline_script instead of localize where appropriate</li>\r\n    <li>improvement: add setting to disable the \'I HAVE BACKUPS\' prompt</li>\r\n    <li>improvement: better handling when expected files are not found or have the wrong permissions</li>\r\n    <li>improvement: ensure the run import screen correctly shows what fields are set to update</li>\r\n    <li>improvement: add nonce to clean up logs action</li>\r\n    <li>improvement: allow specifying templates for post types other than pages</li>\r\n    <li>improvement: replace deprecated get_page_by_title function</li>\r\n    <li>improvement: ensure correct version of PCLZIP is used with WP All Import</li>\r\n    <li>improvement: ensure history file path returns correctly regardless of import file source</li>\r\n    <li>improvement: ensure wp_read_video_metadata function exists before calling</li>\r\n    <li>improvement: ensure import file preview sections can be expanded on Edit Template screen</li>\r\n    <li>improvement: allow changing stock status for missing existing products</li>\r\n    <li>improvement: call pmxi_before_delete_post hook as needed when running via WP-CLI</li>\r\n    <li>improvement: don\'t show \'hidden\' imports when listing via WP-CLI</li>\r\n    <li>improvement: don\'t assign parent when parent field is empty</li>\r\n    <li>improvement: allow importing emojis from JSON files</li>\r\n    <li>improvement: improve wp_all_import_get_import_id to work when running multiple imports via WP-CLI</li>\r\n    <li>improvement: better record matching for delete missing option</li>\r\n    <li>improvement: better existing image matching when importing images from Content</li>\r\n\r\n</ul><h4>4.7.8</h4><ul>\r\n    <li>new feature: Records missing from your import file can now be deleted even if WP All Import didn\'t create them. \'Existing Items\' imports have gained the ability to delete records missing from your import file as well.</li>\r\n    <li>improvement: add support for libxml 2.9.0+</li>\r\n    <li>improvement: set headers to prevent caching of cron URLs</li>\r\n    <li>improvement: fixed miscellaneous PHP notices</li>\r\n</ul>\r\n<h4>4.7.7</h4><ul>\r\n    <li>security improvement</li>\r\n    <li>improvement: import progress bar appearance</li>\r\n</ul><h4>4.7.6</h4><ul>\r\n    <li>security improvement</li>\r\n    <li>note: minimum PHP version for WP All Import 4.7.4 and above is now 7.2.5</li>\r\n    <li>bug fix: fatal error when PHP version is less than 7.2.5</li>\r\n    <li>improvement: replace deprecated jQuery functions</li>\r\n    <li>improvement: add support for newer SFTP servers</li>\r\n    <li>improvement: update FTP support for PHP 8.1+</li>\r\n    <li>improvement: better file extension detection for downloaded attachments</li>\r\n</ul><h4>4.7.5</h4><ul>\r\n<li>bug fix: fatal error when importing from (S)FTP</li>\r\n</ul><h4>4.7.4</h4><ul>\r\n  <li>security improvement</li>\r\n  <li>bug fix: error when importing tab delimited text files on PHP 8</li>\r\n  <li>bug fix: ensure wp_read_video_metadata() function is available before calling it</li>\r\n  <li>improvement: better autoloading of plugin files</li>\r\n  <li>improvement: better handling for server paths that contain underscores</li>\r\n  <li>improvement: fix notice when downloading from Google Sheets</li>\r\n</ul><h4>4.7.3</h4><ul>\r\n    <li>improvement: changed Manage Imports page button labels to be more precise</li>\r\n    <li>improvement: assign \'Uncategorized\' term to posts imported without a category assigned</li>\r\n    <li>improvement: add support for taxonomies that return objects instead of IDs</li>\r\n    <li>improvement: check if import file still exists before trying to load it</li>\r\n    <li>improvement: remove commented code that could cause false positives for security scans</li>\r\n    <li>bug fix: jQuery error related to \'destroy\' method</li>\r\n    <li>bug fix: rare issue that prevented content image URLs from being updated during import</li>\r\n    <li>bug fix: option to mark missing products as out of stock doesn\'t work with cron</li>\r\n    <li>bug fix: taxonomies section drag and drop doesn\'t save after rearranging fields</li>\r\n    <li>bug fix: can\'t save code to Function Editor</li>\r\n    <li>bug fix: conflict with Advanced Ads plugin</li>\r\n</ul><h4>4.7.2</h4><ul>\r\n<li>bug fix: \'Set missing records to out of stock\' option doesn\'t work when \'Delete products that are no longer present in your file\' option enabled</li>\r\n<li>bug fix: do not invalidate hash when FTP settings change</li>\r\n<li>bug fix: drag-and-drop hierarchical taxonomies doesn\'t work ( WordPress 5.9 )</li>\r\n<li>improvement: respect filename matching options with images in content</li>\r\n</ul><h4>4.7.1</h4><ul>\r\n<li>security fix</li>\r\n<li>improvement: add support for extremely long image source URLs</li>\r\n<li>improvement: invalidate \'skip records that haven\'t changed\' hash when using the \'instead of delete\' options</li>\r\n<li>bug fix: file cleanup fails on PHP 8</li>\r\n</ul><h4>4.7.0</h4>\r\n<ul>\r\n    <li>bugfix: ensure that invalid Automatic Scheduling times aren\'t supplied by import template</li> \r\n    <li>improvement: add ability to control taxonomy mapping case sensitivity via filter wpai_is_case_insensitive_taxonomy_mapping</li> \r\n    <li>improvement: add ability to control uploads directory for single file/image via filters wp_all_import_single_image_uploads_dir and wp_all_import_single_attachment_uploads_dir</li>  \r\n    <li>improvement: add missing options on confirm import step</li> \r\n    <li>improvement: decrease frequency of plugin updates check</li> \r\n    <li>bug fix</li>\r\n    <li>improvement: initial PHP 8 support</li>\r\n</ul>    \r\n<h4>4.6.9</h4>\r\n<ul>\r\n 	<li>bug fix: categories were imported despite the taxonomy option being disabled</li>\r\n 	<li>improvement: ssl_verify was disabled for api requests</li>\r\n 	<li>improvement: parent review setting was missing when importing WooCommerce Reviews</li>\r\n 	<li>improvement: add ability to filter csv escape symbol via wp_all_import_csv_parser_settings filter</li>\r\n</ul>\r\n<h4>4.6.8</h4>\r\n<ul>\r\n 	<li>maintenance: compatibility with Elementor v3.3 JavaScript changes</li>\r\n</ul>\r\n<h4>4.6.7 2021-05-21</h4>\r\n<ul>\r\n 	<li>bug fix: import of taxonomies hierarchy didn\'t work properly</li>\r\n</ul>\r\n<h4>4.6.6 2021-05-18</h4>\r\n<ul>\r\n 	<li>bug fix: records were removed from pmxi_posts table when activating WPAI on multisite installation</li>\r\n 	<li>improvement: git rid of deprecated join query on manage imports screen</li>\r\n 	<li>improvement: add is_update_post_format option</li>\r\n 	<li>improvement: add wp_all_import_manual_matching filter</li>\r\n 	<li>improvement: add wp_all_import_logger filter</li>\r\n 	<li>improvement: add display type option for Product Categories</li>\r\n 	<li>improvement: update scheduling keys in the scheduling service when changed in settings</li>\r\n</ul>\r\n<h4>4.6.5 2020-10-24</h4>\r\n<ul>\r\n 	<li>improvement: added support for custom FTP root paths via filter</li>\r\n 	<li>improvement: return to 1st record in file when applying filters</li>\r\n 	<li>bug fix: update only selected custom fields didn\'t work properly</li>\r\n 	<li>bug fix: update featured image provided by 3rd party add-ons didn\'t work properly</li>\r\n 	<li>bug fix: get rid of unused deprecated function add_contextual_help()</li>\r\n 	<li>bug fix: impossible to move past step 4 when using import template that had import schedules configured</li>\r\n 	<li>bug fix: last run timestamp not updated if import file is valid</li>\r\n 	<li>bug fix: no records available when multiple filters are removed</li>\r\n</ul>\r\n<h4>4.6.4 2020-10-07</h4>\r\n<ul>\r\n 	<li>New Feature: Import files from FTP</li>\r\n 	<li>improvement: deprecate \'High Speed Small File Processing\' import option</li>\r\n 	<li>improvement: allow multiple import IDs to be passed to WP-CLI</li>\r\n 	<li>improvement: sort imports by friendly name</li>\r\n 	<li>improvement: improve import speed when matching WooCommerce products by _sku custom field</li>\r\n 	<li>bug fix: \'Change image file names\' setting used when \'Use images currently in Media Library\' is selected</li>\r\n 	<li>bug fix: existing Reviews content type conflicts with WooCommerce Reviews</li>\r\n 	<li>bug fix: \'Use images currently in Media Library\' option tries to match images in content section</li>\r\n 	<li>bug fix: periods removed from cron job keys when saving plugin settings</li>\r\n 	<li>bug fix: references in \'pmxi_posts\' table for terms imported via \'Taxonomies\' imports removed on plugin deactivation</li>\r\n 	<li>bug fix: invalid images in post content downloaded as HTML pages</li>\r\n 	<li>bug fix: chromium scroll anchoring causes screen jumping effect</li>\r\n 	<li>bug fix: pagenum query argument causes broken link on import complete screen</li>\r\n 	<li>bug fix: WPML translations matching don\'t work for product variations in some cases</li>\r\n 	<li>bug fix: unable to match existing comments/reviews by custom field</li>\r\n 	<li>bug fix: unable to import existing files from sub folders</li>\r\n 	<li>bug fix: disabling \'Keep images currently in Media Library\' invalidates hashes when \'Images\' aren\'t set to be updated</li>\r\n 	<li>bug fix: changing image options in add-ons using Rapid Add-On API doesn\'t invalidate hashes</li>\r\n 	<li>bug fix: post created/updated/deleted counts disappear from \'Import in Progress\' page upon import completion</li>\r\n</ul>\r\n<h4>4.6.3 2020-08-11</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: compatibility with WordPress 5.5</li>\r\n 	<li>bug fix: new log created on each cron processing call</li>\r\n 	<li>API: added helper function wp_all_import_get_import_id()</li>\r\n 	<li>API: added helper function wp_all_import_get_import_post_type($import_id)</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n&nbsp;\r\n<h4>4.6.2 2020-07-07</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: Import Comments</li>\r\n 	<li>improvement: Import WooCommerce Reviews</li>\r\n 	<li>improvement: Skip updating records when data in import file has not changed</li>\r\n 	<li>improvement: Optimize speed when matching updated posts by custom field or SKU</li>\r\n 	<li>improvement: Disable scheduled imports via Automatic Scheduling UI</li>\r\n 	<li>API: add post ID to wp_all_import_images_uploads_dir</li>\r\n 	<li>bug fix: CodeMirror throws missing dependencies error</li>\r\n 	<li>bug fix: when using Match Images by URL images are also matched by filename</li>\r\n 	<li>bug fix: CSV column header detection causes issues in some cases</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.6.1</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: run imports via WP-CLI</li>\r\n 	<li>bug fix: switch to CodeMirror implementation shipped in WordPress core</li>\r\n 	<li>bug fix: unable to double click to insert XPath in some cases</li>\r\n 	<li>bug fix: unable to apply pmxi_is_images_to_update filter to featured images</li>\r\n 	<li>bug fix: unable to match existing images when suffix is added to file name during import</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.6.0</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>API: add new filter wp_all_import_scan_files_recursively</li>\r\n 	<li>bug fix: import custom fields caused import duplicate values</li>\r\n 	<li>bug fix: unable to match existing scaled images</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.5.9</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: import post content images from srcset attribute</li>\r\n 	<li>API: add new filter wp_all_import_recount_terms_after_import</li>\r\n 	<li>API: add new filter wp_all_import_content_images_get_full_size</li>\r\n 	<li>API: add new filter wp_all_import_feed_type</li>\r\n 	<li>bug fix: original_value argument for pmxi_custom_field contains incorrect value</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.5.8</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: match existing images by filename with underscores</li>\r\n 	<li>API: add new action wp_all_import_before_preserve_post_data</li>\r\n 	<li>API: add new filter wp_all_import_specified_delimiters</li>\r\n 	<li>bug fix: attachment author not imported for API image imports</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.5.7</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: get files nested in subdirectories from /wp-content/uploads/wpallimport/files</li>\r\n 	<li>improvement: add support for importing WebP images</li>\r\n 	<li>bug fix: images in content not being imported when creating new items</li>\r\n 	<li>bug fix: unable to match existing users by user ID</li>\r\n 	<li>bug fix: strip special characters from cron job key</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.5.6</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: add support for .tsv format</li>\r\n 	<li>improvement: load WP All Import only on admin dashboard on cron calls</li>\r\n 	<li>API: add new action pmxi_before_delete_post</li>\r\n 	<li>API: add new filter wp_all_import_use_wp_set_object_terms</li>\r\n 	<li>API: add new filter wp_all_import_copy_uploaded_file_into_files_folder</li>\r\n 	<li>API: add new filter wp_all_import_is_php_allowed</li>\r\n 	<li>API: add current XML variable to pmxi_article_data filter</li>\r\n 	<li>API: add articleData argument to wp_all_import_images_uploads_dir filter</li>\r\n 	<li>bug fix: search for existing images doesn\'t work properly when rename images option in use</li>\r\n 	<li>bug fix: post terms incorrect after import complete, must be recounted</li>\r\n 	<li>bug fix: empty attachments created when attachment import fails</li>\r\n 	<li>bug fix: page template for some posts is overwritten in some cases</li>\r\n 	<li>bug fix: pmxi_update_post_meta action not firing in some cases</li>\r\n 	<li>bug fix: unable to import featured image from content section</li>\r\n 	<li>bug fix: matching posts by ID matches and imports into attachments with the same ID</li>\r\n 	<li>bug fix: matching taxonomy terms by term ID matches and imports into posts and attachments with the same ID</li>\r\n 	<li>bug fix: remove deprecated function pmxi_convert_encoding from API</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.5.5</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: do not keep trigger log items in history</li>\r\n 	<li>improvement: added new filter wp_all_import_search_image_by_wp_attached_file</li>\r\n 	<li>improvement: added new filter wp_all_import_get_existing_image</li>\r\n 	<li>improvement: added pmxi_import_failed action</li>\r\n 	<li>improvement: search for existing attachments in /files folder</li>\r\n 	<li>improvement: set featured image from img tags when importing content</li>\r\n 	<li>bug fix: don\'t delete records from pmxi_posts for existing users and taxonomy terms</li>\r\n 	<li>bug fix: skipping empty lines during csv to xml convertation</li>\r\n 	<li>bug fix: skip post when custom field data is unchanged</li>\r\n 	<li>bug fix: import custom field name via XPath</li>\r\n 	<li>bug fix: trigger delete_post action when imported posts are deleting</li>\r\n 	<li>bug fix: imports that are scheduled to run at 12am/pm</li>\r\n 	<li>bug fix: fixed updating custom fields with quotes</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.5.4</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>bug fix: import using stream reader</li>\r\n 	<li>bug fix: generation temporary files in system temporary folder</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.5.3</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: add support for Toolset Types</li>\r\n 	<li>bug fix: trigger deleted_user action when import deleting a user</li>\r\n 	<li>bug fix: add-ons api - searching for existing images in pmxi_images table</li>\r\n 	<li>bug fix: php error on array push alias</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.5.2</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>new feature: Automatic Scheduling - run imports on a schedule</li>\r\n 	<li>improvement: search for existing images based on remote image URL</li>\r\n 	<li>improvement: various backend improvements to image imports</li>\r\n 	<li>improvement: various import speed optimizations</li>\r\n 	<li>bug fix: remove deprecated function calls for PHP 7.2 compatibility</li>\r\n 	<li>bug fix: delete db tables when mu blog deleted</li>\r\n 	<li>bug fix: remove BOM from import templates</li>\r\n 	<li>bug fix: saving CSV delimiter when changing import file</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.5.1</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: import images from dropbox</li>\r\n 	<li>improvement: skips import process to the first specific record</li>\r\n 	<li>improvement: added new filter wp_all_import_is_render_whole_xml_tree</li>\r\n 	<li>improvement: added wp_all_import_images_uploads_dir filter into add-ons api</li>\r\n 	<li>bug fix: conflict with InfiniteWP</li>\r\n 	<li>bug fix: oddity update notification for Link cloaking add-on</li>\r\n 	<li>bug fix: load functions before pmxi_before_xml_import</li>\r\n 	<li>bug fix: do not re-count category terms when post imported as draft</li>\r\n 	<li>bug fix: import base64 encoded images in add-ons</li>\r\n 	<li>bug fix: woo order custom fields auto-detection</li>\r\n 	<li>security fix - XSS exploit (Special thanks to Mardan Muhidin for reporting)</li>\r\n 	<li>security fix - XSS exploit (Special thanks to Yuji Tounai for reporting)</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.5.0</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: Make the WooCo Short Description expandable</li>\r\n 	<li>improvement: show notice when function editor is not saved</li>\r\n 	<li>improvement: added timestamp to import log lines</li>\r\n 	<li>improvement: added support for bmp images</li>\r\n 	<li>improvement: added new action pmxi_before_post_import_{$addon}</li>\r\n 	<li>security fix: patch XSS exploit</li>\r\n 	<li>bug fix: import pages hierarchy</li>\r\n 	<li>bug fix: error in pclzip.lib.php with php 7.1</li>\r\n 	<li>bug fix: import taxonomies hierarchy</li>\r\n 	<li>bug fix: json to xml convertation</li>\r\n 	<li>bug fix: import password protected feeds with port defined</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.4.9</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: custom fields detection</li>\r\n 	<li>improvement: new action wp_all_import_post_skipped</li>\r\n 	<li>improvement: updated history page title</li>\r\n 	<li>improvement: optimize large imports deletion</li>\r\n 	<li>improvement: added import friendly name to confirm screen</li>\r\n 	<li>improvement: sql query optimization on manage imports screen</li>\r\n 	<li>improvement: added wp_all_import_shard_delay filter</li>\r\n 	<li>improvement: added wp_all_import_images_uploads_dir filter</li>\r\n 	<li>bug fix: compatibility with WPML</li>\r\n 	<li>bug fix: generation image filename</li>\r\n 	<li>bug fix: wp_all_import_specified_records filter</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.4.8</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: added hungarian translation</li>\r\n 	<li>bug fix: csv headers generation</li>\r\n 	<li>bug fix: import template from Import Settings works again</li>\r\n 	<li>bug fix: users no longer logged out when user is update via import</li>\r\n 	<li>bug fix: images with encoded quotes</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.4.7</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>bug fix: cron job completed early for imports with xpath</li>\r\n 	<li>bug fix: csv headers with non latin characters</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.4.6</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>bug fix: cron job un-triggered on timeout error</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.4.5</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>bug fix: import xls from dropbox</li>\r\n 	<li>bug fix: template preview</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.4.4</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: new filter \'wp_all_import_phpexcel_delimiter\'</li>\r\n 	<li>improvement: new filter \'wp_all_import_is_trim_parsed_data\'</li>\r\n 	<li>improvement: added new \'filter wp_all_import_skip_x_csv_rows\'</li>\r\n 	<li>improvement: added csv delimiter setting to import options screen</li>\r\n 	<li>bug fix: taxonomies dropdown list</li>\r\n 	<li>bug fix: cron job was never untriggered when calling to undefined function</li>\r\n 	<li>bug fix: taxonomies preview</li>\r\n 	<li>bug fix: import duplicate tags</li>\r\n 	<li>bug fix: importing taxonomy terms that already exist in a different taxonomies</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.4.3</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>bug fix: parsing images for newly added records</li>\r\n 	<li>bug fix: the event calendar conflict</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.4.2</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: added new filter wp_all_import_phpexcel_object to modify excel data before import</li>\r\n 	<li>bug fix: search for images ending with underscores in media</li>\r\n 	<li>bug fix: import hierarchical posts and pages</li>\r\n 	<li>bug fix: import custom post type page templates</li>\r\n 	<li>bug fix: matching taxonomies by name</li>\r\n 	<li>bug fix: custom fields validation</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.4.1</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: compatibility with PHP 7.x</li>\r\n 	<li>improvement: search for existing attachments option</li>\r\n 	<li>improvement: new filter for file path of functions.php file</li>\r\n 	<li>bug fix: images preview</li>\r\n 	<li>bug fix: improved matching for images similar to image.com.png</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.4.0</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>new feature: added import taxonomies feature</li>\r\n 	<li>bug fix: hierarchy taxonomies preview</li>\r\n 	<li>bug fix: empty logs folder generation</li>\r\n 	<li>bug fix: \'Keep images currently in Media Library\' option for add-ons</li>\r\n 	<li>bug fix: import bundles with gz files</li>\r\n 	<li>bug fix: custom functions for attachments</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.3.2</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: \'Force Stream Reader\' setting</li>\r\n 	<li>improvement: tar + gz compression support for remote feeds</li>\r\n 	<li>improvement: new filter \'wp_all_import_auto_create_csv_headers\'</li>\r\n 	<li>improvement: new filter \'wp_all_import_is_base64_images_allowed\'</li>\r\n 	<li>improvement: new filter \'wp_all_import_set_post_terms\' to leave a specific category alone when a post is being updated</li>\r\n 	<li>bug fix: cron import timeout when set missing outofstock option is enabled</li>\r\n 	<li>bug fix: nodes navigation for xpath like /news/item</li>\r\n 	<li>bug fix: frozen import template screen for cyrillic XML feeds</li>\r\n 	<li>bug fix: conflict between taxonomies &amp; user import</li>\r\n 	<li>bug fix: creating users with the same email</li>\r\n 	<li>bug fix: enable keep line breaks option by default</li>\r\n 	<li>bug fix: composer namespace conflict</li>\r\n 	<li>bug fix: images preview when wp is in subdirectory</li>\r\n 	<li>bug fix: \'Instead of deletion, set Custom Field\' option for users import</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.3.1</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed issue with libxml 2.9.3</li>\r\n 	<li>execute \'pmxi_article_data\' filter for all posts ( new &amp; existing )</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.3.0</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>added de_CH translation</li>\r\n 	<li>added support for .svg images</li>\r\n 	<li>added possibility for import excerpts for pages</li>\r\n 	<li>added new filter \'wp_all_import_specified_records\'</li>\r\n 	<li>added new filter \'wp_all_import_is_post_to_delete\'</li>\r\n 	<li>fixed saving function editor</li>\r\n 	<li>fixed custom fields mapping rules with \'0\' value</li>\r\n 	<li>fixed termination of the import if the \"Delete source XML file after importing\" is checked</li>\r\n 	<li>disable XMLReader stream filter for HHVM</li>\r\n 	<li>improve search for existing images in media gallery</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.2.9</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed error messages on step 4</li>\r\n 	<li>fixed renaming image files</li>\r\n 	<li>fixed delete missing records option</li>\r\n 	<li>fixed csv to xml convertation in case when there are some equal titles in csv file</li>\r\n 	<li>stop using $HTTP_RAW_POST_DATA for PHP 7.x compatibility</li>\r\n 	<li>added new action \'pmxi_missing_post\'</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.2.8</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>update required database tables</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.2.7</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed detecting root nodes with colons in names</li>\r\n 	<li>fixed php notice \"Undefined variable: existing_meta_keys\"</li>\r\n 	<li>fixed rendering special chars in function editor</li>\r\n 	<li>fixed css for WordPress 4.4</li>\r\n 	<li>added feature to delete only posts not import</li>\r\n 	<li>added feature to download template/bundle from import settings</li>\r\n 	<li>added new option for importing images \"Use images currently in Media Library\"</li>\r\n 	<li>remove periods to hyphens convertation in image name</li>\r\n 	<li>auto detect dropbox URLs and change to dl=1</li>\r\n 	<li>changed comma delimiting behavior/UI in image meta</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.2.6</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed preview prices</li>\r\n 	<li>fixed counting XML nodes</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.2.5</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed \'Delete source XML file after importing\' option</li>\r\n 	<li>fixed ‘Instead of deletion, change post status to Draft’ option</li>\r\n 	<li>fixed reading XML files with NS in element names</li>\r\n 	<li>added ‘WooCommerce Order’ to post type list on step 1</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.2.4</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed duplicate matching by custom field</li>\r\n 	<li>fixed error messages on step1 in case when server throws fatal error e.q. time limit exception</li>\r\n 	<li>fixed option \"Delete posts that are no longer present in your file\", now it works with empty CSV files which has only one header row</li>\r\n 	<li>fixed importing custom fields with the same name</li>\r\n 	<li>fixed custom functions in images preview</li>\r\n 	<li>added es_ES translation</li>\r\n 	<li>added de_DE translation</li>\r\n 	<li>added iterative ajax delete process ( deleting associated posts )</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.2.3</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>Fixed removing uploaded XML source file on re-run process</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.2.2</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>Fixed saving function editor</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.2.1</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed duplicate matching by custom field ( cron )</li>\r\n 	<li>fixed converting image filenames to lowercase</li>\r\n 	<li>fixed import html to image description</li>\r\n 	<li>fixed import _wp_old_slug</li>\r\n 	<li>added Post ID to manual record matching</li>\r\n 	<li>added \'Comment status\' to \'Choose data to update\' section</li>\r\n 	<li>added \'cancel\' to cron API /wp-cron.php?import_key=Kt&amp;import_id=407&amp;action=cancel</li>\r\n 	<li>added function editor</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.2.0</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed parsing CSV with empty lines</li>\r\n 	<li>fixed parsing multiple IF statements</li>\r\n 	<li>fixed preview in case when ‘Disable the visual editor when writing’ is enabled</li>\r\n 	<li>fixed conflict with WooCommerce - Store Exporter Deluxe</li>\r\n 	<li>added possibility to start synchronized cron requests &amp;sync=1</li>\r\n 	<li>added notifications for required addons</li>\r\n 	<li>added support for wp all export bundle</li>\r\n 	<li>added support for manual import bundle</li>\r\n 	<li>added feature \'click to download import file\'</li>\r\n 	<li>added validation for excerpt and images sections</li>\r\n 	<li>added auto-detect a broken Unique ID notification</li>\r\n 	<li>added import template notifications</li>\r\n 	<li>removed support for importing WooCommerce Orders</li>\r\n 	<li>changed absolute paths to relative in db</li>\r\n 	<li>updated cron response messages</li>\r\n 	<li>moved uploaded files to \'Use existing\' dropdown</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.1.7</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>added support for Excel files ( .xls, .xlsx )</li>\r\n 	<li>added new option \'Do not remove images from media gallery\' on import\r\nsettings screen</li>\r\n 	<li>added new options to taxonomies import \'Try to match terms to\r\nexisting child Product Categories\' &amp; \'Only assign Products to the\r\nimported Product Category, not the entire hierarchy\'</li>\r\n 	<li>fixed excessive update requests</li>\r\n 	<li>added options to \'Delete associated posts</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.1.6</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>load ini_set only on plugins pages</li>\r\n 	<li>fixed saving import template</li>\r\n 	<li>added import post format via XPath</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.1.5</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed import page template</li>\r\n 	<li>added a second argument to pmxi_saved_post action ( SimpleXML object ) of current record</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.1.4</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed Apply mapping rules before splitting via separator symbol for manual hierarchy</li>\r\n 	<li>fixed path equal or less than</li>\r\n 	<li>fixed changing unique key when moving back from confirm screen</li>\r\n 	<li>fixed override page template</li>\r\n 	<li>fixed unlink images on deleting missing posts</li>\r\n 	<li>updated wp_all_import_is_post_to_update filter with second argument XML node as array</li>\r\n 	<li>updated compatibility with WP All Export</li>\r\n 	<li>added filter <code>wp_all_import_feed_type</code></li>\r\n 	<li>added possibility to use php to calculate URL on first step <code>[add_to_url(\"https://google.com/\")]</code></li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.1.3</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed un triggering issue on cron jobs for empty files</li>\r\n 	<li>changed updater priority from 10 to 20</li>\r\n 	<li>added post parent option for all hierarchical CPT</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.1.2</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>Important security fixes - additional hardening, prevention of blind SQL injection and reflected XSS attacks</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.1.1</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>critical security fix - stopping non-logged in users from accessing adminInit https://www.wpallimport.com/2015/02/wp-import-4-1-1-mandatory-security-update/</li>\r\n 	<li>added new filter <code>wp_all_import_is_post_to_update</code> to skip needed posts <code>add_filter(\'wp_all_import_is_post_to_update\', \'is_post_to_update\', 10, 1);</code></li>\r\n 	<li>added new option <code>Search for existing attachments to prevent duplicates in media library<code></code></code></li>\r\n 	<li>fixed imports pagination</li>\r\n 	<li>fixed preview taxonomies</li>\r\n 	<li>fixed upload folder creation when \'upload_dir\' filter defined</li>\r\n 	<li>fixed db schema for wpmu when new site added</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.1.0</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed cron execution when titles are not defined</li>\r\n 	<li>added an option to separate hierarchy groups via symbol</li>\r\n 	<li>added separator symbol for manually nested taxonomies</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.0.9</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>added license key setting for automatic update</li>\r\n 	<li>added option <code>search images through attachments</code></li>\r\n 	<li>added option <code>assign term to the bottom level term in the hierarchy</code></li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.0.8</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed taxonomies preview</li>\r\n 	<li>fixed import meta description for images</li>\r\n 	<li>added feature to assign posts to needed terms</li>\r\n 	<li>added new option for taxonomies <code>Apply mapping rules before splitting via separator symbol</code></li>\r\n 	<li>added set with XPath option for comment status, ping status, page parent, page template</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.0.7</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed feed detection for rss chanels</li>\r\n 	<li>fixed parsing json data</li>\r\n 	<li>fixed add only new images option</li>\r\n 	<li>fixed delete missing records option</li>\r\n 	<li>added ability to import custom fields with the same name</li>\r\n 	<li>added port setting</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.0.6</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed encoding for taxonomies mapping</li>\r\n 	<li>optimization for delete missing records option</li>\r\n 	<li>fixed feed type auto-detection</li>\r\n 	<li>fixed changes that related to _wp_page_template meta data</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.0.5</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed template parsing when php function arguments contains an array()</li>\r\n 	<li>fixed error msg when feed is html page e.g. page 404</li>\r\n 	<li>fixed xpath building</li>\r\n 	<li>update hierarchy taxonomies options</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.0.4</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>changed main file name to wp-all-import-pro.php</li>\r\n 	<li>fixed feed type auto-detection</li>\r\n 	<li>fixed bug with empty unique keys</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.0.3</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed re-count record when a file has been changed at an import setting screen</li>\r\n 	<li>fixed database schema auto-update</li>\r\n 	<li>fixed uploading large files</li>\r\n 	<li>fixed auto-detecting root element</li>\r\n 	<li>fixed log storage in database</li>\r\n 	<li>fixed cron execution when \"do not create new records\" option is enabled</li>\r\n 	<li>fixed feed type detection</li>\r\n 	<li>fixed unlink attachment source when posts updated/deleted</li>\r\n 	<li>fixed specialchars in taxnomies/categories mapping</li>\r\n 	<li>updated taxonomies hierarchy settings</li>\r\n 	<li>added a limit 10 to the existing meta values</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.0.2</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>speed up the import of taxonomies/categories</li>\r\n 	<li>added taxonomies/categories mapping feature</li>\r\n 	<li>added custom fields auto-detection feature</li>\r\n 	<li>added custom fields mapping feature</li>\r\n 	<li>added images/taxonomies preview feature</li>\r\n 	<li>added unofficial support for more file formats - json &amp; sql</li>\r\n 	<li>added new setting (secure mode) to protect your files</li>\r\n 	<li>better import logs</li>\r\n 	<li>updated design</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>3.4.2</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed navigation bug</li>\r\n 	<li>fixed search duplicates</li>\r\n 	<li>fixed duplicate categories</li>\r\n 	<li>fixed path builder for element attributes</li>\r\n 	<li>fixed cron processing for already uploaded files (XML)</li>\r\n 	<li>added taxonomies for pages</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>3.4.1</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed <code>pmxi_delete_post</code> action: this action was executed after posts were deleted</li>\r\n 	<li>fixed import menu order &amp; post parent for pages</li>\r\n 	<li>fixed import log for continue import feature</li>\r\n 	<li>added is update author option</li>\r\n 	<li>fixed post formats</li>\r\n 	<li>fixed cron processing: WP_Error object was not initialized</li>\r\n 	<li>fixed cron processing for import where XPath filtering is defined</li>\r\n 	<li>fixed UTC dates on manage imports page</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>3.4.0</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed: import empty content</li>\r\n 	<li>fixed: log files</li>\r\n 	<li>fixed: detect image extension</li>\r\n 	<li>fixed: terms hierarchy on cron job execution</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>3.3.9</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>added: feature to do not escape shortcodes</li>\r\n 	<li>fixed: pre-processing logic</li>\r\n 	<li>fixed: downloading images with unicode url</li>\r\n 	<li>fixed: clear non ASCII/invalid symbols in CSV files</li>\r\n 	<li>fixed: import option \'Instead of using original image file name, set file name(s)\'</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>3.3.8</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed: admin notices</li>\r\n 	<li>fixed: creation duplicates draft post via cron</li>\r\n 	<li>fixed: images with encoded symbols</li>\r\n 	<li>fixed: upload file via URL</li>\r\n 	<li>fixed: php notices</li>\r\n 	<li>added: compatibility with WP 3.9</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>3.3.7</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>updated convertation CSV to XML with XMLWriter</li>\r\n 	<li>fixed import *.zip files</li>\r\n 	<li>fixed xpath helper on step 2</li>\r\n 	<li>fixed showing zeros in XML tree</li>\r\n 	<li>allow post content to be empty on step 3</li>\r\n 	<li>added autodetect session mode</li>\r\n 	<li>delete deprecated settings <code>my csv contain html code</code> and <code>case sensitivity</code></li>\r\n 	<li>fixed deleting history files</li>\r\n 	<li>fixed autodetect image extensions</li>\r\n 	<li>fixed increasing SQL query length</li>\r\n 	<li>added error messages</li>\r\n 	<li>fixed \"High Speed Small File Processing\" option</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>3.3.6</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed: multiple cron execution</li>\r\n 	<li>fixed: load options template</li>\r\n 	<li>fixed: session initialization</li>\r\n 	<li>fixed: import search</li>\r\n 	<li>fixed: attachment author on cron execution</li>\r\n 	<li>fixed: download images option</li>\r\n 	<li>added: errors messages to the log</li>\r\n 	<li>added: \"not contains\" filter to step 2</li>\r\n 	<li>added: compatibility with categories mapping addon</li>\r\n 	<li>updated: cpt navigation on step 4</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>3.3.5</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed bug with cron processing</li>\r\n 	<li>fixed bug with saving wrong image name</li>\r\n 	<li>added serialized custom fields feature</li>\r\n 	<li>added compatibility with user import add-on</li>\r\n 	<li>added compatibility with 3rd party developers</li>\r\n 	<li>added new setting \'Cron processing time limit\'</li>\r\n</ul>\r\n</li>\r\n</ul>\";}s:7:\"banners\";a:2:{s:4:\"high\";s:56:\"https://ps.w.org/wp-all-import/assets/banner-772x250.png\";s:3:\"low\";s:0:\"\";}s:18:\"custom_update_note\";s:0:\"\";s:19:\"update_note_version\";s:0:\"\";s:5:\"icons\";a:0:{}s:3:\"msg\";s:33:\"No license key has been provided.\";s:6:\"tested\";s:5:\"6.4.2\";s:6:\"author\";s:6:\"Soflyy\";s:8:\"requires\";s:3:\"5.0\";s:12:\"requires_php\";s:3:\"7.4\";s:12:\"contributors\";a:2:{s:6:\"soflyy\";a:3:{s:12:\"display_name\";s:6:\"soflyy\";s:7:\"profile\";s:37:\"https://profiles.wordpress.org/soflyy\";s:6:\"avatar\";s:51:\"https://wordpress.org/grav-redirect.php?user=soflyy\";}s:11:\"wpallimport\";a:3:{s:12:\"display_name\";s:11:\"wpallimport\";s:7:\"profile\";s:42:\"https://profiles.wordpress.org/wpallimport\";s:6:\"avatar\";s:56:\"https://wordpress.org/grav-redirect.php?user=wpallimport\";}}}','no'),(303151,'wp-all-import-pro_85b8495febade7a221f67b0bca7d59d9','O:8:\"stdClass\":18:{s:11:\"new_version\";s:5:\"4.8.5\";s:14:\"stable_version\";s:5:\"4.8.5\";s:4:\"name\";s:13:\"WP All Import\";s:4:\"slug\";s:17:\"wp-all-import-pro\";s:3:\"url\";s:68:\"https://www.wpallimport.com/downloads/wp-all-import-pro/?changelog=1\";s:12:\"last_updated\";s:19:\"2023-12-12 02:27:11\";s:8:\"homepage\";s:56:\"https://www.wpallimport.com/downloads/wp-all-import-pro/\";s:8:\"sections\";a:2:{s:11:\"description\";s:216:\"<p>Learn more about WP All Import at <a href=\"https://www.wpallimport.com/import-wordpress-csv-xml-excel/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.wpallimport.com/import-wordpress-csv-xml-excel/</a></p>\";s:9:\"changelog\";s:45284:\"<h4>4.8.5</h4><ul>\r\n<li>improvement: ensure temporary files never use a .php extension</li>\r\n<li>bug fix: restore old CSV encoding conversion behavior</li>\r\n<li>bug fix: orders cannot be matched by order meta</li>\r\n<li>bug fix: SFTP imports fail to run via cron in some cases</li>\r\n</ul><h4>4.8.4</h4><ul>\r\n<li>minimum WordPress version: 5.0</li>\r\n<li>minimum PHP version: 7.2</li>\r\n<li>bug fix: do not automatically deactivate old versions of the WooCommerce Import Add-On</li>\r\n</ul><h4>4.8.3</h4><ul>\r\n<li>minimum WordPress version: 5.0</li>\r\n<li>minimum PHP version: 7.2</li>\r\n<li>bug fix: PHP 8.2 fatal error when importing some Excel files</li>\r\n<li>bug fix: PHP 8.2 fatal error when file cannot be written in some cases</li>\r\n</ul><h4>4.8.2</h4><ul>\r\n<li>minimum WordPress version: 5.0</li>\r\n<li>minimum PHP version: 7.2</li>\r\n<li>note: WooCommerce Import Add-On 4.0.0+ is required to import orders</li>\r\n<li>new setting: add \'Do not create new terms\' setting on Edit Template page</li>\r\n<li>improvement: better PHP 8.2 support</li>\r\n<li>improvement: include example cron commands on Scheduling Options modal</li>\r\n<li>improvement: better import file preview loading</li>\r\n<li>improvement: enable updating taxonomy description image URLs when using \'Scan through post content...\' option</li>\r\n<li>improvement: enable matching review products by title</li>\r\n<li>improvement: replace tmpfile() call with wp_tempnam() to avoid host restrictions</li>\r\n<li>bug fix: preview modal isn\'t scrollable in some cases</li>\r\n<li>bug fix: resolve \'change missing\' loop in some cases when products have backorders enabled</li>\r\n<li>bug fix: resolve fatal error when taxonomies are set to update but the WooCommerce Add-On isn\'t active</li>\r\n<li>bug fix: navigating import file preview shows incorrectly numbered records</li>\r\n</ul><h4>4.8.1</h4><ul>\r\n<li> minimum required WP version: 5.0</li>\r\n<li> minimum required PHP version: 7.2.5</li>\r\n<li> improvement: remove wp_navigation from Step 1 dropdown</li>\r\n<li> improvement: fix PHP 8 deprecated notice</li>\r\n<li> improvement: add new filter \'wp_all_import_hash_ignore_options\' </li>\r\n<li> bug fix: match existing terms by ID</li>\r\n<li> bug fix: ensure records added with an \'Existing Items\' import are recognized by the options to modify missing records</li>\r\n<li> bug fix: ensure \"History file not found\' message doesn\'t remain when file is valid</li>\r\n<li> bug fix: avoid fatal error while editing import when import file has been deleted outside of WP All Import</li>\r\n<li> bug fix: ensure correct import IDs are processed when running multiple imports sequentially via WP-CLI</li>\r\n<li> bug fix: don\'t invalidate unchanged record hash when import \'security\' option value changes</li>\r\n<li> bug fix: allow using an \'Existing Items\' import that only removes products that aren\'t in the import file</li>\r\n</ul><h4>4.8.0</h4><ul>\r\n    <li>bug fix: file preview shows incorrect record order in some cases</li>\r\n    <li>bug fix: PHP8 fatal error when updating Scheduling configuration in limited cases</li>\r\n</ul><h4>4.7.9</h4><ul>\r\n    <li>new feature: edit import filters on import \'Edit Template\' screen</li>\r\n    <li>bug fix: allow saving custom fields \'0\' values</li>\r\n    <li>bug fix: do not duplicate images when they contain dimensions in the name</li>\r\n    <li>bug fix: infinite loop when performing \'missing post\' actions in some cases</li>\r\n    <li>bug fix: undefined variable $import notice</li>\r\n    <li>bug fix: resolve notice when $attch variable not defined</li>\r\n    <li>improvement: use wp_trash_post when sending posts to trash</li>\r\n    <li>improvement: resolve PHP 8.x deprecated items</li>\r\n    <li>improvement: allow more strings to be translated with _e</li>\r\n    <li>improvement: use wp_add_inline_script instead of localize where appropriate</li>\r\n    <li>improvement: add setting to disable the \'I HAVE BACKUPS\' prompt</li>\r\n    <li>improvement: better handling when expected files are not found or have the wrong permissions</li>\r\n    <li>improvement: ensure the run import screen correctly shows what fields are set to update</li>\r\n    <li>improvement: add nonce to clean up logs action</li>\r\n    <li>improvement: allow specifying templates for post types other than pages</li>\r\n    <li>improvement: replace deprecated get_page_by_title function</li>\r\n    <li>improvement: ensure correct version of PCLZIP is used with WP All Import</li>\r\n    <li>improvement: ensure history file path returns correctly regardless of import file source</li>\r\n    <li>improvement: ensure wp_read_video_metadata function exists before calling</li>\r\n    <li>improvement: ensure import file preview sections can be expanded on Edit Template screen</li>\r\n    <li>improvement: allow changing stock status for missing existing products</li>\r\n    <li>improvement: call pmxi_before_delete_post hook as needed when running via WP-CLI</li>\r\n    <li>improvement: don\'t show \'hidden\' imports when listing via WP-CLI</li>\r\n    <li>improvement: don\'t assign parent when parent field is empty</li>\r\n    <li>improvement: allow importing emojis from JSON files</li>\r\n    <li>improvement: improve wp_all_import_get_import_id to work when running multiple imports via WP-CLI</li>\r\n    <li>improvement: better record matching for delete missing option</li>\r\n    <li>improvement: better existing image matching when importing images from Content</li>\r\n\r\n</ul><h4>4.7.8</h4><ul>\r\n    <li>new feature: Records missing from your import file can now be deleted even if WP All Import didn\'t create them. \'Existing Items\' imports have gained the ability to delete records missing from your import file as well.</li>\r\n    <li>improvement: add support for libxml 2.9.0+</li>\r\n    <li>improvement: set headers to prevent caching of cron URLs</li>\r\n    <li>improvement: fixed miscellaneous PHP notices</li>\r\n</ul>\r\n<h4>4.7.7</h4><ul>\r\n    <li>security improvement</li>\r\n    <li>improvement: import progress bar appearance</li>\r\n</ul><h4>4.7.6</h4><ul>\r\n    <li>security improvement</li>\r\n    <li>note: minimum PHP version for WP All Import 4.7.4 and above is now 7.2.5</li>\r\n    <li>bug fix: fatal error when PHP version is less than 7.2.5</li>\r\n    <li>improvement: replace deprecated jQuery functions</li>\r\n    <li>improvement: add support for newer SFTP servers</li>\r\n    <li>improvement: update FTP support for PHP 8.1+</li>\r\n    <li>improvement: better file extension detection for downloaded attachments</li>\r\n</ul><h4>4.7.5</h4><ul>\r\n<li>bug fix: fatal error when importing from (S)FTP</li>\r\n</ul><h4>4.7.4</h4><ul>\r\n  <li>security improvement</li>\r\n  <li>bug fix: error when importing tab delimited text files on PHP 8</li>\r\n  <li>bug fix: ensure wp_read_video_metadata() function is available before calling it</li>\r\n  <li>improvement: better autoloading of plugin files</li>\r\n  <li>improvement: better handling for server paths that contain underscores</li>\r\n  <li>improvement: fix notice when downloading from Google Sheets</li>\r\n</ul><h4>4.7.3</h4><ul>\r\n    <li>improvement: changed Manage Imports page button labels to be more precise</li>\r\n    <li>improvement: assign \'Uncategorized\' term to posts imported without a category assigned</li>\r\n    <li>improvement: add support for taxonomies that return objects instead of IDs</li>\r\n    <li>improvement: check if import file still exists before trying to load it</li>\r\n    <li>improvement: remove commented code that could cause false positives for security scans</li>\r\n    <li>bug fix: jQuery error related to \'destroy\' method</li>\r\n    <li>bug fix: rare issue that prevented content image URLs from being updated during import</li>\r\n    <li>bug fix: option to mark missing products as out of stock doesn\'t work with cron</li>\r\n    <li>bug fix: taxonomies section drag and drop doesn\'t save after rearranging fields</li>\r\n    <li>bug fix: can\'t save code to Function Editor</li>\r\n    <li>bug fix: conflict with Advanced Ads plugin</li>\r\n</ul><h4>4.7.2</h4><ul>\r\n<li>bug fix: \'Set missing records to out of stock\' option doesn\'t work when \'Delete products that are no longer present in your file\' option enabled</li>\r\n<li>bug fix: do not invalidate hash when FTP settings change</li>\r\n<li>bug fix: drag-and-drop hierarchical taxonomies doesn\'t work ( WordPress 5.9 )</li>\r\n<li>improvement: respect filename matching options with images in content</li>\r\n</ul><h4>4.7.1</h4><ul>\r\n<li>security fix</li>\r\n<li>improvement: add support for extremely long image source URLs</li>\r\n<li>improvement: invalidate \'skip records that haven\'t changed\' hash when using the \'instead of delete\' options</li>\r\n<li>bug fix: file cleanup fails on PHP 8</li>\r\n</ul><h4>4.7.0</h4>\r\n<ul>\r\n    <li>bugfix: ensure that invalid Automatic Scheduling times aren\'t supplied by import template</li> \r\n    <li>improvement: add ability to control taxonomy mapping case sensitivity via filter wpai_is_case_insensitive_taxonomy_mapping</li> \r\n    <li>improvement: add ability to control uploads directory for single file/image via filters wp_all_import_single_image_uploads_dir and wp_all_import_single_attachment_uploads_dir</li>  \r\n    <li>improvement: add missing options on confirm import step</li> \r\n    <li>improvement: decrease frequency of plugin updates check</li> \r\n    <li>bug fix</li>\r\n    <li>improvement: initial PHP 8 support</li>\r\n</ul>    \r\n<h4>4.6.9</h4>\r\n<ul>\r\n 	<li>bug fix: categories were imported despite the taxonomy option being disabled</li>\r\n 	<li>improvement: ssl_verify was disabled for api requests</li>\r\n 	<li>improvement: parent review setting was missing when importing WooCommerce Reviews</li>\r\n 	<li>improvement: add ability to filter csv escape symbol via wp_all_import_csv_parser_settings filter</li>\r\n</ul>\r\n<h4>4.6.8</h4>\r\n<ul>\r\n 	<li>maintenance: compatibility with Elementor v3.3 JavaScript changes</li>\r\n</ul>\r\n<h4>4.6.7 2021-05-21</h4>\r\n<ul>\r\n 	<li>bug fix: import of taxonomies hierarchy didn\'t work properly</li>\r\n</ul>\r\n<h4>4.6.6 2021-05-18</h4>\r\n<ul>\r\n 	<li>bug fix: records were removed from pmxi_posts table when activating WPAI on multisite installation</li>\r\n 	<li>improvement: git rid of deprecated join query on manage imports screen</li>\r\n 	<li>improvement: add is_update_post_format option</li>\r\n 	<li>improvement: add wp_all_import_manual_matching filter</li>\r\n 	<li>improvement: add wp_all_import_logger filter</li>\r\n 	<li>improvement: add display type option for Product Categories</li>\r\n 	<li>improvement: update scheduling keys in the scheduling service when changed in settings</li>\r\n</ul>\r\n<h4>4.6.5 2020-10-24</h4>\r\n<ul>\r\n 	<li>improvement: added support for custom FTP root paths via filter</li>\r\n 	<li>improvement: return to 1st record in file when applying filters</li>\r\n 	<li>bug fix: update only selected custom fields didn\'t work properly</li>\r\n 	<li>bug fix: update featured image provided by 3rd party add-ons didn\'t work properly</li>\r\n 	<li>bug fix: get rid of unused deprecated function add_contextual_help()</li>\r\n 	<li>bug fix: impossible to move past step 4 when using import template that had import schedules configured</li>\r\n 	<li>bug fix: last run timestamp not updated if import file is valid</li>\r\n 	<li>bug fix: no records available when multiple filters are removed</li>\r\n</ul>\r\n<h4>4.6.4 2020-10-07</h4>\r\n<ul>\r\n 	<li>New Feature: Import files from FTP</li>\r\n 	<li>improvement: deprecate \'High Speed Small File Processing\' import option</li>\r\n 	<li>improvement: allow multiple import IDs to be passed to WP-CLI</li>\r\n 	<li>improvement: sort imports by friendly name</li>\r\n 	<li>improvement: improve import speed when matching WooCommerce products by _sku custom field</li>\r\n 	<li>bug fix: \'Change image file names\' setting used when \'Use images currently in Media Library\' is selected</li>\r\n 	<li>bug fix: existing Reviews content type conflicts with WooCommerce Reviews</li>\r\n 	<li>bug fix: \'Use images currently in Media Library\' option tries to match images in content section</li>\r\n 	<li>bug fix: periods removed from cron job keys when saving plugin settings</li>\r\n 	<li>bug fix: references in \'pmxi_posts\' table for terms imported via \'Taxonomies\' imports removed on plugin deactivation</li>\r\n 	<li>bug fix: invalid images in post content downloaded as HTML pages</li>\r\n 	<li>bug fix: chromium scroll anchoring causes screen jumping effect</li>\r\n 	<li>bug fix: pagenum query argument causes broken link on import complete screen</li>\r\n 	<li>bug fix: WPML translations matching don\'t work for product variations in some cases</li>\r\n 	<li>bug fix: unable to match existing comments/reviews by custom field</li>\r\n 	<li>bug fix: unable to import existing files from sub folders</li>\r\n 	<li>bug fix: disabling \'Keep images currently in Media Library\' invalidates hashes when \'Images\' aren\'t set to be updated</li>\r\n 	<li>bug fix: changing image options in add-ons using Rapid Add-On API doesn\'t invalidate hashes</li>\r\n 	<li>bug fix: post created/updated/deleted counts disappear from \'Import in Progress\' page upon import completion</li>\r\n</ul>\r\n<h4>4.6.3 2020-08-11</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: compatibility with WordPress 5.5</li>\r\n 	<li>bug fix: new log created on each cron processing call</li>\r\n 	<li>API: added helper function wp_all_import_get_import_id()</li>\r\n 	<li>API: added helper function wp_all_import_get_import_post_type($import_id)</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n&nbsp;\r\n<h4>4.6.2 2020-07-07</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: Import Comments</li>\r\n 	<li>improvement: Import WooCommerce Reviews</li>\r\n 	<li>improvement: Skip updating records when data in import file has not changed</li>\r\n 	<li>improvement: Optimize speed when matching updated posts by custom field or SKU</li>\r\n 	<li>improvement: Disable scheduled imports via Automatic Scheduling UI</li>\r\n 	<li>API: add post ID to wp_all_import_images_uploads_dir</li>\r\n 	<li>bug fix: CodeMirror throws missing dependencies error</li>\r\n 	<li>bug fix: when using Match Images by URL images are also matched by filename</li>\r\n 	<li>bug fix: CSV column header detection causes issues in some cases</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.6.1</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: run imports via WP-CLI</li>\r\n 	<li>bug fix: switch to CodeMirror implementation shipped in WordPress core</li>\r\n 	<li>bug fix: unable to double click to insert XPath in some cases</li>\r\n 	<li>bug fix: unable to apply pmxi_is_images_to_update filter to featured images</li>\r\n 	<li>bug fix: unable to match existing images when suffix is added to file name during import</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.6.0</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>API: add new filter wp_all_import_scan_files_recursively</li>\r\n 	<li>bug fix: import custom fields caused import duplicate values</li>\r\n 	<li>bug fix: unable to match existing scaled images</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.5.9</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: import post content images from srcset attribute</li>\r\n 	<li>API: add new filter wp_all_import_recount_terms_after_import</li>\r\n 	<li>API: add new filter wp_all_import_content_images_get_full_size</li>\r\n 	<li>API: add new filter wp_all_import_feed_type</li>\r\n 	<li>bug fix: original_value argument for pmxi_custom_field contains incorrect value</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.5.8</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: match existing images by filename with underscores</li>\r\n 	<li>API: add new action wp_all_import_before_preserve_post_data</li>\r\n 	<li>API: add new filter wp_all_import_specified_delimiters</li>\r\n 	<li>bug fix: attachment author not imported for API image imports</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.5.7</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: get files nested in subdirectories from /wp-content/uploads/wpallimport/files</li>\r\n 	<li>improvement: add support for importing WebP images</li>\r\n 	<li>bug fix: images in content not being imported when creating new items</li>\r\n 	<li>bug fix: unable to match existing users by user ID</li>\r\n 	<li>bug fix: strip special characters from cron job key</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.5.6</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: add support for .tsv format</li>\r\n 	<li>improvement: load WP All Import only on admin dashboard on cron calls</li>\r\n 	<li>API: add new action pmxi_before_delete_post</li>\r\n 	<li>API: add new filter wp_all_import_use_wp_set_object_terms</li>\r\n 	<li>API: add new filter wp_all_import_copy_uploaded_file_into_files_folder</li>\r\n 	<li>API: add new filter wp_all_import_is_php_allowed</li>\r\n 	<li>API: add current XML variable to pmxi_article_data filter</li>\r\n 	<li>API: add articleData argument to wp_all_import_images_uploads_dir filter</li>\r\n 	<li>bug fix: search for existing images doesn\'t work properly when rename images option in use</li>\r\n 	<li>bug fix: post terms incorrect after import complete, must be recounted</li>\r\n 	<li>bug fix: empty attachments created when attachment import fails</li>\r\n 	<li>bug fix: page template for some posts is overwritten in some cases</li>\r\n 	<li>bug fix: pmxi_update_post_meta action not firing in some cases</li>\r\n 	<li>bug fix: unable to import featured image from content section</li>\r\n 	<li>bug fix: matching posts by ID matches and imports into attachments with the same ID</li>\r\n 	<li>bug fix: matching taxonomy terms by term ID matches and imports into posts and attachments with the same ID</li>\r\n 	<li>bug fix: remove deprecated function pmxi_convert_encoding from API</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.5.5</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: do not keep trigger log items in history</li>\r\n 	<li>improvement: added new filter wp_all_import_search_image_by_wp_attached_file</li>\r\n 	<li>improvement: added new filter wp_all_import_get_existing_image</li>\r\n 	<li>improvement: added pmxi_import_failed action</li>\r\n 	<li>improvement: search for existing attachments in /files folder</li>\r\n 	<li>improvement: set featured image from img tags when importing content</li>\r\n 	<li>bug fix: don\'t delete records from pmxi_posts for existing users and taxonomy terms</li>\r\n 	<li>bug fix: skipping empty lines during csv to xml convertation</li>\r\n 	<li>bug fix: skip post when custom field data is unchanged</li>\r\n 	<li>bug fix: import custom field name via XPath</li>\r\n 	<li>bug fix: trigger delete_post action when imported posts are deleting</li>\r\n 	<li>bug fix: imports that are scheduled to run at 12am/pm</li>\r\n 	<li>bug fix: fixed updating custom fields with quotes</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.5.4</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>bug fix: import using stream reader</li>\r\n 	<li>bug fix: generation temporary files in system temporary folder</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.5.3</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: add support for Toolset Types</li>\r\n 	<li>bug fix: trigger deleted_user action when import deleting a user</li>\r\n 	<li>bug fix: add-ons api - searching for existing images in pmxi_images table</li>\r\n 	<li>bug fix: php error on array push alias</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.5.2</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>new feature: Automatic Scheduling - run imports on a schedule</li>\r\n 	<li>improvement: search for existing images based on remote image URL</li>\r\n 	<li>improvement: various backend improvements to image imports</li>\r\n 	<li>improvement: various import speed optimizations</li>\r\n 	<li>bug fix: remove deprecated function calls for PHP 7.2 compatibility</li>\r\n 	<li>bug fix: delete db tables when mu blog deleted</li>\r\n 	<li>bug fix: remove BOM from import templates</li>\r\n 	<li>bug fix: saving CSV delimiter when changing import file</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.5.1</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: import images from dropbox</li>\r\n 	<li>improvement: skips import process to the first specific record</li>\r\n 	<li>improvement: added new filter wp_all_import_is_render_whole_xml_tree</li>\r\n 	<li>improvement: added wp_all_import_images_uploads_dir filter into add-ons api</li>\r\n 	<li>bug fix: conflict with InfiniteWP</li>\r\n 	<li>bug fix: oddity update notification for Link cloaking add-on</li>\r\n 	<li>bug fix: load functions before pmxi_before_xml_import</li>\r\n 	<li>bug fix: do not re-count category terms when post imported as draft</li>\r\n 	<li>bug fix: import base64 encoded images in add-ons</li>\r\n 	<li>bug fix: woo order custom fields auto-detection</li>\r\n 	<li>security fix - XSS exploit (Special thanks to Mardan Muhidin for reporting)</li>\r\n 	<li>security fix - XSS exploit (Special thanks to Yuji Tounai for reporting)</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.5.0</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: Make the WooCo Short Description expandable</li>\r\n 	<li>improvement: show notice when function editor is not saved</li>\r\n 	<li>improvement: added timestamp to import log lines</li>\r\n 	<li>improvement: added support for bmp images</li>\r\n 	<li>improvement: added new action pmxi_before_post_import_{$addon}</li>\r\n 	<li>security fix: patch XSS exploit</li>\r\n 	<li>bug fix: import pages hierarchy</li>\r\n 	<li>bug fix: error in pclzip.lib.php with php 7.1</li>\r\n 	<li>bug fix: import taxonomies hierarchy</li>\r\n 	<li>bug fix: json to xml convertation</li>\r\n 	<li>bug fix: import password protected feeds with port defined</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.4.9</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: custom fields detection</li>\r\n 	<li>improvement: new action wp_all_import_post_skipped</li>\r\n 	<li>improvement: updated history page title</li>\r\n 	<li>improvement: optimize large imports deletion</li>\r\n 	<li>improvement: added import friendly name to confirm screen</li>\r\n 	<li>improvement: sql query optimization on manage imports screen</li>\r\n 	<li>improvement: added wp_all_import_shard_delay filter</li>\r\n 	<li>improvement: added wp_all_import_images_uploads_dir filter</li>\r\n 	<li>bug fix: compatibility with WPML</li>\r\n 	<li>bug fix: generation image filename</li>\r\n 	<li>bug fix: wp_all_import_specified_records filter</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.4.8</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: added hungarian translation</li>\r\n 	<li>bug fix: csv headers generation</li>\r\n 	<li>bug fix: import template from Import Settings works again</li>\r\n 	<li>bug fix: users no longer logged out when user is update via import</li>\r\n 	<li>bug fix: images with encoded quotes</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.4.7</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>bug fix: cron job completed early for imports with xpath</li>\r\n 	<li>bug fix: csv headers with non latin characters</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.4.6</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>bug fix: cron job un-triggered on timeout error</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.4.5</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>bug fix: import xls from dropbox</li>\r\n 	<li>bug fix: template preview</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.4.4</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: new filter \'wp_all_import_phpexcel_delimiter\'</li>\r\n 	<li>improvement: new filter \'wp_all_import_is_trim_parsed_data\'</li>\r\n 	<li>improvement: added new \'filter wp_all_import_skip_x_csv_rows\'</li>\r\n 	<li>improvement: added csv delimiter setting to import options screen</li>\r\n 	<li>bug fix: taxonomies dropdown list</li>\r\n 	<li>bug fix: cron job was never untriggered when calling to undefined function</li>\r\n 	<li>bug fix: taxonomies preview</li>\r\n 	<li>bug fix: import duplicate tags</li>\r\n 	<li>bug fix: importing taxonomy terms that already exist in a different taxonomies</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.4.3</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>bug fix: parsing images for newly added records</li>\r\n 	<li>bug fix: the event calendar conflict</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.4.2</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: added new filter wp_all_import_phpexcel_object to modify excel data before import</li>\r\n 	<li>bug fix: search for images ending with underscores in media</li>\r\n 	<li>bug fix: import hierarchical posts and pages</li>\r\n 	<li>bug fix: import custom post type page templates</li>\r\n 	<li>bug fix: matching taxonomies by name</li>\r\n 	<li>bug fix: custom fields validation</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.4.1</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: compatibility with PHP 7.x</li>\r\n 	<li>improvement: search for existing attachments option</li>\r\n 	<li>improvement: new filter for file path of functions.php file</li>\r\n 	<li>bug fix: images preview</li>\r\n 	<li>bug fix: improved matching for images similar to image.com.png</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.4.0</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>new feature: added import taxonomies feature</li>\r\n 	<li>bug fix: hierarchy taxonomies preview</li>\r\n 	<li>bug fix: empty logs folder generation</li>\r\n 	<li>bug fix: \'Keep images currently in Media Library\' option for add-ons</li>\r\n 	<li>bug fix: import bundles with gz files</li>\r\n 	<li>bug fix: custom functions for attachments</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.3.2</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>improvement: \'Force Stream Reader\' setting</li>\r\n 	<li>improvement: tar + gz compression support for remote feeds</li>\r\n 	<li>improvement: new filter \'wp_all_import_auto_create_csv_headers\'</li>\r\n 	<li>improvement: new filter \'wp_all_import_is_base64_images_allowed\'</li>\r\n 	<li>improvement: new filter \'wp_all_import_set_post_terms\' to leave a specific category alone when a post is being updated</li>\r\n 	<li>bug fix: cron import timeout when set missing outofstock option is enabled</li>\r\n 	<li>bug fix: nodes navigation for xpath like /news/item</li>\r\n 	<li>bug fix: frozen import template screen for cyrillic XML feeds</li>\r\n 	<li>bug fix: conflict between taxonomies &amp; user import</li>\r\n 	<li>bug fix: creating users with the same email</li>\r\n 	<li>bug fix: enable keep line breaks option by default</li>\r\n 	<li>bug fix: composer namespace conflict</li>\r\n 	<li>bug fix: images preview when wp is in subdirectory</li>\r\n 	<li>bug fix: \'Instead of deletion, set Custom Field\' option for users import</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.3.1</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed issue with libxml 2.9.3</li>\r\n 	<li>execute \'pmxi_article_data\' filter for all posts ( new &amp; existing )</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.3.0</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>added de_CH translation</li>\r\n 	<li>added support for .svg images</li>\r\n 	<li>added possibility for import excerpts for pages</li>\r\n 	<li>added new filter \'wp_all_import_specified_records\'</li>\r\n 	<li>added new filter \'wp_all_import_is_post_to_delete\'</li>\r\n 	<li>fixed saving function editor</li>\r\n 	<li>fixed custom fields mapping rules with \'0\' value</li>\r\n 	<li>fixed termination of the import if the \"Delete source XML file after importing\" is checked</li>\r\n 	<li>disable XMLReader stream filter for HHVM</li>\r\n 	<li>improve search for existing images in media gallery</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.2.9</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed error messages on step 4</li>\r\n 	<li>fixed renaming image files</li>\r\n 	<li>fixed delete missing records option</li>\r\n 	<li>fixed csv to xml convertation in case when there are some equal titles in csv file</li>\r\n 	<li>stop using $HTTP_RAW_POST_DATA for PHP 7.x compatibility</li>\r\n 	<li>added new action \'pmxi_missing_post\'</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.2.8</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>update required database tables</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.2.7</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed detecting root nodes with colons in names</li>\r\n 	<li>fixed php notice \"Undefined variable: existing_meta_keys\"</li>\r\n 	<li>fixed rendering special chars in function editor</li>\r\n 	<li>fixed css for WordPress 4.4</li>\r\n 	<li>added feature to delete only posts not import</li>\r\n 	<li>added feature to download template/bundle from import settings</li>\r\n 	<li>added new option for importing images \"Use images currently in Media Library\"</li>\r\n 	<li>remove periods to hyphens convertation in image name</li>\r\n 	<li>auto detect dropbox URLs and change to dl=1</li>\r\n 	<li>changed comma delimiting behavior/UI in image meta</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.2.6</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed preview prices</li>\r\n 	<li>fixed counting XML nodes</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.2.5</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed \'Delete source XML file after importing\' option</li>\r\n 	<li>fixed ‘Instead of deletion, change post status to Draft’ option</li>\r\n 	<li>fixed reading XML files with NS in element names</li>\r\n 	<li>added ‘WooCommerce Order’ to post type list on step 1</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.2.4</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed duplicate matching by custom field</li>\r\n 	<li>fixed error messages on step1 in case when server throws fatal error e.q. time limit exception</li>\r\n 	<li>fixed option \"Delete posts that are no longer present in your file\", now it works with empty CSV files which has only one header row</li>\r\n 	<li>fixed importing custom fields with the same name</li>\r\n 	<li>fixed custom functions in images preview</li>\r\n 	<li>added es_ES translation</li>\r\n 	<li>added de_DE translation</li>\r\n 	<li>added iterative ajax delete process ( deleting associated posts )</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.2.3</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>Fixed removing uploaded XML source file on re-run process</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.2.2</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>Fixed saving function editor</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.2.1</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed duplicate matching by custom field ( cron )</li>\r\n 	<li>fixed converting image filenames to lowercase</li>\r\n 	<li>fixed import html to image description</li>\r\n 	<li>fixed import _wp_old_slug</li>\r\n 	<li>added Post ID to manual record matching</li>\r\n 	<li>added \'Comment status\' to \'Choose data to update\' section</li>\r\n 	<li>added \'cancel\' to cron API /wp-cron.php?import_key=Kt&amp;import_id=407&amp;action=cancel</li>\r\n 	<li>added function editor</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.2.0</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed parsing CSV with empty lines</li>\r\n 	<li>fixed parsing multiple IF statements</li>\r\n 	<li>fixed preview in case when ‘Disable the visual editor when writing’ is enabled</li>\r\n 	<li>fixed conflict with WooCommerce - Store Exporter Deluxe</li>\r\n 	<li>added possibility to start synchronized cron requests &amp;sync=1</li>\r\n 	<li>added notifications for required addons</li>\r\n 	<li>added support for wp all export bundle</li>\r\n 	<li>added support for manual import bundle</li>\r\n 	<li>added feature \'click to download import file\'</li>\r\n 	<li>added validation for excerpt and images sections</li>\r\n 	<li>added auto-detect a broken Unique ID notification</li>\r\n 	<li>added import template notifications</li>\r\n 	<li>removed support for importing WooCommerce Orders</li>\r\n 	<li>changed absolute paths to relative in db</li>\r\n 	<li>updated cron response messages</li>\r\n 	<li>moved uploaded files to \'Use existing\' dropdown</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.1.7</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>added support for Excel files ( .xls, .xlsx )</li>\r\n 	<li>added new option \'Do not remove images from media gallery\' on import\r\nsettings screen</li>\r\n 	<li>added new options to taxonomies import \'Try to match terms to\r\nexisting child Product Categories\' &amp; \'Only assign Products to the\r\nimported Product Category, not the entire hierarchy\'</li>\r\n 	<li>fixed excessive update requests</li>\r\n 	<li>added options to \'Delete associated posts</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.1.6</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>load ini_set only on plugins pages</li>\r\n 	<li>fixed saving import template</li>\r\n 	<li>added import post format via XPath</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.1.5</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed import page template</li>\r\n 	<li>added a second argument to pmxi_saved_post action ( SimpleXML object ) of current record</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.1.4</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed Apply mapping rules before splitting via separator symbol for manual hierarchy</li>\r\n 	<li>fixed path equal or less than</li>\r\n 	<li>fixed changing unique key when moving back from confirm screen</li>\r\n 	<li>fixed override page template</li>\r\n 	<li>fixed unlink images on deleting missing posts</li>\r\n 	<li>updated wp_all_import_is_post_to_update filter with second argument XML node as array</li>\r\n 	<li>updated compatibility with WP All Export</li>\r\n 	<li>added filter <code>wp_all_import_feed_type</code></li>\r\n 	<li>added possibility to use php to calculate URL on first step <code>[add_to_url(\"https://google.com/\")]</code></li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.1.3</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed un triggering issue on cron jobs for empty files</li>\r\n 	<li>changed updater priority from 10 to 20</li>\r\n 	<li>added post parent option for all hierarchical CPT</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.1.2</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>Important security fixes - additional hardening, prevention of blind SQL injection and reflected XSS attacks</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.1.1</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>critical security fix - stopping non-logged in users from accessing adminInit https://www.wpallimport.com/2015/02/wp-import-4-1-1-mandatory-security-update/</li>\r\n 	<li>added new filter <code>wp_all_import_is_post_to_update</code> to skip needed posts <code>add_filter(\'wp_all_import_is_post_to_update\', \'is_post_to_update\', 10, 1);</code></li>\r\n 	<li>added new option <code>Search for existing attachments to prevent duplicates in media library<code></code></code></li>\r\n 	<li>fixed imports pagination</li>\r\n 	<li>fixed preview taxonomies</li>\r\n 	<li>fixed upload folder creation when \'upload_dir\' filter defined</li>\r\n 	<li>fixed db schema for wpmu when new site added</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.1.0</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed cron execution when titles are not defined</li>\r\n 	<li>added an option to separate hierarchy groups via symbol</li>\r\n 	<li>added separator symbol for manually nested taxonomies</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.0.9</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>added license key setting for automatic update</li>\r\n 	<li>added option <code>search images through attachments</code></li>\r\n 	<li>added option <code>assign term to the bottom level term in the hierarchy</code></li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.0.8</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed taxonomies preview</li>\r\n 	<li>fixed import meta description for images</li>\r\n 	<li>added feature to assign posts to needed terms</li>\r\n 	<li>added new option for taxonomies <code>Apply mapping rules before splitting via separator symbol</code></li>\r\n 	<li>added set with XPath option for comment status, ping status, page parent, page template</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.0.7</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed feed detection for rss chanels</li>\r\n 	<li>fixed parsing json data</li>\r\n 	<li>fixed add only new images option</li>\r\n 	<li>fixed delete missing records option</li>\r\n 	<li>added ability to import custom fields with the same name</li>\r\n 	<li>added port setting</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.0.6</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed encoding for taxonomies mapping</li>\r\n 	<li>optimization for delete missing records option</li>\r\n 	<li>fixed feed type auto-detection</li>\r\n 	<li>fixed changes that related to _wp_page_template meta data</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.0.5</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed template parsing when php function arguments contains an array()</li>\r\n 	<li>fixed error msg when feed is html page e.g. page 404</li>\r\n 	<li>fixed xpath building</li>\r\n 	<li>update hierarchy taxonomies options</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.0.4</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>changed main file name to wp-all-import-pro.php</li>\r\n 	<li>fixed feed type auto-detection</li>\r\n 	<li>fixed bug with empty unique keys</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.0.3</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed re-count record when a file has been changed at an import setting screen</li>\r\n 	<li>fixed database schema auto-update</li>\r\n 	<li>fixed uploading large files</li>\r\n 	<li>fixed auto-detecting root element</li>\r\n 	<li>fixed log storage in database</li>\r\n 	<li>fixed cron execution when \"do not create new records\" option is enabled</li>\r\n 	<li>fixed feed type detection</li>\r\n 	<li>fixed unlink attachment source when posts updated/deleted</li>\r\n 	<li>fixed specialchars in taxnomies/categories mapping</li>\r\n 	<li>updated taxonomies hierarchy settings</li>\r\n 	<li>added a limit 10 to the existing meta values</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>4.0.2</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>speed up the import of taxonomies/categories</li>\r\n 	<li>added taxonomies/categories mapping feature</li>\r\n 	<li>added custom fields auto-detection feature</li>\r\n 	<li>added custom fields mapping feature</li>\r\n 	<li>added images/taxonomies preview feature</li>\r\n 	<li>added unofficial support for more file formats - json &amp; sql</li>\r\n 	<li>added new setting (secure mode) to protect your files</li>\r\n 	<li>better import logs</li>\r\n 	<li>updated design</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>3.4.2</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed navigation bug</li>\r\n 	<li>fixed search duplicates</li>\r\n 	<li>fixed duplicate categories</li>\r\n 	<li>fixed path builder for element attributes</li>\r\n 	<li>fixed cron processing for already uploaded files (XML)</li>\r\n 	<li>added taxonomies for pages</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>3.4.1</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed <code>pmxi_delete_post</code> action: this action was executed after posts were deleted</li>\r\n 	<li>fixed import menu order &amp; post parent for pages</li>\r\n 	<li>fixed import log for continue import feature</li>\r\n 	<li>added is update author option</li>\r\n 	<li>fixed post formats</li>\r\n 	<li>fixed cron processing: WP_Error object was not initialized</li>\r\n 	<li>fixed cron processing for import where XPath filtering is defined</li>\r\n 	<li>fixed UTC dates on manage imports page</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>3.4.0</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed: import empty content</li>\r\n 	<li>fixed: log files</li>\r\n 	<li>fixed: detect image extension</li>\r\n 	<li>fixed: terms hierarchy on cron job execution</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>3.3.9</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>added: feature to do not escape shortcodes</li>\r\n 	<li>fixed: pre-processing logic</li>\r\n 	<li>fixed: downloading images with unicode url</li>\r\n 	<li>fixed: clear non ASCII/invalid symbols in CSV files</li>\r\n 	<li>fixed: import option \'Instead of using original image file name, set file name(s)\'</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>3.3.8</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed: admin notices</li>\r\n 	<li>fixed: creation duplicates draft post via cron</li>\r\n 	<li>fixed: images with encoded symbols</li>\r\n 	<li>fixed: upload file via URL</li>\r\n 	<li>fixed: php notices</li>\r\n 	<li>added: compatibility with WP 3.9</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>3.3.7</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>updated convertation CSV to XML with XMLWriter</li>\r\n 	<li>fixed import *.zip files</li>\r\n 	<li>fixed xpath helper on step 2</li>\r\n 	<li>fixed showing zeros in XML tree</li>\r\n 	<li>allow post content to be empty on step 3</li>\r\n 	<li>added autodetect session mode</li>\r\n 	<li>delete deprecated settings <code>my csv contain html code</code> and <code>case sensitivity</code></li>\r\n 	<li>fixed deleting history files</li>\r\n 	<li>fixed autodetect image extensions</li>\r\n 	<li>fixed increasing SQL query length</li>\r\n 	<li>added error messages</li>\r\n 	<li>fixed \"High Speed Small File Processing\" option</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>3.3.6</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed: multiple cron execution</li>\r\n 	<li>fixed: load options template</li>\r\n 	<li>fixed: session initialization</li>\r\n 	<li>fixed: import search</li>\r\n 	<li>fixed: attachment author on cron execution</li>\r\n 	<li>fixed: download images option</li>\r\n 	<li>added: errors messages to the log</li>\r\n 	<li>added: \"not contains\" filter to step 2</li>\r\n 	<li>added: compatibility with categories mapping addon</li>\r\n 	<li>updated: cpt navigation on step 4</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>3.3.5</h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>fixed bug with cron processing</li>\r\n 	<li>fixed bug with saving wrong image name</li>\r\n 	<li>added serialized custom fields feature</li>\r\n 	<li>added compatibility with user import add-on</li>\r\n 	<li>added compatibility with 3rd party developers</li>\r\n 	<li>added new setting \'Cron processing time limit\'</li>\r\n</ul>\r\n</li>\r\n</ul>\";}s:7:\"banners\";a:2:{s:4:\"high\";s:56:\"https://ps.w.org/wp-all-import/assets/banner-772x250.png\";s:3:\"low\";s:0:\"\";}s:18:\"custom_update_note\";s:0:\"\";s:19:\"update_note_version\";s:0:\"\";s:5:\"icons\";a:0:{}s:3:\"msg\";s:33:\"No license key has been provided.\";s:6:\"tested\";s:5:\"6.4.2\";s:6:\"author\";s:6:\"Soflyy\";s:8:\"requires\";s:3:\"5.0\";s:12:\"requires_php\";s:3:\"7.4\";s:12:\"contributors\";a:2:{s:6:\"soflyy\";a:3:{s:12:\"display_name\";s:6:\"soflyy\";s:7:\"profile\";s:37:\"https://profiles.wordpress.org/soflyy\";s:6:\"avatar\";s:51:\"https://wordpress.org/grav-redirect.php?user=soflyy\";}s:11:\"wpallimport\";a:3:{s:12:\"display_name\";s:11:\"wpallimport\";s:7:\"profile\";s:42:\"https://profiles.wordpress.org/wpallimport\";s:6:\"avatar\";s:56:\"https://wordpress.org/grav-redirect.php?user=wpallimport\";}}}','no'),(303152,'wp-all-import-pro_timeout_85b8495febade7a221f67b0bca7d59d9','1705865405','yes'),(303157,'_transient_timeout_080fdc82a3a678dab2d4f10c27ddeb79','1705948206','no'),(303158,'_transient_080fdc82a3a678dab2d4f10c27ddeb79','O:8:\"stdClass\":19:{s:11:\"new_version\";s:5:\"4.0.0\";s:14:\"stable_version\";s:5:\"4.0.0\";s:4:\"name\";s:18:\"WooCommerce Add-On\";s:4:\"slug\";s:23:\"wpai-woocommerce-add-on\";s:3:\"url\";s:76:\"https://www.wpallimport.com/downloads/woocommerce-import-add-on/?changelog=1\";s:12:\"last_updated\";s:19:\"2023-12-04 23:20:55\";s:8:\"homepage\";s:64:\"https://www.wpallimport.com/downloads/woocommerce-import-add-on/\";s:8:\"sections\";a:2:{s:11:\"description\";s:132:\"<p>Learn more at <a href=\"http://www.wpallimport.com/\" target=\"_blank\" rel=\"noopener noreferrer\">http://www.wpallimport.com/</a></p>\";s:9:\"changelog\";s:27575:\"<h4>4.0.0</h4><ul>\r\n<li>minimum WordPress version: 5.0</li>\r\n<li>minimum PHP version: 7.2</li>\r\n<li>note: WP All Import 4.8.2+ is required to import orders</li>\r\n<li>note: order import behavior has changed, check your order import configurations before running them</li>\r\n<li>improvement: initial support for HPOS</li>\r\n<li>improvement: better order imports</li>\r\n<li>improvement: better PHP 8.2 support</li>\r\n<li>bug fix: resolve miscellaneous PHP and JS notices</li>\r\n</ul><h4>3.3.7</h4><ul>\r\n<li>improvement: final changes before the release of the updated order import UI</li>\r\n<li>note: this release includes information about accessing the updated order import UI beta</li>\r\n</ul>\r\n<h4>3.3.6</h4>\r\n<ul><li>improvement: prepare for upcoming release with updated UI for order imports</li></ul>\r\n<h4>3.3.5</h4><ul>\r\n    <li>bug fix: resolve issue adding and updating custom attributes</li>\r\n    <li>bug fix: ensure SKUs are generated when configured for existing product imports</li>\r\n    <li>bug fix: resolve issues related to chaining import runs via WP-CLI</li>\r\n    <li>bug fix: retain existing sale prices if they\\\'re not set to update</li>\r\n    <li>bug fix: updates using the \\\'Link all variations\\\' option removed non-variation attributes</li>\r\n    <li>bug fix: correctly link author when using \\\'Link all variations\\\' option</li>\r\n    <li>bug fix: ensure products are properly converted to \\\'simple\\\' when configured</li>\r\n    <li>improvement: remove deprecated \\\'get_page_by_title\\\' function calls</li>\r\n    <li>improvement: allow activating HPOS (full HPOS support is not yet available)</li>\r\n</ul>\r\n<h4>3.3.4</h4><ul>\r\n    <li>new feature: Records missing from your import file can now be deleted even if WP All Import didn\\\'t create them. \\\'Existing Items\\\' imports have gained the ability to delete records missing from your import file as well.</li>\r\n    <li>bug fix: adjust prices error in PHP 8.1</li>\r\n    <li>improvement: match Order items to products regardless of their post status</li>\r\n    <li>improvement: ensure zero sale price isn\\\'t imported for products</li>\r\n</ul><h4>3.3.3</h4><ull>\r\n<li>bug fix: term counts updated incorrectly</li>\r\n</ul><h4>3.3.2</h4>\r\n<ul>\r\n<li>improvement: gracefully handle errors when recounting terms</li>\r\n<li>improvement: better autoloading of plugin files</li>\r\n</ul>\r\n<h4>3.3.1</h4><ul>\r\n<li>improvement: WPML compatibility</li>\r\n<li>bug fix: import variation enabled when variations presented as child XML elements didn\\\'t work properly</li>\r\n<li>bug fix: import variation status didn\\\'t work</li>\r\n</ul><h4>3.3.0</h4><ul>\r\n    <li>bug fix: import sale prices for link all variations don\\\'t work properly</li>\r\n    <li>bug fix: import order created date doesn\\\'t work properly</li>\r\n    <li>bug fix: importing orders triggers double emails in some cases</li>\r\n</ul><h4>3.2.9</h4><ul>\r\n    <li>improvement: add new action - wp_all_import_before_variable_product_import</li>\r\n    <li>bugfix: update only these attributes option doesn\\\'t work in some cases</li>\r\n    <li>bugfix: import attributes with < and > characters doesn\\\'t work properly</li>\r\n    <li>bugfix: duplicate email notifications are sent in some cases when updating orders</li>\r\n    <li>bugfix: unable to convert variable products to simple in some cases</li>\r\n    <li>bugfix: not possible to import \\\"0\\\" as an attribute value</li>\r\n</ul><h4>3.2.8</h4>\r\n<ul>\r\n 	<li>bugfix: only send order notifications when orders are created or status changes</li>\r\n 	<li>bugfix: \\\'any\\\' attributes for non-taxonomy attributes weren\\\'t imported correctly</li>\r\n 	<li>bugfix: variations not updating correctly when using \\\'link all variations\\\'</li>\r\n 	<li>bugfix: attributes with &lt; and &gt; characters weren\\\'t imported correctly</li>\r\n 	<li>bugfix: match non-Latin taxonomy attribute names with \\\'Update only these Attributes, leave the rest alone\\\' option</li>\r\n 	<li>bugfix: could not import attributes with value 0</li>\r\n 	<li>improvement: decrease frequency of plugin update checks</li>\r\n 	<li>improvement: added \\\'wp_all_import_before_variable_product_import\\\' action</li>\r\n</ul>\r\n<h4>3.2.7</h4>\r\n<ul>\r\n 	<li>bug fix: import stock status for link all variations option didn\\\'t work in some cases</li>\r\n 	<li>bug fix: import custom fields for variations didn\\\'t work in some cases</li>\r\n 	<li>bug fix: order status notifications was not sent during re-import process</li>\r\n 	<li>improvement: add new filter - wp_all_import_sync_parent_acf_with_first_variation</li>\r\n</ul>\r\n<h4>3.2.6</h4>\r\n<ul>\r\n 	<li>improvement: add option to import grouped product children</li>\r\n 	<li>improvement: add support for Additional Variation Images Gallery For WooCommerce</li>\r\n 	<li>bug fix: variations were create if parent product does not exist</li>\r\n 	<li>bug fix: downloadable permissions wan not imported correctly</li>\r\n 	<li>bug fix: images matching option when importing variation via option 5 were not respected</li>\r\n 	<li>bug fix:: set first in stock variation as the default selection didn\\\'t work in some cases</li>\r\n</ul>\r\n<h4>3.2.5</h4>\r\n<ul>\r\n 	<li>improvement: add option to import default attributes via xpath</li>\r\n 	<li>bug fix: email sent when order status changed to completed</li>\r\n 	<li>bug fix: re-running an import with \\\'Skip posts if their data in your file has not changed\\\' removes product variations in some cases</li>\r\n 	<li>bug fix: enabling \\\'Link all variations\\\' and \\\'Delete posts no longer present in your file\\\' results in variations being deleted</li>\r\n 	<li>bug fix: unable to add parent SKU when importing products as child element in XML</li>\r\n 	<li>bug fix: post author for first product variation not imported properly</li>\r\n 	<li>bug fix: product attributes for first product variation not imported properly</li>\r\n 	<li>bug fix: changing parent sku creates duplicate variations</li>\r\n 	<li>bug fix: order line items are imported even if the quantity is 0</li>\r\n 	<li>bug fix: WooCommerce lookup table not cleaned up when products deleted via cron</li>\r\n 	<li>bug fix: linked product matching attempted during the import process before all products are imported</li>\r\n 	<li>bug fix: featured image not updated when only \\\'Images\\\' is set to be updated in \\\'Choose which data to update\\\'</li>\r\n 	<li>bug fix: selective hashing missing for WooCommerce order imports</li>\r\n 	<li>bug fix: all product attributes updated when choosing only to update specific attributes for child XML variations</li>\r\n 	<li>bug fix: attributes containing \\\'#\\\' character not imported properly</li>\r\n 	<li>bug fix: \\\'Tax amount per unit\\\' field disappears in order import options</li>\r\n 	<li>bug fix: \\\'Enable reviews\\\' option not migrated</li>\r\n 	<li>bug fix: product_shipping_class taxonomy not updated</li>\r\n 	<li>bug fix: advanced options are not pre-selected in the 3rd (and all subsequent) attributes in \\\'Attributes\\\' tab</li>\r\n 	<li>bug fix: order author is updated when only updating order status</li>\r\n</ul>\r\n<h4>3.2.4</h4>\r\n<ul>\r\n 	<li>improvement: compatibility with WordPress 5.5</li>\r\n 	<li>bug fix: product attributes are not deleted when missing variations deleted</li>\r\n</ul>\r\n<h4>3.2.3</h4>\r\n<ul>\r\n 	<li>API: extend pmwi_tab_content action with new argument for import options</li>\r\n 	<li>bug fix: import order products meta data delimited by pipe symbol</li>\r\n</ul>\r\n<h4>3.2.2</h4>\r\n<ul>\r\n 	<li>improvement: import default product attributes for variations with value of \\\"Any\\\"</li>\r\n 	<li>bug fix: coupons improperly recalculated for manual order items</li>\r\n 	<li>bug fix: taxes for line items not imported</li>\r\n</ul>\r\n<h4>3.2.1</h4>\r\n<ul>\r\n 	<li>API: add wp_all_import_regenerate_lookup_tables filter to control lookup tables generation</li>\r\n 	<li>improvement: added ability to import meta data for existing order products</li>\r\n 	<li>bug fix: products with no variations do no import as simple products in some cases</li>\r\n 	<li>bug fix: coupons discount amount was imported incorrectly</li>\r\n 	<li>bug fix: import serialized meta for first variation was serialize two times</li>\r\n</ul>\r\n<h4>3.1.1</h4>\r\n<ul>\r\n 	<li>bug fix: unable to import variable products in WooCommerce 3.9</li>\r\n 	<li>bug fix: unable to import additional variation images</li>\r\n 	<li>bug fix: products with no variations do no import as simple products in some cases</li>\r\n 	<li>bug fix: attribute term from parent not removed if variation deleted</li>\r\n 	<li>bug fix: custom fields for first variation do not update when using manual record matching</li>\r\n</ul>\r\n<h4>3.1.0</h4>\r\n<ul>\r\n 	<li>API: add wp_all_import_is_post_to_update filter for import variable products from child XML elements</li>\r\n 	<li>bug fix: unable to block emails to customers when importing WooCommerce orders</li>\r\n 	<li>bug fix: product default attributes are not updated in some cases</li>\r\n 	<li>bug fix: unable to update only selected attributes for variations in some cases</li>\r\n 	<li>bug fix: do not import variation if variable attributes are not defined</li>\r\n 	<li>bug fix: conflict with woo-advanced-shipment-tracking plugin</li>\r\n 	<li>bug fix: recalculate taxes and coupons after order imported</li>\r\n</ul>\r\n<h4>3.0.9</h4>\r\n<ul>\r\n 	<li>improvement: import WooCommerce simple subscriptions</li>\r\n 	<li>improvement: import WooCommerce order item taxes</li>\r\n 	<li>bug fix: lookup table not updating after import</li>\r\n 	<li>bug fix: attributes not re-counting after import</li>\r\n 	<li>bug fix: product variation status not importing in some cases</li>\r\n</ul>\r\n<h4>3.0.8</h4>\r\n<ul>\r\n 	<li>improvement: add new filter wp_all_import_minimum_number_of_variations to import as simple product if it has less than the minimum number of variations</li>\r\n 	<li>bug fix: permissions reset for downloadable products in some cases</li>\r\n 	<li>bug fix: hidden variations created after making product simple</li>\r\n 	<li>bug fix: unable to update attributes with non UTF-8 characters</li>\r\n</ul>\r\n<h4>3.0.7</h4>\r\n<ul>\r\n 	<li>improvement: add validation to catalog visibility field</li>\r\n 	<li>improvement: match cross-sell products by title</li>\r\n 	<li>API: new filter wp_all_import_get_prices_from_first_variation</li>\r\n 	<li>API: new filter wp_all_import_variation_any_attribute</li>\r\n 	<li>API: new filter wp_all_import_product_attributes_delimiter</li>\r\n 	<li>bug fix: images not imported to first variation when \\\'WooCommerce Additional Variation Images\\\' plugin is installed</li>\r\n 	<li>bug fix: shipping class not imported properly in some cases</li>\r\n 	<li>bug fix: prices for variable products with 1 variation are not imported in some cases</li>\r\n 	<li>bug fix: product_visibility taxonomy for product variations not imported in some cases</li>\r\n</ul>\r\n<h4>3.0.6</h4>\r\n<ul>\r\n 	<li>improvement: added ability to sort attributes in import template</li>\r\n 	<li>improvement: added \\\'Low stock threshold\\\' option</li>\r\n 	<li>improvement: added validation for type 6 of import variable products</li>\r\n 	<li>improvement: added ability to import new variations to existing products</li>\r\n 	<li>bug fix: creating shipping class -1</li>\r\n 	<li>bug fix: import _price field when converting variable product into simple</li>\r\n 	<li>bug fix: import custom fields for variation created from parent row</li>\r\n 	<li>bug fix: deleting missing variation when link all variations option in use</li>\r\n 	<li>bug fix: import taxonomy attributes delimited with pipe symbol</li>\r\n 	<li>bug fix: make product simple &amp; link all variations</li>\r\n 	<li>bug fix: import ACF fields into first variation</li>\r\n 	<li>bug fix: import shipping class for variations imported via 2 &amp; 4 options</li>\r\n 	<li>bug fix: undating only sepcified attributes</li>\r\n 	<li>bug fix: updating stock qty when _stock field is not set to update</li>\r\n 	<li>bug fix: import downloadable variations with option 5</li>\r\n 	<li>bug fix: add only new attributes for variable products</li>\r\n 	<li>bug fix: matching parent product by title</li>\r\n</ul>\r\n<h4>3.0.5</h4>\r\n<ul>\r\n 	<li>bug fix: updating product sale dates only</li>\r\n 	<li>bug fix: prices preview</li>\r\n 	<li>bug fix: import custom product types</li>\r\n 	<li>bug fix: import product type 5 when attributes are not defined</li>\r\n 	<li>bug fix: re-count shipping terms after import completed</li>\r\n 	<li>bug fix: import stock status when making variable product simple</li>\r\n 	<li>bug fix: import non utf8 attributes for type 5 of import variable products</li>\r\n 	<li>bug fix: import pipe delimited attributes</li>\r\n 	<li>bug fix: automatically update stock status when _stock is updating</li>\r\n 	<li>bug fix: SKU auto-generation for 5th type of import variable products</li>\r\n 	<li>bug fix: added missing wp_all_import_variable_product_imported hook</li>\r\n</ul>\r\n<h4>3.0.4</h4>\r\n<ul>\r\n 	<li>bug fix: import shipping class</li>\r\n 	<li>bug fix: adjust empty prices</li>\r\n 	<li>bug fix: import attributes with non utf-8 characters</li>\r\n 	<li>bug fix: import stock quantity for variable products ( variations are children in XML file )</li>\r\n</ul>\r\n<h4>3.0.3</h4>\r\n<ul>\r\n 	<li>bug fix: PHP 5.4 compatibility - fixed \\\"can\\\'t use method return value in write context\\\" error</li>\r\n 	<li>bug fix: assing attributes marked as not in variation to parent product</li>\r\n</ul>\r\n<h4>3.0.2</h4>\r\n<ul>\r\n 	<li>bug fix: import attributes marked as not in variation</li>\r\n 	<li>bug fix: import attributes with reserved term names</li>\r\n</ul>\r\n<h4>3.0.1</h4>\r\n<ul>\r\n 	<li>bug fix: PHP 7.0 compatibility</li>\r\n 	<li>bug fix: sanitize variation attribute names</li>\r\n 	<li>bug fix: deleting SKUs during mport with manual records matching enabled</li>\r\n</ul>\r\n<h4>3.0.0</h4>\r\n<ul>\r\n 	<li>improvement: refactored codebase</li>\r\n 	<li>improvement: speed up import variable products</li>\r\n 	<li>improvement: sync variable product with variations</li>\r\n 	<li>bug fix: do not add featured image to the gallery</li>\r\n 	<li>bug fix: updating existing products by post ID</li>\r\n 	<li>bug fix: adjust prices for variable product imported via option 5</li>\r\n 	<li>bug fix: import order notes date</li>\r\n 	<li>bug fix: import order refunds date</li>\r\n 	<li>bug fix: import order payment method</li>\r\n 	<li>bug fix: generate order_key during import orders</li>\r\n</ul>\r\n<h4>2.4.1</h4>\r\n<ul>\r\n 	<li>bug fix: import attributes with special characters</li>\r\n 	<li>bug fix: recount product terms when updating post status</li>\r\n</ul>\r\n<h4>2.4.0</h4>\r\n<ul>\r\n 	<li>bug fix: stock status not importing properly when _backorders custom field is not set</li>\r\n 	<li>bug fix: product dimensions won\\\'t import if \\\'Virtual\\\' field is not set</li>\r\n 	<li>bug fix: compatibility fix WooCommerce 2.6.x</li>\r\n 	<li>bug fix: options conflict when creating simple products</li>\r\n 	<li>bug fix: remove deprecated function calls for PHP 7.2 compatibility</li>\r\n 	<li>bug fix: unable to import 0 as a value for attributes</li>\r\n 	<li>bug fix: mirror new WooCommerce core behavior that forces all uncategorized products to be assigned to the Uncategorized category</li>\r\n 	<li>bug fix: custom fields not imported to all product variations</li>\r\n 	<li>bug fix: stock status not set to outofstock when stock value set to 0 for some product variation imports</li>\r\n 	<li>bug fix: \\\'Stock Quantity\\\' field not visible for some product variation imports</li>\r\n 	<li>bug fix: unable to set \\\'Catalog visibility\\\' to \\\'Search results only\\\' for External/Affiliate products</li>\r\n 	<li>bug fix: unable to import additional variation images for some product variation imports</li>\r\n 	<li>bug fix: variable products not imported as simple products when only one variation is imported</li>\r\n</ul>\r\n<h4>2.3.9</h4>\r\n<ul>\r\n 	<li>bug fix: make product simple options when missing variation deleted</li>\r\n 	<li>bug fix: set missing records out of stock for link all variations</li>\r\n 	<li>bug fix: matching linked products</li>\r\n 	<li>bug fix: link all variations - set custom fields for missing records</li>\r\n 	<li>bug fix: setting order tax items via xpath</li>\r\n</ul>\r\n<h4>2.3.9</h4>\r\n<ul>\r\n 	<li>bug fix: make product simple options when missing variation deleted</li>\r\n 	<li>bug fix: set missing records out of stock for link all variations</li>\r\n 	<li>bug fix: matching linked products</li>\r\n 	<li>bug fix: link all variations - set custom fields for missing records</li>\r\n 	<li>bug fix: setting order tax items via xpath</li>\r\n</ul>\r\n<h4>2.3.8</h4>\r\n<ul>\r\n 	<li>improvement: added new filter wp_all_import_recount_terms_after_import</li>\r\n 	<li>improvement: Allow add variations as linked products</li>\r\n 	<li>bug fix: compatibility with woo commerce 2.6</li>\r\n 	<li>bug fix: error on activation without WP All Import</li>\r\n 	<li>bug fix: grouping variable products</li>\r\n 	<li>bug fix: Set parent product outofstock if all variations are outofstock</li>\r\n 	<li>bug fix: import stock status for 5th type of import variable products</li>\r\n 	<li>bug fix: do not update stock_status if _stock is not set to update</li>\r\n</ul>\r\n<h4>2.3.7</h4>\r\n<ul>\r\n 	<li>improvement: added \\\'WooCommerce Advanced Options\\\' to re-import section</li>\r\n 	<li>bug fix: variations title</li>\r\n 	<li>bug fix: import first variation image</li>\r\n 	<li>bug fix: send order emails after custom fields were imported</li>\r\n 	<li>bug fix: updating featured product status</li>\r\n 	<li>bug fix: WPML &amp; link all variations option conflict</li>\r\n 	<li>bug fix: add _price field for each variation</li>\r\n 	<li>bug fix: terms re-count</li>\r\n</ul>\r\n<h4>2.3.6</h4>\r\n<ul>\r\n 	<li>improvement: new option \\\'Parent SKU\\\' for variable products types 2 &amp; 4</li>\r\n 	<li>improvement: new action wp_all_import_make_product_simple</li>\r\n 	<li>bug fix: import _order_tax</li>\r\n 	<li>bug fix: detecting duplicate SKUs</li>\r\n 	<li>bug fix: import product visibility WC 3.0</li>\r\n 	<li>bug fix: stock threshold</li>\r\n 	<li>bug fix: title for first variation</li>\r\n 	<li>bug fix: import non latin attributes</li>\r\n</ul>\r\n<h4>2.3.5</h4>\r\n<ul>\r\n 	<li>improvement: add japanese translations</li>\r\n 	<li>improvement: compatibility with WC 3.0</li>\r\n 	<li>bug fix: import _tax_class</li>\r\n 	<li>bug fix: remove orphaned attributes relationships</li>\r\n 	<li>bug fix: import order taxes</li>\r\n</ul>\r\n<h4>2.3.4</h4>\r\n<ul>\r\n 	<li>bug fix: import reserved attributes</li>\r\n 	<li>bug fix: updating product gallery</li>\r\n 	<li>bug fix: WooCommerce reports when importing orders</li>\r\n</ul>\r\n<h4>2.3.3</h4>\r\n<ul>\r\n 	<li>improvement: compatibility PHP 7.x</li>\r\n 	<li>improvement: new filter \\\'wp_all_import_variation_taxonomies\\\' to control variation taxonomies</li>\r\n</ul>\r\n<h4>2.3.2</h4>\r\n<ul>\r\n 	<li>improvement: customer matching in order imports</li>\r\n 	<li>improvement: added ACF to re-import options</li>\r\n 	<li>bug fix: term recount for 5th type of import variable products</li>\r\n 	<li>bug fix: import shipping class for 5th type of variable products</li>\r\n 	<li>bug fix: re-creation variations ( link all variations option )</li>\r\n 	<li>bug fix: confirm import screen for order manual record matching</li>\r\n</ul>\r\n<h4>2.3.1</h4>\r\n<ul>\r\n 	<li>improvement: added custom fields section to import options when importing Orders</li>\r\n 	<li>bug fix: conflict between updating Product Type &amp; \\\'Create products with no variations as simple products\\\' option</li>\r\n 	<li>bug fix: \\\'create products with no variations as simple products\\\' option for variable product when variations presented as child XML nodes</li>\r\n</ul>\r\n<h4>2.3.0</h4>\r\n<ul>\r\n 	<li>added order imports</li>\r\n 	<li>fixed conflict between \\\'Delete posts that are no longer present in your file\\\' &amp; \\\'Link All Variations\\\' option</li>\r\n 	<li>fixed ucwords attributes names</li>\r\n 	<li>fixed import attributes which are not in variations</li>\r\n 	<li>fixed tooltips &amp; css for woo 2.6 compatibility</li>\r\n</ul>\r\n<h4>2.2.9</h4>\r\n<ul>\r\n 	<li>added \\\'Allow backorders?\\\' option for variations as child XML elements</li>\r\n 	<li>do not delete missing parent product if there is no parent in import file</li>\r\n 	<li>fixed updating stock qty even when manage stock update disabled</li>\r\n</ul>\r\n<h4>2.2.8</h4>\r\n<ul>\r\n 	<li>fixed compatibility with WPML ( import multilingual attributes )</li>\r\n 	<li>fixed import attributes with \\\"Link All Variations\\\" options enabled</li>\r\n 	<li>fixed importing custom fields into product variations</li>\r\n 	<li>added possibility to import up &amp; cross sells by product SKU, ID, Title</li>\r\n</ul>\r\n<h4>2.2.7</h4>\r\n<ul>\r\n 	<li>fixed showing simple products on frontend</li>\r\n 	<li>import variation images from local folder ( variations presentes as child XML nodes )</li>\r\n</ul>\r\n<h4>2.2.6</h4>\r\n<ul>\r\n 	<li>variable product manual matching speed up</li>\r\n 	<li>do not associate variations with categories &amp; tags</li>\r\n 	<li>added _product_version meta key &amp; updated .po files</li>\r\n</ul>\r\n<h4>2.2.5</h4>\r\n<ul>\r\n 	<li>fixed updating \\\'Variation Enabled\\\' field</li>\r\n 	<li>fixed import variation image</li>\r\n 	<li>fixed set first variation as default</li>\r\n 	<li>fixed update products data ( manual matching by _sku )</li>\r\n 	<li>fixed compatibility with WPAI free edition</li>\r\n 	<li>added \\\'product_type_selector\\\' filter</li>\r\n 	<li>added es_ES translation</li>\r\n</ul>\r\n<h4>2.2.3</h4>\r\n<ul>\r\n 	<li>fixed importing custom fields to variations</li>\r\n</ul>\r\n<h4>2.2.2</h4>\r\n<ul>\r\n 	<li>fixed \\\'Create products with no variations as simple products\\\' option</li>\r\n</ul>\r\n<h4>2.2.1</h4>\r\n<ul>\r\n 	<li>fixed conflict between options [update only these custom fields &amp; update only these attributes]</li>\r\n 	<li>fixed \\\'create new records\\\' for import variable products when manual record matching choosen</li>\r\n 	<li>fixed do not set variations to draft</li>\r\n 	<li>fixed import shipping class for external products</li>\r\n 	<li>added feature to dynamically set attribute options</li>\r\n 	<li>added new option \\\"Convert decimal separator to a period\\\"</li>\r\n</ul>\r\n<h4>2.2.0</h4>\r\n<ul>\r\n 	<li>fixed adjust prices for variation in case when variations presented as XML child elements</li>\r\n 	<li>fixed import _stock_status for parent products in cases: link all variation &amp; variations presented as child XML elements</li>\r\n 	<li>added Variation Description field</li>\r\n 	<li>added auto create shipping classes</li>\r\n 	<li>removed the option to use nested child elements for variable product when importing into Existing Items</li>\r\n 	<li>removed \\\'Virtual\\\' and \\\'Downloadable\\\' checkboxes</li>\r\n 	<li>hide \\\'Downloadable\\\' settings if product not downloadable</li>\r\n</ul>\r\n<h4>2.1.7</h4>\r\n<ul>\r\n 	<li>fixed set default attributes for \\\'link all variations\\\' option</li>\r\n 	<li>fixed import total_sales</li>\r\n 	<li>fixed changelog</li>\r\n</ul>\r\n<h4>2.1.6</h4>\r\n<ul>\r\n 	<li>fixed import total_sales</li>\r\n</ul>\r\n<h4>2.1.5</h4>\r\n<ul>\r\n 	<li>fixed import shipping class</li>\r\n</ul>\r\n<h4>2.1.3</h4>\r\n<ul>\r\n 	<li>fixed import stock status for negative qty</li>\r\n 	<li>fixed import shipping class when their slugs presented as numeric values</li>\r\n</ul>\r\n<h4>2.1.2</h4>\r\n<ul>\r\n 	<li>fixed import stock status for variable products</li>\r\n</ul>\r\n<h4>2.1.1</h4>\r\n<ul>\r\n 	<li>fixed import stock status</li>\r\n</ul>\r\n<h4>2.1.0</h4>\r\n<ul>\r\n 	<li>added new option \\\'save variation image to the gallery\\\'</li>\r\n 	<li>fixed import stock status for variable products</li>\r\n</ul>\r\n<h4>2.0.9</h4>\r\n<ul>\r\n 	<li>fixed stock status out of stock for external products</li>\r\n</ul>\r\n<h4>2.0.8</h4>\r\n<ul>\r\n 	<li>rename disallowed terms</li>\r\n 	<li>fixed auto detect stock status</li>\r\n 	<li>fixed conflict with woo commerce layered nav widget</li>\r\n 	<li>added new action wp_all_import_variable_product_imported</li>\r\n</ul>\r\n<h4>2.0.7</h4>\r\n<ul>\r\n 	<li>fixed importing default selections</li>\r\n 	<li>optimize import variable products</li>\r\n 	<li>improve security</li>\r\n</ul>\r\n<h4>2.0.6</h4>\r\n<ul>\r\n 	<li>fixed import featured image for first variation</li>\r\n 	<li>fixed manual matching for variations</li>\r\n 	<li>fixed css styles</li>\r\n</ul>\r\n<h4>2.0.5</h4>\r\n<ul>\r\n 	<li>fixed import shipping class via xpath</li>\r\n</ul>\r\n<h4>2.0.4</h4>\r\n<ul>\r\n 	<li>added manage stock options for variation level</li>\r\n</ul>\r\n<h4>2.0.3</h4>\r\n<ul>\r\n 	<li>fixed import variable downloadable products</li>\r\n</ul>\r\n<h4>2.0.2</h4>\r\n<ul>\r\n 	<li>fixed bug with updating data for variations</li>\r\n</ul>\r\n<h4>2.0.1</h4>\r\n<ul>\r\n 	<li>fixed import empty prices</li>\r\n 	<li>fixed update only these product attributes option</li>\r\n 	<li>fixed session bug on cron execution</li>\r\n 	<li>fixed rounding prices when \\\"Attempt to convert incorrectly formatted prices to WooCommerce format\\\" option is disabled</li>\r\n 	<li>changed main plugin file name</li>\r\n</ul>\r\n<h4>2.0.0</h4>\r\n<ul>\r\n 	<li>New WooCommerce add-on for WP All Import 4.0. Don\\\'t upgrade without installing WP All Import 4.0 first. Learn more about WP All Import 4.0 at http://www.wpallimport.com/2014/11/introducing-wp-all-import-4-0/</li>\r\n</ul>\r\n<h4>1.3.5</h4>\r\n<ul>\r\n 	<li>fixed set shipping class to empty value</li>\r\n 	<li>fixed option \\\"create product as simple when no variations\\\"</li>\r\n 	<li>fixed tax classes drop down</li>\r\n 	<li>fixed import attributes</li>\r\n 	<li>added new option \\\"set _stock value for parent product</li>\r\n</ul>\r\n<h4>1.3.4</h4>\r\n<ul>\r\n 	<li>fixed saving shipping class option</li>\r\n 	<li>fixed import product attributes</li>\r\n 	<li>fixed import variable products: updating custom fields in case when fourth variable import type is choosen</li>\r\n 	<li>added new option \\\"combine SKU from variation and parent product {ParentSKU}-{Variation SKU}\\\" for variable products in case when variations presented as child elements</li>\r\n</ul>\r\n<h4>1.3.3</h4>\r\n<ul>\r\n 	<li>fixed saving attribute values with specialcharacters like ö, ú, ...</li>\r\n 	<li>fixed woocommerce currency</li>\r\n 	<li>fixed updating shipping class</li>\r\n 	<li>fixed updating tax class</li>\r\n 	<li>fixed wp_generate_attachment_metadata() error for variations images</li>\r\n 	<li>fixed session warnings</li>\r\n 	<li>replaced deprecated function …clear_product_transients() to wc_delete_product_transients()</li>\r\n 	<li>fixed: load import options</li>\r\n</ul>\r\n<h4>1.3.2</h4>\r\n<ul>\r\n 	<li>fixed: import attributes names with xpath</li>\r\n 	<li>fixed: import attributes with encoded symbols</li>\r\n 	<li>fixed: import up-sells &amp; cross-sells products</li>\r\n 	<li>fixed: updating stock Qty for variations</li>\r\n 	<li>fixed: use parent xpath feature for import variable products (case #5</li>\r\n</ul>\r\n<h4>1.3.1</h4>\r\n<ul>\r\n 	<li>updated: matching grouping product</li>\r\n 	<li>added: option \\\"is update product type\\\"</li>\r\n 	<li>fixed: variations tree</li>\r\n 	<li>fixed: import zero value in stock qty for variation</li>\r\n</ul>\r\n<h4>1.3.0</h4>\r\n<ul>\r\n 	<li>fixed: automatic fixing of improperly formatted prices</li>\r\n 	<li>fixed: manual record matching for variations</li>\r\n 	<li>fixed: php notices</li>\r\n</ul>\r\n<h4>1.2.9</h4>\r\n<ul>\r\n 	<li>fixed import zero value for stock quantity for variations</li>\r\n 	<li>fixed import attributes for variable products (case 5)</li>\r\n 	<li>added \\\"Disable automatic fixing of improperly formatted prices.\\\" option</li>\r\n 	<li>fixed import empty sale price</li>\r\n 	<li>fixed setup stock status with xpath</li>\r\n 	<li>fixed import shipping class for variations</li>\r\n</ul>\r\n<h4>1.2.8</h4>\r\n<ul>\r\n 	<li>added: download type option</li>\r\n 	<li>added: file names option</li>\r\n 	<li>fixed: import attributes</li>\r\n 	<li>fixed: attributes duplication</li>\r\n 	<li>fixed: grouping products</li>\r\n</ul>\r\n<h4>1.2.7</h4>\r\n<ul>\r\n 	<li>fixed: price conversation</li>\r\n</ul>\r\n<h4>1.2.5</h4>\r\n<ul>\r\n 	<li>added: xpath case for grouping products</li>\r\n 	<li>updated: filter prices</li>\r\n 	<li>updated: css for compatibility with wocommerce 2.1</li>\r\n</ul>\";}s:7:\"banners\";a:2:{s:4:\"high\";s:76:\"http://ps.w.org/woocommerce-xml-csv-product-import/assets/banner-772x250.png\";s:3:\"low\";s:0:\"\";}s:18:\"custom_update_note\";s:719:\"<br/><br/>This update includes an improved UI for WooCommerce order imports.<br/><br/>While it is compatible with existing order imports, some import configurations will result in different behavior. <b>We highly recommend that you test existing WooCommerce order imports before running them in production to ensure everything is imported as expected.</b><br/><br/>We are available at <a target=\"_blank\" href=\"https://www.wpallimport.com/support/\">https://www.wpallimport.com/support/</a> if you encounter any issues. You can also download the previous version of the WooCommerce Import Add-On at <a target=\"_blank\" href=\"https://www.wpallimport.com/portal/downloads/\">https://www.wpallimport.com/portal/downloads/</a>.\";s:19:\"update_note_version\";s:5:\"3.3.7\";s:5:\"icons\";a:0:{}s:3:\"msg\";s:8:\"Success.\";s:7:\"package\";s:77:\"https://update.wpallimport.com/serve_package?package_id=2707184&version=4.0.0\";s:13:\"download_link\";s:77:\"https://update.wpallimport.com/serve_package?package_id=2707184&version=4.0.0\";s:6:\"tested\";s:5:\"6.4.2\";s:6:\"author\";s:6:\"Soflyy\";s:8:\"requires\";s:3:\"5.0\";s:12:\"requires_php\";s:3:\"7.4\";}','no'),(303159,'wpai-woocommerce-add-on_080fdc82a3a678dab2d4f10c27ddeb79','O:8:\"stdClass\":19:{s:11:\"new_version\";s:5:\"4.0.0\";s:14:\"stable_version\";s:5:\"4.0.0\";s:4:\"name\";s:18:\"WooCommerce Add-On\";s:4:\"slug\";s:23:\"wpai-woocommerce-add-on\";s:3:\"url\";s:76:\"https://www.wpallimport.com/downloads/woocommerce-import-add-on/?changelog=1\";s:12:\"last_updated\";s:19:\"2023-12-04 23:20:55\";s:8:\"homepage\";s:64:\"https://www.wpallimport.com/downloads/woocommerce-import-add-on/\";s:8:\"sections\";a:2:{s:11:\"description\";s:132:\"<p>Learn more at <a href=\"http://www.wpallimport.com/\" target=\"_blank\" rel=\"noopener noreferrer\">http://www.wpallimport.com/</a></p>\";s:9:\"changelog\";s:27575:\"<h4>4.0.0</h4><ul>\r\n<li>minimum WordPress version: 5.0</li>\r\n<li>minimum PHP version: 7.2</li>\r\n<li>note: WP All Import 4.8.2+ is required to import orders</li>\r\n<li>note: order import behavior has changed, check your order import configurations before running them</li>\r\n<li>improvement: initial support for HPOS</li>\r\n<li>improvement: better order imports</li>\r\n<li>improvement: better PHP 8.2 support</li>\r\n<li>bug fix: resolve miscellaneous PHP and JS notices</li>\r\n</ul><h4>3.3.7</h4><ul>\r\n<li>improvement: final changes before the release of the updated order import UI</li>\r\n<li>note: this release includes information about accessing the updated order import UI beta</li>\r\n</ul>\r\n<h4>3.3.6</h4>\r\n<ul><li>improvement: prepare for upcoming release with updated UI for order imports</li></ul>\r\n<h4>3.3.5</h4><ul>\r\n    <li>bug fix: resolve issue adding and updating custom attributes</li>\r\n    <li>bug fix: ensure SKUs are generated when configured for existing product imports</li>\r\n    <li>bug fix: resolve issues related to chaining import runs via WP-CLI</li>\r\n    <li>bug fix: retain existing sale prices if they\\\'re not set to update</li>\r\n    <li>bug fix: updates using the \\\'Link all variations\\\' option removed non-variation attributes</li>\r\n    <li>bug fix: correctly link author when using \\\'Link all variations\\\' option</li>\r\n    <li>bug fix: ensure products are properly converted to \\\'simple\\\' when configured</li>\r\n    <li>improvement: remove deprecated \\\'get_page_by_title\\\' function calls</li>\r\n    <li>improvement: allow activating HPOS (full HPOS support is not yet available)</li>\r\n</ul>\r\n<h4>3.3.4</h4><ul>\r\n    <li>new feature: Records missing from your import file can now be deleted even if WP All Import didn\\\'t create them. \\\'Existing Items\\\' imports have gained the ability to delete records missing from your import file as well.</li>\r\n    <li>bug fix: adjust prices error in PHP 8.1</li>\r\n    <li>improvement: match Order items to products regardless of their post status</li>\r\n    <li>improvement: ensure zero sale price isn\\\'t imported for products</li>\r\n</ul><h4>3.3.3</h4><ull>\r\n<li>bug fix: term counts updated incorrectly</li>\r\n</ul><h4>3.3.2</h4>\r\n<ul>\r\n<li>improvement: gracefully handle errors when recounting terms</li>\r\n<li>improvement: better autoloading of plugin files</li>\r\n</ul>\r\n<h4>3.3.1</h4><ul>\r\n<li>improvement: WPML compatibility</li>\r\n<li>bug fix: import variation enabled when variations presented as child XML elements didn\\\'t work properly</li>\r\n<li>bug fix: import variation status didn\\\'t work</li>\r\n</ul><h4>3.3.0</h4><ul>\r\n    <li>bug fix: import sale prices for link all variations don\\\'t work properly</li>\r\n    <li>bug fix: import order created date doesn\\\'t work properly</li>\r\n    <li>bug fix: importing orders triggers double emails in some cases</li>\r\n</ul><h4>3.2.9</h4><ul>\r\n    <li>improvement: add new action - wp_all_import_before_variable_product_import</li>\r\n    <li>bugfix: update only these attributes option doesn\\\'t work in some cases</li>\r\n    <li>bugfix: import attributes with < and > characters doesn\\\'t work properly</li>\r\n    <li>bugfix: duplicate email notifications are sent in some cases when updating orders</li>\r\n    <li>bugfix: unable to convert variable products to simple in some cases</li>\r\n    <li>bugfix: not possible to import \\\"0\\\" as an attribute value</li>\r\n</ul><h4>3.2.8</h4>\r\n<ul>\r\n 	<li>bugfix: only send order notifications when orders are created or status changes</li>\r\n 	<li>bugfix: \\\'any\\\' attributes for non-taxonomy attributes weren\\\'t imported correctly</li>\r\n 	<li>bugfix: variations not updating correctly when using \\\'link all variations\\\'</li>\r\n 	<li>bugfix: attributes with &lt; and &gt; characters weren\\\'t imported correctly</li>\r\n 	<li>bugfix: match non-Latin taxonomy attribute names with \\\'Update only these Attributes, leave the rest alone\\\' option</li>\r\n 	<li>bugfix: could not import attributes with value 0</li>\r\n 	<li>improvement: decrease frequency of plugin update checks</li>\r\n 	<li>improvement: added \\\'wp_all_import_before_variable_product_import\\\' action</li>\r\n</ul>\r\n<h4>3.2.7</h4>\r\n<ul>\r\n 	<li>bug fix: import stock status for link all variations option didn\\\'t work in some cases</li>\r\n 	<li>bug fix: import custom fields for variations didn\\\'t work in some cases</li>\r\n 	<li>bug fix: order status notifications was not sent during re-import process</li>\r\n 	<li>improvement: add new filter - wp_all_import_sync_parent_acf_with_first_variation</li>\r\n</ul>\r\n<h4>3.2.6</h4>\r\n<ul>\r\n 	<li>improvement: add option to import grouped product children</li>\r\n 	<li>improvement: add support for Additional Variation Images Gallery For WooCommerce</li>\r\n 	<li>bug fix: variations were create if parent product does not exist</li>\r\n 	<li>bug fix: downloadable permissions wan not imported correctly</li>\r\n 	<li>bug fix: images matching option when importing variation via option 5 were not respected</li>\r\n 	<li>bug fix:: set first in stock variation as the default selection didn\\\'t work in some cases</li>\r\n</ul>\r\n<h4>3.2.5</h4>\r\n<ul>\r\n 	<li>improvement: add option to import default attributes via xpath</li>\r\n 	<li>bug fix: email sent when order status changed to completed</li>\r\n 	<li>bug fix: re-running an import with \\\'Skip posts if their data in your file has not changed\\\' removes product variations in some cases</li>\r\n 	<li>bug fix: enabling \\\'Link all variations\\\' and \\\'Delete posts no longer present in your file\\\' results in variations being deleted</li>\r\n 	<li>bug fix: unable to add parent SKU when importing products as child element in XML</li>\r\n 	<li>bug fix: post author for first product variation not imported properly</li>\r\n 	<li>bug fix: product attributes for first product variation not imported properly</li>\r\n 	<li>bug fix: changing parent sku creates duplicate variations</li>\r\n 	<li>bug fix: order line items are imported even if the quantity is 0</li>\r\n 	<li>bug fix: WooCommerce lookup table not cleaned up when products deleted via cron</li>\r\n 	<li>bug fix: linked product matching attempted during the import process before all products are imported</li>\r\n 	<li>bug fix: featured image not updated when only \\\'Images\\\' is set to be updated in \\\'Choose which data to update\\\'</li>\r\n 	<li>bug fix: selective hashing missing for WooCommerce order imports</li>\r\n 	<li>bug fix: all product attributes updated when choosing only to update specific attributes for child XML variations</li>\r\n 	<li>bug fix: attributes containing \\\'#\\\' character not imported properly</li>\r\n 	<li>bug fix: \\\'Tax amount per unit\\\' field disappears in order import options</li>\r\n 	<li>bug fix: \\\'Enable reviews\\\' option not migrated</li>\r\n 	<li>bug fix: product_shipping_class taxonomy not updated</li>\r\n 	<li>bug fix: advanced options are not pre-selected in the 3rd (and all subsequent) attributes in \\\'Attributes\\\' tab</li>\r\n 	<li>bug fix: order author is updated when only updating order status</li>\r\n</ul>\r\n<h4>3.2.4</h4>\r\n<ul>\r\n 	<li>improvement: compatibility with WordPress 5.5</li>\r\n 	<li>bug fix: product attributes are not deleted when missing variations deleted</li>\r\n</ul>\r\n<h4>3.2.3</h4>\r\n<ul>\r\n 	<li>API: extend pmwi_tab_content action with new argument for import options</li>\r\n 	<li>bug fix: import order products meta data delimited by pipe symbol</li>\r\n</ul>\r\n<h4>3.2.2</h4>\r\n<ul>\r\n 	<li>improvement: import default product attributes for variations with value of \\\"Any\\\"</li>\r\n 	<li>bug fix: coupons improperly recalculated for manual order items</li>\r\n 	<li>bug fix: taxes for line items not imported</li>\r\n</ul>\r\n<h4>3.2.1</h4>\r\n<ul>\r\n 	<li>API: add wp_all_import_regenerate_lookup_tables filter to control lookup tables generation</li>\r\n 	<li>improvement: added ability to import meta data for existing order products</li>\r\n 	<li>bug fix: products with no variations do no import as simple products in some cases</li>\r\n 	<li>bug fix: coupons discount amount was imported incorrectly</li>\r\n 	<li>bug fix: import serialized meta for first variation was serialize two times</li>\r\n</ul>\r\n<h4>3.1.1</h4>\r\n<ul>\r\n 	<li>bug fix: unable to import variable products in WooCommerce 3.9</li>\r\n 	<li>bug fix: unable to import additional variation images</li>\r\n 	<li>bug fix: products with no variations do no import as simple products in some cases</li>\r\n 	<li>bug fix: attribute term from parent not removed if variation deleted</li>\r\n 	<li>bug fix: custom fields for first variation do not update when using manual record matching</li>\r\n</ul>\r\n<h4>3.1.0</h4>\r\n<ul>\r\n 	<li>API: add wp_all_import_is_post_to_update filter for import variable products from child XML elements</li>\r\n 	<li>bug fix: unable to block emails to customers when importing WooCommerce orders</li>\r\n 	<li>bug fix: product default attributes are not updated in some cases</li>\r\n 	<li>bug fix: unable to update only selected attributes for variations in some cases</li>\r\n 	<li>bug fix: do not import variation if variable attributes are not defined</li>\r\n 	<li>bug fix: conflict with woo-advanced-shipment-tracking plugin</li>\r\n 	<li>bug fix: recalculate taxes and coupons after order imported</li>\r\n</ul>\r\n<h4>3.0.9</h4>\r\n<ul>\r\n 	<li>improvement: import WooCommerce simple subscriptions</li>\r\n 	<li>improvement: import WooCommerce order item taxes</li>\r\n 	<li>bug fix: lookup table not updating after import</li>\r\n 	<li>bug fix: attributes not re-counting after import</li>\r\n 	<li>bug fix: product variation status not importing in some cases</li>\r\n</ul>\r\n<h4>3.0.8</h4>\r\n<ul>\r\n 	<li>improvement: add new filter wp_all_import_minimum_number_of_variations to import as simple product if it has less than the minimum number of variations</li>\r\n 	<li>bug fix: permissions reset for downloadable products in some cases</li>\r\n 	<li>bug fix: hidden variations created after making product simple</li>\r\n 	<li>bug fix: unable to update attributes with non UTF-8 characters</li>\r\n</ul>\r\n<h4>3.0.7</h4>\r\n<ul>\r\n 	<li>improvement: add validation to catalog visibility field</li>\r\n 	<li>improvement: match cross-sell products by title</li>\r\n 	<li>API: new filter wp_all_import_get_prices_from_first_variation</li>\r\n 	<li>API: new filter wp_all_import_variation_any_attribute</li>\r\n 	<li>API: new filter wp_all_import_product_attributes_delimiter</li>\r\n 	<li>bug fix: images not imported to first variation when \\\'WooCommerce Additional Variation Images\\\' plugin is installed</li>\r\n 	<li>bug fix: shipping class not imported properly in some cases</li>\r\n 	<li>bug fix: prices for variable products with 1 variation are not imported in some cases</li>\r\n 	<li>bug fix: product_visibility taxonomy for product variations not imported in some cases</li>\r\n</ul>\r\n<h4>3.0.6</h4>\r\n<ul>\r\n 	<li>improvement: added ability to sort attributes in import template</li>\r\n 	<li>improvement: added \\\'Low stock threshold\\\' option</li>\r\n 	<li>improvement: added validation for type 6 of import variable products</li>\r\n 	<li>improvement: added ability to import new variations to existing products</li>\r\n 	<li>bug fix: creating shipping class -1</li>\r\n 	<li>bug fix: import _price field when converting variable product into simple</li>\r\n 	<li>bug fix: import custom fields for variation created from parent row</li>\r\n 	<li>bug fix: deleting missing variation when link all variations option in use</li>\r\n 	<li>bug fix: import taxonomy attributes delimited with pipe symbol</li>\r\n 	<li>bug fix: make product simple &amp; link all variations</li>\r\n 	<li>bug fix: import ACF fields into first variation</li>\r\n 	<li>bug fix: import shipping class for variations imported via 2 &amp; 4 options</li>\r\n 	<li>bug fix: undating only sepcified attributes</li>\r\n 	<li>bug fix: updating stock qty when _stock field is not set to update</li>\r\n 	<li>bug fix: import downloadable variations with option 5</li>\r\n 	<li>bug fix: add only new attributes for variable products</li>\r\n 	<li>bug fix: matching parent product by title</li>\r\n</ul>\r\n<h4>3.0.5</h4>\r\n<ul>\r\n 	<li>bug fix: updating product sale dates only</li>\r\n 	<li>bug fix: prices preview</li>\r\n 	<li>bug fix: import custom product types</li>\r\n 	<li>bug fix: import product type 5 when attributes are not defined</li>\r\n 	<li>bug fix: re-count shipping terms after import completed</li>\r\n 	<li>bug fix: import stock status when making variable product simple</li>\r\n 	<li>bug fix: import non utf8 attributes for type 5 of import variable products</li>\r\n 	<li>bug fix: import pipe delimited attributes</li>\r\n 	<li>bug fix: automatically update stock status when _stock is updating</li>\r\n 	<li>bug fix: SKU auto-generation for 5th type of import variable products</li>\r\n 	<li>bug fix: added missing wp_all_import_variable_product_imported hook</li>\r\n</ul>\r\n<h4>3.0.4</h4>\r\n<ul>\r\n 	<li>bug fix: import shipping class</li>\r\n 	<li>bug fix: adjust empty prices</li>\r\n 	<li>bug fix: import attributes with non utf-8 characters</li>\r\n 	<li>bug fix: import stock quantity for variable products ( variations are children in XML file )</li>\r\n</ul>\r\n<h4>3.0.3</h4>\r\n<ul>\r\n 	<li>bug fix: PHP 5.4 compatibility - fixed \\\"can\\\'t use method return value in write context\\\" error</li>\r\n 	<li>bug fix: assing attributes marked as not in variation to parent product</li>\r\n</ul>\r\n<h4>3.0.2</h4>\r\n<ul>\r\n 	<li>bug fix: import attributes marked as not in variation</li>\r\n 	<li>bug fix: import attributes with reserved term names</li>\r\n</ul>\r\n<h4>3.0.1</h4>\r\n<ul>\r\n 	<li>bug fix: PHP 7.0 compatibility</li>\r\n 	<li>bug fix: sanitize variation attribute names</li>\r\n 	<li>bug fix: deleting SKUs during mport with manual records matching enabled</li>\r\n</ul>\r\n<h4>3.0.0</h4>\r\n<ul>\r\n 	<li>improvement: refactored codebase</li>\r\n 	<li>improvement: speed up import variable products</li>\r\n 	<li>improvement: sync variable product with variations</li>\r\n 	<li>bug fix: do not add featured image to the gallery</li>\r\n 	<li>bug fix: updating existing products by post ID</li>\r\n 	<li>bug fix: adjust prices for variable product imported via option 5</li>\r\n 	<li>bug fix: import order notes date</li>\r\n 	<li>bug fix: import order refunds date</li>\r\n 	<li>bug fix: import order payment method</li>\r\n 	<li>bug fix: generate order_key during import orders</li>\r\n</ul>\r\n<h4>2.4.1</h4>\r\n<ul>\r\n 	<li>bug fix: import attributes with special characters</li>\r\n 	<li>bug fix: recount product terms when updating post status</li>\r\n</ul>\r\n<h4>2.4.0</h4>\r\n<ul>\r\n 	<li>bug fix: stock status not importing properly when _backorders custom field is not set</li>\r\n 	<li>bug fix: product dimensions won\\\'t import if \\\'Virtual\\\' field is not set</li>\r\n 	<li>bug fix: compatibility fix WooCommerce 2.6.x</li>\r\n 	<li>bug fix: options conflict when creating simple products</li>\r\n 	<li>bug fix: remove deprecated function calls for PHP 7.2 compatibility</li>\r\n 	<li>bug fix: unable to import 0 as a value for attributes</li>\r\n 	<li>bug fix: mirror new WooCommerce core behavior that forces all uncategorized products to be assigned to the Uncategorized category</li>\r\n 	<li>bug fix: custom fields not imported to all product variations</li>\r\n 	<li>bug fix: stock status not set to outofstock when stock value set to 0 for some product variation imports</li>\r\n 	<li>bug fix: \\\'Stock Quantity\\\' field not visible for some product variation imports</li>\r\n 	<li>bug fix: unable to set \\\'Catalog visibility\\\' to \\\'Search results only\\\' for External/Affiliate products</li>\r\n 	<li>bug fix: unable to import additional variation images for some product variation imports</li>\r\n 	<li>bug fix: variable products not imported as simple products when only one variation is imported</li>\r\n</ul>\r\n<h4>2.3.9</h4>\r\n<ul>\r\n 	<li>bug fix: make product simple options when missing variation deleted</li>\r\n 	<li>bug fix: set missing records out of stock for link all variations</li>\r\n 	<li>bug fix: matching linked products</li>\r\n 	<li>bug fix: link all variations - set custom fields for missing records</li>\r\n 	<li>bug fix: setting order tax items via xpath</li>\r\n</ul>\r\n<h4>2.3.9</h4>\r\n<ul>\r\n 	<li>bug fix: make product simple options when missing variation deleted</li>\r\n 	<li>bug fix: set missing records out of stock for link all variations</li>\r\n 	<li>bug fix: matching linked products</li>\r\n 	<li>bug fix: link all variations - set custom fields for missing records</li>\r\n 	<li>bug fix: setting order tax items via xpath</li>\r\n</ul>\r\n<h4>2.3.8</h4>\r\n<ul>\r\n 	<li>improvement: added new filter wp_all_import_recount_terms_after_import</li>\r\n 	<li>improvement: Allow add variations as linked products</li>\r\n 	<li>bug fix: compatibility with woo commerce 2.6</li>\r\n 	<li>bug fix: error on activation without WP All Import</li>\r\n 	<li>bug fix: grouping variable products</li>\r\n 	<li>bug fix: Set parent product outofstock if all variations are outofstock</li>\r\n 	<li>bug fix: import stock status for 5th type of import variable products</li>\r\n 	<li>bug fix: do not update stock_status if _stock is not set to update</li>\r\n</ul>\r\n<h4>2.3.7</h4>\r\n<ul>\r\n 	<li>improvement: added \\\'WooCommerce Advanced Options\\\' to re-import section</li>\r\n 	<li>bug fix: variations title</li>\r\n 	<li>bug fix: import first variation image</li>\r\n 	<li>bug fix: send order emails after custom fields were imported</li>\r\n 	<li>bug fix: updating featured product status</li>\r\n 	<li>bug fix: WPML &amp; link all variations option conflict</li>\r\n 	<li>bug fix: add _price field for each variation</li>\r\n 	<li>bug fix: terms re-count</li>\r\n</ul>\r\n<h4>2.3.6</h4>\r\n<ul>\r\n 	<li>improvement: new option \\\'Parent SKU\\\' for variable products types 2 &amp; 4</li>\r\n 	<li>improvement: new action wp_all_import_make_product_simple</li>\r\n 	<li>bug fix: import _order_tax</li>\r\n 	<li>bug fix: detecting duplicate SKUs</li>\r\n 	<li>bug fix: import product visibility WC 3.0</li>\r\n 	<li>bug fix: stock threshold</li>\r\n 	<li>bug fix: title for first variation</li>\r\n 	<li>bug fix: import non latin attributes</li>\r\n</ul>\r\n<h4>2.3.5</h4>\r\n<ul>\r\n 	<li>improvement: add japanese translations</li>\r\n 	<li>improvement: compatibility with WC 3.0</li>\r\n 	<li>bug fix: import _tax_class</li>\r\n 	<li>bug fix: remove orphaned attributes relationships</li>\r\n 	<li>bug fix: import order taxes</li>\r\n</ul>\r\n<h4>2.3.4</h4>\r\n<ul>\r\n 	<li>bug fix: import reserved attributes</li>\r\n 	<li>bug fix: updating product gallery</li>\r\n 	<li>bug fix: WooCommerce reports when importing orders</li>\r\n</ul>\r\n<h4>2.3.3</h4>\r\n<ul>\r\n 	<li>improvement: compatibility PHP 7.x</li>\r\n 	<li>improvement: new filter \\\'wp_all_import_variation_taxonomies\\\' to control variation taxonomies</li>\r\n</ul>\r\n<h4>2.3.2</h4>\r\n<ul>\r\n 	<li>improvement: customer matching in order imports</li>\r\n 	<li>improvement: added ACF to re-import options</li>\r\n 	<li>bug fix: term recount for 5th type of import variable products</li>\r\n 	<li>bug fix: import shipping class for 5th type of variable products</li>\r\n 	<li>bug fix: re-creation variations ( link all variations option )</li>\r\n 	<li>bug fix: confirm import screen for order manual record matching</li>\r\n</ul>\r\n<h4>2.3.1</h4>\r\n<ul>\r\n 	<li>improvement: added custom fields section to import options when importing Orders</li>\r\n 	<li>bug fix: conflict between updating Product Type &amp; \\\'Create products with no variations as simple products\\\' option</li>\r\n 	<li>bug fix: \\\'create products with no variations as simple products\\\' option for variable product when variations presented as child XML nodes</li>\r\n</ul>\r\n<h4>2.3.0</h4>\r\n<ul>\r\n 	<li>added order imports</li>\r\n 	<li>fixed conflict between \\\'Delete posts that are no longer present in your file\\\' &amp; \\\'Link All Variations\\\' option</li>\r\n 	<li>fixed ucwords attributes names</li>\r\n 	<li>fixed import attributes which are not in variations</li>\r\n 	<li>fixed tooltips &amp; css for woo 2.6 compatibility</li>\r\n</ul>\r\n<h4>2.2.9</h4>\r\n<ul>\r\n 	<li>added \\\'Allow backorders?\\\' option for variations as child XML elements</li>\r\n 	<li>do not delete missing parent product if there is no parent in import file</li>\r\n 	<li>fixed updating stock qty even when manage stock update disabled</li>\r\n</ul>\r\n<h4>2.2.8</h4>\r\n<ul>\r\n 	<li>fixed compatibility with WPML ( import multilingual attributes )</li>\r\n 	<li>fixed import attributes with \\\"Link All Variations\\\" options enabled</li>\r\n 	<li>fixed importing custom fields into product variations</li>\r\n 	<li>added possibility to import up &amp; cross sells by product SKU, ID, Title</li>\r\n</ul>\r\n<h4>2.2.7</h4>\r\n<ul>\r\n 	<li>fixed showing simple products on frontend</li>\r\n 	<li>import variation images from local folder ( variations presentes as child XML nodes )</li>\r\n</ul>\r\n<h4>2.2.6</h4>\r\n<ul>\r\n 	<li>variable product manual matching speed up</li>\r\n 	<li>do not associate variations with categories &amp; tags</li>\r\n 	<li>added _product_version meta key &amp; updated .po files</li>\r\n</ul>\r\n<h4>2.2.5</h4>\r\n<ul>\r\n 	<li>fixed updating \\\'Variation Enabled\\\' field</li>\r\n 	<li>fixed import variation image</li>\r\n 	<li>fixed set first variation as default</li>\r\n 	<li>fixed update products data ( manual matching by _sku )</li>\r\n 	<li>fixed compatibility with WPAI free edition</li>\r\n 	<li>added \\\'product_type_selector\\\' filter</li>\r\n 	<li>added es_ES translation</li>\r\n</ul>\r\n<h4>2.2.3</h4>\r\n<ul>\r\n 	<li>fixed importing custom fields to variations</li>\r\n</ul>\r\n<h4>2.2.2</h4>\r\n<ul>\r\n 	<li>fixed \\\'Create products with no variations as simple products\\\' option</li>\r\n</ul>\r\n<h4>2.2.1</h4>\r\n<ul>\r\n 	<li>fixed conflict between options [update only these custom fields &amp; update only these attributes]</li>\r\n 	<li>fixed \\\'create new records\\\' for import variable products when manual record matching choosen</li>\r\n 	<li>fixed do not set variations to draft</li>\r\n 	<li>fixed import shipping class for external products</li>\r\n 	<li>added feature to dynamically set attribute options</li>\r\n 	<li>added new option \\\"Convert decimal separator to a period\\\"</li>\r\n</ul>\r\n<h4>2.2.0</h4>\r\n<ul>\r\n 	<li>fixed adjust prices for variation in case when variations presented as XML child elements</li>\r\n 	<li>fixed import _stock_status for parent products in cases: link all variation &amp; variations presented as child XML elements</li>\r\n 	<li>added Variation Description field</li>\r\n 	<li>added auto create shipping classes</li>\r\n 	<li>removed the option to use nested child elements for variable product when importing into Existing Items</li>\r\n 	<li>removed \\\'Virtual\\\' and \\\'Downloadable\\\' checkboxes</li>\r\n 	<li>hide \\\'Downloadable\\\' settings if product not downloadable</li>\r\n</ul>\r\n<h4>2.1.7</h4>\r\n<ul>\r\n 	<li>fixed set default attributes for \\\'link all variations\\\' option</li>\r\n 	<li>fixed import total_sales</li>\r\n 	<li>fixed changelog</li>\r\n</ul>\r\n<h4>2.1.6</h4>\r\n<ul>\r\n 	<li>fixed import total_sales</li>\r\n</ul>\r\n<h4>2.1.5</h4>\r\n<ul>\r\n 	<li>fixed import shipping class</li>\r\n</ul>\r\n<h4>2.1.3</h4>\r\n<ul>\r\n 	<li>fixed import stock status for negative qty</li>\r\n 	<li>fixed import shipping class when their slugs presented as numeric values</li>\r\n</ul>\r\n<h4>2.1.2</h4>\r\n<ul>\r\n 	<li>fixed import stock status for variable products</li>\r\n</ul>\r\n<h4>2.1.1</h4>\r\n<ul>\r\n 	<li>fixed import stock status</li>\r\n</ul>\r\n<h4>2.1.0</h4>\r\n<ul>\r\n 	<li>added new option \\\'save variation image to the gallery\\\'</li>\r\n 	<li>fixed import stock status for variable products</li>\r\n</ul>\r\n<h4>2.0.9</h4>\r\n<ul>\r\n 	<li>fixed stock status out of stock for external products</li>\r\n</ul>\r\n<h4>2.0.8</h4>\r\n<ul>\r\n 	<li>rename disallowed terms</li>\r\n 	<li>fixed auto detect stock status</li>\r\n 	<li>fixed conflict with woo commerce layered nav widget</li>\r\n 	<li>added new action wp_all_import_variable_product_imported</li>\r\n</ul>\r\n<h4>2.0.7</h4>\r\n<ul>\r\n 	<li>fixed importing default selections</li>\r\n 	<li>optimize import variable products</li>\r\n 	<li>improve security</li>\r\n</ul>\r\n<h4>2.0.6</h4>\r\n<ul>\r\n 	<li>fixed import featured image for first variation</li>\r\n 	<li>fixed manual matching for variations</li>\r\n 	<li>fixed css styles</li>\r\n</ul>\r\n<h4>2.0.5</h4>\r\n<ul>\r\n 	<li>fixed import shipping class via xpath</li>\r\n</ul>\r\n<h4>2.0.4</h4>\r\n<ul>\r\n 	<li>added manage stock options for variation level</li>\r\n</ul>\r\n<h4>2.0.3</h4>\r\n<ul>\r\n 	<li>fixed import variable downloadable products</li>\r\n</ul>\r\n<h4>2.0.2</h4>\r\n<ul>\r\n 	<li>fixed bug with updating data for variations</li>\r\n</ul>\r\n<h4>2.0.1</h4>\r\n<ul>\r\n 	<li>fixed import empty prices</li>\r\n 	<li>fixed update only these product attributes option</li>\r\n 	<li>fixed session bug on cron execution</li>\r\n 	<li>fixed rounding prices when \\\"Attempt to convert incorrectly formatted prices to WooCommerce format\\\" option is disabled</li>\r\n 	<li>changed main plugin file name</li>\r\n</ul>\r\n<h4>2.0.0</h4>\r\n<ul>\r\n 	<li>New WooCommerce add-on for WP All Import 4.0. Don\\\'t upgrade without installing WP All Import 4.0 first. Learn more about WP All Import 4.0 at http://www.wpallimport.com/2014/11/introducing-wp-all-import-4-0/</li>\r\n</ul>\r\n<h4>1.3.5</h4>\r\n<ul>\r\n 	<li>fixed set shipping class to empty value</li>\r\n 	<li>fixed option \\\"create product as simple when no variations\\\"</li>\r\n 	<li>fixed tax classes drop down</li>\r\n 	<li>fixed import attributes</li>\r\n 	<li>added new option \\\"set _stock value for parent product</li>\r\n</ul>\r\n<h4>1.3.4</h4>\r\n<ul>\r\n 	<li>fixed saving shipping class option</li>\r\n 	<li>fixed import product attributes</li>\r\n 	<li>fixed import variable products: updating custom fields in case when fourth variable import type is choosen</li>\r\n 	<li>added new option \\\"combine SKU from variation and parent product {ParentSKU}-{Variation SKU}\\\" for variable products in case when variations presented as child elements</li>\r\n</ul>\r\n<h4>1.3.3</h4>\r\n<ul>\r\n 	<li>fixed saving attribute values with specialcharacters like ö, ú, ...</li>\r\n 	<li>fixed woocommerce currency</li>\r\n 	<li>fixed updating shipping class</li>\r\n 	<li>fixed updating tax class</li>\r\n 	<li>fixed wp_generate_attachment_metadata() error for variations images</li>\r\n 	<li>fixed session warnings</li>\r\n 	<li>replaced deprecated function …clear_product_transients() to wc_delete_product_transients()</li>\r\n 	<li>fixed: load import options</li>\r\n</ul>\r\n<h4>1.3.2</h4>\r\n<ul>\r\n 	<li>fixed: import attributes names with xpath</li>\r\n 	<li>fixed: import attributes with encoded symbols</li>\r\n 	<li>fixed: import up-sells &amp; cross-sells products</li>\r\n 	<li>fixed: updating stock Qty for variations</li>\r\n 	<li>fixed: use parent xpath feature for import variable products (case #5</li>\r\n</ul>\r\n<h4>1.3.1</h4>\r\n<ul>\r\n 	<li>updated: matching grouping product</li>\r\n 	<li>added: option \\\"is update product type\\\"</li>\r\n 	<li>fixed: variations tree</li>\r\n 	<li>fixed: import zero value in stock qty for variation</li>\r\n</ul>\r\n<h4>1.3.0</h4>\r\n<ul>\r\n 	<li>fixed: automatic fixing of improperly formatted prices</li>\r\n 	<li>fixed: manual record matching for variations</li>\r\n 	<li>fixed: php notices</li>\r\n</ul>\r\n<h4>1.2.9</h4>\r\n<ul>\r\n 	<li>fixed import zero value for stock quantity for variations</li>\r\n 	<li>fixed import attributes for variable products (case 5)</li>\r\n 	<li>added \\\"Disable automatic fixing of improperly formatted prices.\\\" option</li>\r\n 	<li>fixed import empty sale price</li>\r\n 	<li>fixed setup stock status with xpath</li>\r\n 	<li>fixed import shipping class for variations</li>\r\n</ul>\r\n<h4>1.2.8</h4>\r\n<ul>\r\n 	<li>added: download type option</li>\r\n 	<li>added: file names option</li>\r\n 	<li>fixed: import attributes</li>\r\n 	<li>fixed: attributes duplication</li>\r\n 	<li>fixed: grouping products</li>\r\n</ul>\r\n<h4>1.2.7</h4>\r\n<ul>\r\n 	<li>fixed: price conversation</li>\r\n</ul>\r\n<h4>1.2.5</h4>\r\n<ul>\r\n 	<li>added: xpath case for grouping products</li>\r\n 	<li>updated: filter prices</li>\r\n 	<li>updated: css for compatibility with wocommerce 2.1</li>\r\n</ul>\";}s:7:\"banners\";a:2:{s:4:\"high\";s:76:\"http://ps.w.org/woocommerce-xml-csv-product-import/assets/banner-772x250.png\";s:3:\"low\";s:0:\"\";}s:18:\"custom_update_note\";s:719:\"<br/><br/>This update includes an improved UI for WooCommerce order imports.<br/><br/>While it is compatible with existing order imports, some import configurations will result in different behavior. <b>We highly recommend that you test existing WooCommerce order imports before running them in production to ensure everything is imported as expected.</b><br/><br/>We are available at <a target=\"_blank\" href=\"https://www.wpallimport.com/support/\">https://www.wpallimport.com/support/</a> if you encounter any issues. You can also download the previous version of the WooCommerce Import Add-On at <a target=\"_blank\" href=\"https://www.wpallimport.com/portal/downloads/\">https://www.wpallimport.com/portal/downloads/</a>.\";s:19:\"update_note_version\";s:5:\"3.3.7\";s:5:\"icons\";a:0:{}s:3:\"msg\";s:8:\"Success.\";s:7:\"package\";s:77:\"https://update.wpallimport.com/serve_package?package_id=2707184&version=4.0.0\";s:13:\"download_link\";s:77:\"https://update.wpallimport.com/serve_package?package_id=2707184&version=4.0.0\";s:6:\"tested\";s:5:\"6.4.2\";s:6:\"author\";s:6:\"Soflyy\";s:8:\"requires\";s:3:\"5.0\";s:12:\"requires_php\";s:3:\"7.4\";}','no'),(303160,'wpai-woocommerce-add-on_timeout_080fdc82a3a678dab2d4f10c27ddeb79','1705865406','yes'),(303163,'_transient_timeout_villatheme_notices','1705948208','no'),(303164,'_transient_villatheme_notices','a:7:{s:7:\"heading\";s:31:\"New Year, New Deals, New Saving\";s:11:\"description\";s:108:\"Enjoy 25% Off on Bestselling WooCommerce Multi Currency and Email Template Customization! until January 31st\";s:4:\"link\";s:30:\"https://1.envato.market/dav1XQ\";s:2:\"id\";s:7:\"jan2024\";s:5:\"start\";s:0:\"\";s:3:\"end\";s:10:\"2024-01-31\";s:4:\"loop\";s:3:\"2,4\";}','no'),(303165,'_transient_timeout_villatheme_called','1705948208','no'),(303166,'_transient_villatheme_called','1','no'),(303167,'_site_transient_timeout_mainwp_update_plugins_cached','1705948209','no'),(303168,'_site_transient_mainwp_update_plugins_cached','a:3:{s:53:\"webp-converter-for-media/webp-converter-for-media.php\";O:8:\"stdClass\":18:{s:20:\"WC requires at least\";s:0:\"\";s:15:\"WC tested up to\";s:0:\"\";s:3:\"Woo\";s:0:\"\";s:4:\"Name\";s:19:\"Converter for Media\";s:9:\"PluginURI\";s:0:\"\";s:7:\"Version\";s:6:\"5.11.5\";s:11:\"Description\";s:171:\"Speed up your website by using our WebP & AVIF Converter (formerly WebP Converter for Media). Serve WebP and AVIF images instead of standard formats JPEG, PNG and GIF now!\";s:6:\"Author\";s:12:\"matt plugins\";s:9:\"AuthorURI\";s:56:\"https://url.mattplugins.com/converter-plugin-author-link\";s:10:\"TextDomain\";s:24:\"webp-converter-for-media\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:1;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:9:\"UpdateURI\";s:0:\"\";s:5:\"Title\";s:19:\"Converter for Media\";s:10:\"AuthorName\";s:12:\"matt plugins\";s:6:\"update\";O:8:\"stdClass\":12:{s:2:\"id\";s:38:\"w.org/plugins/webp-converter-for-media\";s:4:\"slug\";s:24:\"webp-converter-for-media\";s:6:\"plugin\";s:53:\"webp-converter-for-media/webp-converter-for-media.php\";s:11:\"new_version\";s:6:\"5.12.0\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/webp-converter-for-media/\";s:7:\"package\";s:74:\"https://downloads.wordpress.org/plugin/webp-converter-for-media.5.12.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/webp-converter-for-media/assets/icon-256x256.png?rev=2636288\";s:2:\"1x\";s:77:\"https://ps.w.org/webp-converter-for-media/assets/icon-128x128.png?rev=2636288\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:80:\"https://ps.w.org/webp-converter-for-media/assets/banner-1544x500.png?rev=2757184\";s:2:\"1x\";s:79:\"https://ps.w.org/webp-converter-for-media/assets/banner-772x250.png?rev=2757184\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";s:6:\"tested\";s:5:\"6.4.2\";s:12:\"requires_php\";s:3:\"7.0\";}}s:49:\"media-file-renamer-pro/media-file-renamer-pro.php\";O:8:\"stdClass\":18:{s:20:\"WC requires at least\";s:0:\"\";s:15:\"WC tested up to\";s:0:\"\";s:3:\"Woo\";s:0:\"\";s:4:\"Name\";s:57:\"Media File Renamer: Rename Files (Manual, Auto, AI) (Pro)\";s:9:\"PluginURI\";s:20:\"https://meowapps.com\";s:7:\"Version\";s:5:\"5.7.6\";s:11:\"Description\";s:188:\"Rename and move files directly from the dashboard, either individually or in bulk. You can even set it to automatically rename your files for you! Nicer SEO, tidier WordPress, better life.\";s:6:\"Author\";s:10:\"Jordy Meow\";s:9:\"AuthorURI\";s:20:\"https://meowapps.com\";s:10:\"TextDomain\";s:18:\"media-file-renamer\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:9:\"UpdateURI\";s:0:\"\";s:5:\"Title\";s:57:\"Media File Renamer: Rename Files (Manual, Auto, AI) (Pro)\";s:10:\"AuthorName\";s:10:\"Jordy Meow\";s:6:\"update\";O:8:\"stdClass\":22:{s:11:\"new_version\";s:5:\"5.8.1\";s:14:\"stable_version\";s:5:\"5.8.1\";s:4:\"name\";s:22:\"Media File Renamer Pro\";s:4:\"slug\";s:22:\"media-file-renamer-pro\";s:3:\"url\";s:65:\"https://meowapps.com/products/media-file-renamer-pro/?changelog=1\";s:12:\"last_updated\";s:19:\"2024-01-20 07:55:08\";s:8:\"homepage\";s:20:\"https://meowapps.com\";s:7:\"package\";s:0:\"\";s:13:\"download_link\";s:0:\"\";s:8:\"sections\";O:8:\"stdClass\":2:{s:11:\"description\";s:3920:\"<p>Rename and move files directly from the dashboard, either individually or in bulk. You can even set it to automatically rename your files for you! Nicer SEO, tidier WordPress, better life. For more information, please visit the official website: <a href=\"https://meowapps.com/media-file-renamer/\">Media File Renamer</a>.</p>\n<h3>HOW IT WORKS</h3>By default, it automatically renames your media filenames based on their titles every time you modify them. But you can also manually rename files and update references to them throughout your site, including posts, pages, custom post types, and metadata. The best way to use the plugin is through the sleek and dynamic Renamer Dashboard, which makes it easy to work efficiently and effectively. \n\n[youtube https://youtu.be/XPbKE8pq0i0]\n\nPlease have a look at the [tutorial](https://meowapps.com/media-file-renamer/tutorial/).<h3>COMPATIBILITY</h3>Media File Renamer works seamlessly with many features of WordPress and other plugins, including Retina files, WebP, rescaled images (since WP 5.3), PDF Thumbnails, UTF8 files, optimized images, and more. It can handle a wide variety of encoding cases, making it a reliable tool for organizing your media library.\n\nThere are a few page builders, like Avia Layout Builder, that currently do not allow Media File Renamer to rename images used in their posts due to encryption. However, we are actively seeking out solutions to this issue and are committed to providing users with the ability to rename these images if they desire.<h3>PRO VERSION</h3>In the [Pro Version](https://meowapps.com/media-file-renamer/), you\'ll find many exciting features.\n\n- Automatically rename files based on attached posts, products, or ALT texts\n- AI Suggestions (via AI Engine and OpenAI)\n- Anonymize your files with anonymous filenames\n- Move files to different directories in bulk\n- Sync metadata like ALT texts and titles\n- Number your files to allow for similar filenames\n- Attach media entries to the posts or pages they\'re used in\n- Use the Force Rename feature to re-link broken media entries to your files\n- Advanced transliteration handles accents, emoticons, umlauts, cyrillic, and more<h3>IMPORTANT</h3>Renaming or moving files can be a risky process, which is why it\'s important to take precautions. Before renaming your files in bulk, try renaming them one by one to make sure the references in your pages are updated properly. It\'s worth noting that some plugins may use unconventional methods to encode file usage, which could cause issues with the renaming process. To ensure the safety of your files and database, **it is crucial to make a backup before using Media File Renamer** to its full extent. Protect your valuable media by taking these precautionary measures.\n\nIf you notice any issues with your website after renaming your media files, **try clearing your cache**. Cached HTML can often hold onto old references, so this simple step can often resolve any issues. If you\'re still experiencing problems, you can use the Undo feature to roll back to the previous filenames. If you\'re having trouble updating references or have any other questions, please check out the support threads on our website. We\'re always working to cover more use cases and improve the plugin. You will find more here: [Questions &amp; Issues](https://meowapps.com/media-file-renamer/issues/).<h3>FOR DEVELOPERS</h3>The plugin can be tweaked in many ways, there are many actions and filters available. Through them, for example, you can customize the automatic renaming to your liking. There is even a little API that you can call. More about this [here](https://meowapps.com/media-file-renamer/issues/).<h3>A SIMPLER PLUGIN</h3>If you only need an simple field in order to modify the filename, you can also try [Phoenix Media Rename](https://wordpress.org/plugins/phoenix-media-rename). It\'s simpler, and just does that. Yes, we are friends!\";s:9:\"changelog\";s:12990:\"<h4> 5.8.1 (2024/01/20) </h4>\n<ul>\n<li>Fix: Async upload with AI Vision.</li>\n<li>Add: Import/Export Settings.</li>\n<li>&#x2b50;&#xfe0f; Don\'t hesitate to join our <a href=\"https://discord.gg/bHDGh38\">Discord Channel</a>.</li>\n<li>&#x1f334; Please share some love <a href=\"https://wordpress.org/support/plugin/media-file-renamer/reviews/?rate=5#new-post\">here</a>. Thank you!</li>\n</ul>\n<h4> 5.8.0 (2024/01/01) </h4>\n<ul>\n<li>Fix: Issue with mfrh_media_renamed.</li>\n<li>Update: Enhanced UI with selection options for upload and improved AI prompts.</li>\n<li>Fix: Resolved issues in \'Rename All\' AI functionality and fixed Sync selection.</li>\n<li>Optimization: Improved history features with new filters, styling changes, and history limit adjustments.</li>\n<li>Add: New renaming methods with NekoTabs, history tracking, and AI-enhanced renaming capabilities.</li>\n<li>Update: Streamlined settings with revised tabs for Manual, Auto, and AI, and better visual indicators for busy fields.</li>\n<li>Add: Additional media library field options and a new &quot;Cancel&quot; feature for manual renaming.</li>\n<li>&#x1f4ab; Happy New Year!</li>\n</ul>\n<h4> 5.7.8 (2023/12/25) </h4>\n<ul>\n<li>Update: Tools related to AI got better.</li>\n<li>Fix: Little fixes and enhancements for some users.</li>\n<li>&#x1f384; Merry Christmas!</li>\n</ul>\n<h4> 5.7.7 (2023/12/05) </h4>\n<ul>\n<li>Update: Enhanced UI, clarified options, unified things.</li>\n<li>Add: Bulk Rename using AI Vision.</li>\n<li>Add: AI Vision on Upload.</li>\n<li>Add: Not Renamed filter in Dashboard.</li>\n</ul>\n<h4> 5.7.4 (2023/11/25) </h4>\n<ul>\n<li>Update: Removed &quot;mfrh_sync_media_meta&quot; filter and added &quot;mfrh_rewrite_title&quot;. Enhanced code quality with cleaning and added more logs for sync functions.</li>\n<li>Add: Introduced Table filters (for media with no alt text, no description, no title) and improved display for empty metadata.</li>\n<li>Add: Added &quot;mfrh_clean_upload&quot; filter to customize the clean upload value.</li>\n<li>Fix: Removed &quot;disabled&quot; status on NekoModal to prevent log spamming.</li>\n<li>Update: Removed busyOverlay and upgraded the description field to a textarea for better input handling.</li>\n<li>Fix: Resolved an undefined function call issue in the API.</li>\n</ul>\n<h4> 5.7.3 (2023/11/20) </h4>\n<ul>\n<li>Add: Sync only for selected items and mfrh_sync_media_meta filter for post modification during syncing.</li>\n<li>Update: New modal for thumbnails with an &quot;open in new tab&quot; button, and enhanced auto-attach warning message.</li>\n<li>Fix: Adjusted the default behavior of sync functionality.</li>\n</ul>\n<h4> 5.7.2 (2023/11/17) </h4>\n<ul>\n<li>Add: AI suggestion now utilizes Vision for enhanced accuracy.</li>\n<li>Add: New &quot;Clean Uploads&quot; feature for efficient media management.</li>\n<li>Add: Magic Wand for Metadata Fields.</li>\n<li>Update: &quot;Auto-Attach Media&quot; feature now allows selection of target media entries.</li>\n<li>Update: Created Meow_MFRH_Engine class, consolidating renaming-related code.</li>\n<li>Update: Conducted various non-code related updates for improved performance.</li>\n<li>Fix: Resolved extension-related errors in thumbnails for better reliability.</li>\n</ul>\n<h4> 5.7.1 (2023/10/19) </h4>\n<ul>\n<li>Fix: The action_update_postmeta filter was not working properly.</li>\n<li>Fix: Missing buttons in the modals.</li>\n</ul>\n<h4> 5.7.0 (2023/10/10) </h4>\n<ul>\n<li>Update: For better confidentiality, the logs file is now randomly generated.</li>\n<li>Fix: Support of Windows servers.</li>\n</ul>\n<h4> 5.6.9 (2023/09/21) </h4>\n<ul>\n<li>Update: The Auto-Attach feature is a bit more robust when using Media Cleaner data.</li>\n</ul>\n<h4> 5.6.8 (2023/09/14) </h4>\n<ul>\n<li>Add: Auto-Attach feature now use the data from <a href=\"https://wordpress.org/plugins/media-cleaner/\">Media Cleaner</a> (if available), which is extremely accurate!</li>\n<li>Fix: Random issues related to metadata not existing.</li>\n<li>Fix: Optimize the way the move feature works.</li>\n<li>Fix: Move didn\'t handle the WebP and AVIF files properly.</li>\n<li>Fix: Was not possible to completely delete the filename to type it from scratch.</li>\n<li>Fix: When uninstalled, all the data used by the plugin is now removed properly.</li>\n</ul>\n<h4> 5.6.6 (2023/07/21) </h4>\n<ul>\n<li>Fix: Avoid warnings when the metadata isn\'t found.</li>\n<li>Fix: Better handling of metadata synchronization.</li>\n<li>Update: Enhanced the UI of the Renamer Field.</li>\n</ul>\n<h4> 5.6.5 (2023/06/21) </h4>\n<ul>\n<li>Fix: Issue when automatic renaming was used with the related auto-lock.</li>\n<li>Update: Latest version of the UI.</li>\n</ul>\n<h4> 5.6.4 (2023/06/02) </h4>\n<ul>\n<li>Fix: Removed a few warnings.</li>\n<li>Fix: The paging issue.</li>\n</ul>\n<h4> 5.6.3 (2023/05/30) </h4>\n<ul>\n<li>Update: Trying to improve the UI based on your feedback. It might not please everyone, but I am trying to make it better. Please let me know if you have any idea.</li>\n<li>Fix: There were a few warning issues.</li>\n<li>Fix: There were some inconsistencies in the UI.</li>\n</ul>\n<h4> 5.6.2 (2023/05/13) </h4>\n<ul>\n<li>Add: Some issues with spacing in some buttons.</li>\n<li>&#x1f3b5; I am struggling a bit to make the Dashboard UI nicer, if you have any idea, don\'t hesitate to let me know via the <a href=\"https://wordpress.org/support/plugin/media-file-renamer/\">Support Forums</a>.</li>\n</ul>\n<h4> 5.6.1 (2023/05/06) </h4>\n<ul>\n<li>Add: We can now edit the ALT Text.</li>\n</ul>\n<h4> 5.6.0 (2023/05/02) </h4>\n<ul>\n<li>Add: \'Attached To\' column is now hideable.</li>\n<li>Add: \'ALT Text\' data now available if enabled in the options.</li>\n<li>Update: Minimized the size of the bundle.</li>\n</ul>\n<h4> 5.5.9 (2023/03/18) </h4>\n<ul>\n<li>Fix: Various fixes in the UI.</li>\n<li>Update: Latest UI framework.</li>\n</ul>\n<h4> 5.5.8 (2023/03/13) </h4>\n<ul>\n<li>Add: AI filename suggestions.</li>\n<li>Update: Added Unlocked instead of Pending (which was slowing-down the process and was not really useful). Let me know if you preferred it the other way.</li>\n</ul>\n<h4> 5.5.7 (2023/02/09) </h4>\n<ul>\n<li>Add: New option to disable the Dashboard.</li>\n<li>Note: A bit late on the support, it\'s unusual, but very busy these days. I am also trying to gather the feedback/issues to fix them all at once in a good way. Thank you for your patience!</li>\n</ul>\n<h4> 5.5.5 (2023/02/01) </h4>\n<ul>\n<li>Update: Clean the dashboard a bit, depending on the options.</li>\n<li>Fix: Issue in the Media Library with the Renamer field.</li>\n<li>Fix: The Edit Title modal wasn\'t working on ENTER.</li>\n</ul>\n<h4> 5.5.4 (2023/01/29) </h4>\n<ul>\n<li>Fix: Titting enter in the Edit Title modal wasn\'t update with the new title.</li>\n</ul>\n<h4> 5.5.3 (2023/01/27) </h4>\n<ul>\n<li>Update: Better move features and cleaner UI.</li>\n</ul>\n<h4> 5.5.2 (2023/01/06) </h4>\n<ul>\n<li>Update: Slowly (but surely) separating the Rename mode from the Move mode. I will make the UI better and more adapted to the chosen mode. You will find the switch in the Renamer Dashboard.</li>\n</ul>\n<h4> 5.5.1 (2022/12/24) </h4>\n<ul>\n<li>Update: Enhanced the hooks (filters).</li>\n</ul>\n<h4> 5.5.0 (2022/11/12) </h4>\n<ul>\n<li>Fix: Enhanced the behavior of the UI.\n= 5.4.9 (2022/10/30) =</li>\n<li>Fix: The link to the Dashboard was broken.</li>\n</ul>\n<h4> 5.4.8 (2022/10/24) </h4>\n<ul>\n<li>Fix: There was an issue with WP-CLI in the latest versions.</li>\n</ul>\n<h4> 5.4.7 (2022/10/12) </h4>\n<ul>\n<li>Add: Consider WebP as an &quot;Image&quot; (which it is &#x1f60f;).</li>\n<li>Fix: The \'Featured Only\' and \'Images Only\' were not working perfectly.</li>\n<li>Update: Optimized the way options are updated and retrieved.</li>\n<li>Update: Some refactoring to simplify the code.</li>\n</ul>\n<h4> 5.4.5 (2022/09/27) </h4>\n<ul>\n<li>Add: Auto-retry on failure, up to 10 times.</li>\n<li>Fix: Typos.</li>\n</ul>\n<h4> 5.4.3 (2022/08/11) </h4>\n<ul>\n<li>Add: Handle errors gracefully (with retry, skip or cancel).</li>\n</ul>\n<h4> 5.4.1 (2022/08/03) </h4>\n<ul>\n<li>Fix: Tiny UI bug in Safari.</li>\n</ul>\n<h4> 5.4.0 (2022/07/05) </h4>\n<ul>\n<li>Add: Support for Elementor (update the metadata and CSS).</li>\n<li>Update: Use the default WordPress font (to avoid loading data from Google Fonts) and a few UI enhancements.</li>\n</ul>\n<h4> 5.3.9 (2022/06/16) </h4>\n<ul>\n<li>Fix: The WebP files weren\'t not renamed perfectly.</li>\n</ul>\n<h4> 5.3.8 (2022/03/29) </h4>\n<ul>\n<li>Fix: Support for WebP.</li>\n<li>Fix: Anonymize (MD5) on upload now works fine.</li>\n<li>Fix: Decode HTML entities (in the meta, title) when renaming is based on it.</li>\n<li>Update: I am trying to enhance the UI (the rename field and the actions) depending on the size of the browser. I\'ll try to make this better and better, but don\'t hesitate to give me some feedback.</li>\n</ul>\n<h4> 5.3.6 (2022/02/01) </h4>\n<ul>\n<li>Update: Fresh build and support for WordPress 5.9.</li>\n</ul>\n<h4> 5.3.5 (2021/11/10) </h4>\n<ul>\n<li>Fix: Renaming of WebP uploaded directly to WordPress.</li>\n<li>Add: The possibility of locking files automatically after a manual rename (which was always the case previously), and/or after a automatic rename (that was not possible previously). With this last option, users having trouble to &quot;Rename All&quot; will be given the choice to do it on any kind of server. You will find those options in the Advanced tab.</li>\n<li>Add: &quot;Delay&quot; option, to give a break and a reset to the server between asynchronous requests! Default to 100ms. That will avoid the server to time out, or to slow down on purpose.</li>\n</ul>\n<h4> 5.3.3 (2021/11/09) </h4>\n<ul>\n<li>Fix: Avoid renaming when the URLs (before/after) are empty.</li>\n<li>Add: New option to update URLs in the excerpts (no need to use it for most users).</li>\n<li>Update: Avoid double call to the mfrh_url_renamed (seemed to be completely useless).</li>\n<li>Update: Added a new \'size\' argument to the mfrh_url_renamed action.</li>\n<li>Update: Optimized queries.</li>\n<li>Add: We can change the page (in the dashboard) by typing it.</li>\n</ul>\n<h4> 5.3.2 (2021/10/16) </h4>\n<ul>\n<li>Add: AVIF support.</li>\n<li>Fix: Avoid the double renaming when different registered sizes actually use the same file.</li>\n</ul>\n<h4> 5.3.0 (2021/10/09) </h4>\n<ul>\n<li>Add: Better Force Rename.</li>\n<li>Add: Featured Images Only option.</li>\n<li>Fix: Auto-attach feature wasn\'t working properly with Featured Image when attached to Product.</li>\n</ul>\n<h4> 5.2.9 (2021/09/23) </h4>\n<ul>\n<li>Add: Manual Sanitize Option. If the option is checked, the rename feature uses the new_filename function. If not, use the filename user input as it is.</li>\n</ul>\n<h4> 5.2.8 (2021/09/07) </h4>\n<ul>\n<li>Add: Option to clean the plugin data on uninstall.</li>\n<li>Add: Manual Rename now goes through the cleaning flow to make sure everything is clean and nice.</li>\n</ul>\n<h4> 5.2.7 (2021/09/03) </h4>\n<ul>\n<li>Fix: Security update: access controls to the REST API and the options enforced.</li>\n<li>Updated: Dependencies update.</li>\n</ul>\n<h4> 5.2.5 (2021/08/25) </h4>\n<ul>\n<li>Fix: Search feature was not always working well.</li>\n<li>Update: Better technical architecture.</li>\n</ul>\n<h4> 5.2.4 (2021/06/13) </h4>\n<ul>\n<li>Add: Remember the number of entries per page (dashboard).</li>\n<li>Fix: Limit the length of the manual filename.</li>\n</ul>\n<h4> 5.2.3 (2021/05/29) </h4>\n<ul>\n<li>Fix: The \'Move\' feature now also works with the original image (in case it has been scaled by WP).</li>\n</ul>\n<h4> 5.2.2 (2021/05/18) </h4>\n<ul>\n<li>Fix: Better Windows support.</li>\n</ul>\n<h4> 5.2.0 (2021/05/15) </h4>\n<ul>\n<li>Add: Move button (this was mainly added for tests, so it\'s a beta feature, it will be perfected over time).</li>\n<li>Add: Images Only option.</li>\n<li>Fix: Vulnerability report, a standard user access could potentially modify a media title with custom requests.</li>\n</ul>\n<h4> 5.1.9 (2021/04/09) </h4>\n<ul>\n<li>Fix: The Synchronize Alt option wasn\'t working logically.</li>\n</ul>\n<h4> 5.1.8 (2021/03/04) </h4>\n<ul>\n<li>Add: Search.</li>\n<li>Add: Quick rename the title from the dashboard.</li>\n</ul>\n<h4> 5.1.7 (2021/02/21) </h4>\n<ul>\n<li>Fix: The Synchronize Media Title option wasn\'t working logically.</li>\n</ul>\n<h4> 5.1.6 (2021/02/12) </h4>\n<ul>\n<li>Fix: References for moved files were not updated.</li>\n<li>Add: Sanitize filename after they have been through the mfrh_new_filename filter.</li>\n</ul>\n<h4> 5.1.3 (2021/02/06)  </h4>\n<ul>\n<li>Add: Greek support.</li>\n<li>Fix: Better sensitive file check.</li>\n<li>Fix: Manual rename with WP CLI.</li>\n</ul>\n<h4> 5.1.2 (2021/01/10) </h4>\n<ul>\n<li>Add: Auto attach feature.</li>\n<li>Add: Added Locked in the filters.</li>\n<li>Update: Icons position.</li>\n</ul>\n<h4> 5.1.1 (2021/01/05) </h4>\n<ul>\n<li>Fix: Issue with roles overriding and WP-CLI.</li>\n<li>Fix: Issue with REST in the Common Dashboard.</li>\n</ul>\n<h4> 5.1.0 (2021/01/01) </h4>\n<ul>\n<li>Add: Support overriding roles.</li>\n<li>Fix: The layout of the dashboard was broken by WPBakery.</li>\n</ul>\";}s:7:\"banners\";O:8:\"stdClass\":2:{s:4:\"high\";s:82:\"https://meowapps.com/wp-content/uploads/edd/media-file-renamer-banner-1544x500.png\";s:3:\"low\";s:81:\"https://meowapps.com/wp-content/uploads/edd/media-file-renamer-banner-772x250.png\";}s:5:\"icons\";a:2:{s:2:\"1x\";s:49:\"https://meowapps.com/wp-content/uploads/Brush.png\";s:2:\"2x\";s:49:\"https://meowapps.com/wp-content/uploads/Brush.png\";}s:3:\"msg\";s:33:\"No license key has been provided.\";s:12:\"contributors\";O:8:\"stdClass\":1:{s:10:\"TigrouMeow\";O:8:\"stdClass\":3:{s:12:\"display_name\";s:10:\"TigrouMeow\";s:7:\"profile\";s:35:\"//profiles.wordpress.org/TigrouMeow\";s:6:\"avatar\";s:55:\"https://wordpress.org/grav-redirect.php?user=TigrouMeow\";}}s:10:\"stable_tag\";s:5:\"5.8.1\";s:11:\"donate_link\";s:30:\"https://meowapps.com/donation/\";s:6:\"tested\";s:3:\"6.4\";s:5:\"added\";s:10:\"2022-09-01\";s:11:\"description\";a:1:{i:0;s:3920:\"<p>Rename and move files directly from the dashboard, either individually or in bulk. You can even set it to automatically rename your files for you! Nicer SEO, tidier WordPress, better life. For more information, please visit the official website: <a href=\"https://meowapps.com/media-file-renamer/\">Media File Renamer</a>.</p>\n<h3>HOW IT WORKS</h3>By default, it automatically renames your media filenames based on their titles every time you modify them. But you can also manually rename files and update references to them throughout your site, including posts, pages, custom post types, and metadata. The best way to use the plugin is through the sleek and dynamic Renamer Dashboard, which makes it easy to work efficiently and effectively. \n\n[youtube https://youtu.be/XPbKE8pq0i0]\n\nPlease have a look at the [tutorial](https://meowapps.com/media-file-renamer/tutorial/).<h3>COMPATIBILITY</h3>Media File Renamer works seamlessly with many features of WordPress and other plugins, including Retina files, WebP, rescaled images (since WP 5.3), PDF Thumbnails, UTF8 files, optimized images, and more. It can handle a wide variety of encoding cases, making it a reliable tool for organizing your media library.\n\nThere are a few page builders, like Avia Layout Builder, that currently do not allow Media File Renamer to rename images used in their posts due to encryption. However, we are actively seeking out solutions to this issue and are committed to providing users with the ability to rename these images if they desire.<h3>PRO VERSION</h3>In the [Pro Version](https://meowapps.com/media-file-renamer/), you\'ll find many exciting features.\n\n- Automatically rename files based on attached posts, products, or ALT texts\n- AI Suggestions (via AI Engine and OpenAI)\n- Anonymize your files with anonymous filenames\n- Move files to different directories in bulk\n- Sync metadata like ALT texts and titles\n- Number your files to allow for similar filenames\n- Attach media entries to the posts or pages they\'re used in\n- Use the Force Rename feature to re-link broken media entries to your files\n- Advanced transliteration handles accents, emoticons, umlauts, cyrillic, and more<h3>IMPORTANT</h3>Renaming or moving files can be a risky process, which is why it\'s important to take precautions. Before renaming your files in bulk, try renaming them one by one to make sure the references in your pages are updated properly. It\'s worth noting that some plugins may use unconventional methods to encode file usage, which could cause issues with the renaming process. To ensure the safety of your files and database, **it is crucial to make a backup before using Media File Renamer** to its full extent. Protect your valuable media by taking these precautionary measures.\n\nIf you notice any issues with your website after renaming your media files, **try clearing your cache**. Cached HTML can often hold onto old references, so this simple step can often resolve any issues. If you\'re still experiencing problems, you can use the Undo feature to roll back to the previous filenames. If you\'re having trouble updating references or have any other questions, please check out the support threads on our website. We\'re always working to cover more use cases and improve the plugin. You will find more here: [Questions &amp; Issues](https://meowapps.com/media-file-renamer/issues/).<h3>FOR DEVELOPERS</h3>The plugin can be tweaked in many ways, there are many actions and filters available. Through them, for example, you can customize the automatic renaming to your liking. There is even a little API that you can call. More about this [here](https://meowapps.com/media-file-renamer/issues/).<h3>A SIMPLER PLUGIN</h3>If you only need an simple field in order to modify the filename, you can also try [Phoenix Media Rename](https://wordpress.org/plugins/phoenix-media-rename). It\'s simpler, and just does that. Yes, we are friends!\";}s:9:\"changelog\";a:1:{i:0;s:12990:\"<h4> 5.8.1 (2024/01/20) </h4>\n<ul>\n<li>Fix: Async upload with AI Vision.</li>\n<li>Add: Import/Export Settings.</li>\n<li>&#x2b50;&#xfe0f; Don\'t hesitate to join our <a href=\"https://discord.gg/bHDGh38\">Discord Channel</a>.</li>\n<li>&#x1f334; Please share some love <a href=\"https://wordpress.org/support/plugin/media-file-renamer/reviews/?rate=5#new-post\">here</a>. Thank you!</li>\n</ul>\n<h4> 5.8.0 (2024/01/01) </h4>\n<ul>\n<li>Fix: Issue with mfrh_media_renamed.</li>\n<li>Update: Enhanced UI with selection options for upload and improved AI prompts.</li>\n<li>Fix: Resolved issues in \'Rename All\' AI functionality and fixed Sync selection.</li>\n<li>Optimization: Improved history features with new filters, styling changes, and history limit adjustments.</li>\n<li>Add: New renaming methods with NekoTabs, history tracking, and AI-enhanced renaming capabilities.</li>\n<li>Update: Streamlined settings with revised tabs for Manual, Auto, and AI, and better visual indicators for busy fields.</li>\n<li>Add: Additional media library field options and a new &quot;Cancel&quot; feature for manual renaming.</li>\n<li>&#x1f4ab; Happy New Year!</li>\n</ul>\n<h4> 5.7.8 (2023/12/25) </h4>\n<ul>\n<li>Update: Tools related to AI got better.</li>\n<li>Fix: Little fixes and enhancements for some users.</li>\n<li>&#x1f384; Merry Christmas!</li>\n</ul>\n<h4> 5.7.7 (2023/12/05) </h4>\n<ul>\n<li>Update: Enhanced UI, clarified options, unified things.</li>\n<li>Add: Bulk Rename using AI Vision.</li>\n<li>Add: AI Vision on Upload.</li>\n<li>Add: Not Renamed filter in Dashboard.</li>\n</ul>\n<h4> 5.7.4 (2023/11/25) </h4>\n<ul>\n<li>Update: Removed &quot;mfrh_sync_media_meta&quot; filter and added &quot;mfrh_rewrite_title&quot;. Enhanced code quality with cleaning and added more logs for sync functions.</li>\n<li>Add: Introduced Table filters (for media with no alt text, no description, no title) and improved display for empty metadata.</li>\n<li>Add: Added &quot;mfrh_clean_upload&quot; filter to customize the clean upload value.</li>\n<li>Fix: Removed &quot;disabled&quot; status on NekoModal to prevent log spamming.</li>\n<li>Update: Removed busyOverlay and upgraded the description field to a textarea for better input handling.</li>\n<li>Fix: Resolved an undefined function call issue in the API.</li>\n</ul>\n<h4> 5.7.3 (2023/11/20) </h4>\n<ul>\n<li>Add: Sync only for selected items and mfrh_sync_media_meta filter for post modification during syncing.</li>\n<li>Update: New modal for thumbnails with an &quot;open in new tab&quot; button, and enhanced auto-attach warning message.</li>\n<li>Fix: Adjusted the default behavior of sync functionality.</li>\n</ul>\n<h4> 5.7.2 (2023/11/17) </h4>\n<ul>\n<li>Add: AI suggestion now utilizes Vision for enhanced accuracy.</li>\n<li>Add: New &quot;Clean Uploads&quot; feature for efficient media management.</li>\n<li>Add: Magic Wand for Metadata Fields.</li>\n<li>Update: &quot;Auto-Attach Media&quot; feature now allows selection of target media entries.</li>\n<li>Update: Created Meow_MFRH_Engine class, consolidating renaming-related code.</li>\n<li>Update: Conducted various non-code related updates for improved performance.</li>\n<li>Fix: Resolved extension-related errors in thumbnails for better reliability.</li>\n</ul>\n<h4> 5.7.1 (2023/10/19) </h4>\n<ul>\n<li>Fix: The action_update_postmeta filter was not working properly.</li>\n<li>Fix: Missing buttons in the modals.</li>\n</ul>\n<h4> 5.7.0 (2023/10/10) </h4>\n<ul>\n<li>Update: For better confidentiality, the logs file is now randomly generated.</li>\n<li>Fix: Support of Windows servers.</li>\n</ul>\n<h4> 5.6.9 (2023/09/21) </h4>\n<ul>\n<li>Update: The Auto-Attach feature is a bit more robust when using Media Cleaner data.</li>\n</ul>\n<h4> 5.6.8 (2023/09/14) </h4>\n<ul>\n<li>Add: Auto-Attach feature now use the data from <a href=\"https://wordpress.org/plugins/media-cleaner/\">Media Cleaner</a> (if available), which is extremely accurate!</li>\n<li>Fix: Random issues related to metadata not existing.</li>\n<li>Fix: Optimize the way the move feature works.</li>\n<li>Fix: Move didn\'t handle the WebP and AVIF files properly.</li>\n<li>Fix: Was not possible to completely delete the filename to type it from scratch.</li>\n<li>Fix: When uninstalled, all the data used by the plugin is now removed properly.</li>\n</ul>\n<h4> 5.6.6 (2023/07/21) </h4>\n<ul>\n<li>Fix: Avoid warnings when the metadata isn\'t found.</li>\n<li>Fix: Better handling of metadata synchronization.</li>\n<li>Update: Enhanced the UI of the Renamer Field.</li>\n</ul>\n<h4> 5.6.5 (2023/06/21) </h4>\n<ul>\n<li>Fix: Issue when automatic renaming was used with the related auto-lock.</li>\n<li>Update: Latest version of the UI.</li>\n</ul>\n<h4> 5.6.4 (2023/06/02) </h4>\n<ul>\n<li>Fix: Removed a few warnings.</li>\n<li>Fix: The paging issue.</li>\n</ul>\n<h4> 5.6.3 (2023/05/30) </h4>\n<ul>\n<li>Update: Trying to improve the UI based on your feedback. It might not please everyone, but I am trying to make it better. Please let me know if you have any idea.</li>\n<li>Fix: There were a few warning issues.</li>\n<li>Fix: There were some inconsistencies in the UI.</li>\n</ul>\n<h4> 5.6.2 (2023/05/13) </h4>\n<ul>\n<li>Add: Some issues with spacing in some buttons.</li>\n<li>&#x1f3b5; I am struggling a bit to make the Dashboard UI nicer, if you have any idea, don\'t hesitate to let me know via the <a href=\"https://wordpress.org/support/plugin/media-file-renamer/\">Support Forums</a>.</li>\n</ul>\n<h4> 5.6.1 (2023/05/06) </h4>\n<ul>\n<li>Add: We can now edit the ALT Text.</li>\n</ul>\n<h4> 5.6.0 (2023/05/02) </h4>\n<ul>\n<li>Add: \'Attached To\' column is now hideable.</li>\n<li>Add: \'ALT Text\' data now available if enabled in the options.</li>\n<li>Update: Minimized the size of the bundle.</li>\n</ul>\n<h4> 5.5.9 (2023/03/18) </h4>\n<ul>\n<li>Fix: Various fixes in the UI.</li>\n<li>Update: Latest UI framework.</li>\n</ul>\n<h4> 5.5.8 (2023/03/13) </h4>\n<ul>\n<li>Add: AI filename suggestions.</li>\n<li>Update: Added Unlocked instead of Pending (which was slowing-down the process and was not really useful). Let me know if you preferred it the other way.</li>\n</ul>\n<h4> 5.5.7 (2023/02/09) </h4>\n<ul>\n<li>Add: New option to disable the Dashboard.</li>\n<li>Note: A bit late on the support, it\'s unusual, but very busy these days. I am also trying to gather the feedback/issues to fix them all at once in a good way. Thank you for your patience!</li>\n</ul>\n<h4> 5.5.5 (2023/02/01) </h4>\n<ul>\n<li>Update: Clean the dashboard a bit, depending on the options.</li>\n<li>Fix: Issue in the Media Library with the Renamer field.</li>\n<li>Fix: The Edit Title modal wasn\'t working on ENTER.</li>\n</ul>\n<h4> 5.5.4 (2023/01/29) </h4>\n<ul>\n<li>Fix: Titting enter in the Edit Title modal wasn\'t update with the new title.</li>\n</ul>\n<h4> 5.5.3 (2023/01/27) </h4>\n<ul>\n<li>Update: Better move features and cleaner UI.</li>\n</ul>\n<h4> 5.5.2 (2023/01/06) </h4>\n<ul>\n<li>Update: Slowly (but surely) separating the Rename mode from the Move mode. I will make the UI better and more adapted to the chosen mode. You will find the switch in the Renamer Dashboard.</li>\n</ul>\n<h4> 5.5.1 (2022/12/24) </h4>\n<ul>\n<li>Update: Enhanced the hooks (filters).</li>\n</ul>\n<h4> 5.5.0 (2022/11/12) </h4>\n<ul>\n<li>Fix: Enhanced the behavior of the UI.\n= 5.4.9 (2022/10/30) =</li>\n<li>Fix: The link to the Dashboard was broken.</li>\n</ul>\n<h4> 5.4.8 (2022/10/24) </h4>\n<ul>\n<li>Fix: There was an issue with WP-CLI in the latest versions.</li>\n</ul>\n<h4> 5.4.7 (2022/10/12) </h4>\n<ul>\n<li>Add: Consider WebP as an &quot;Image&quot; (which it is &#x1f60f;).</li>\n<li>Fix: The \'Featured Only\' and \'Images Only\' were not working perfectly.</li>\n<li>Update: Optimized the way options are updated and retrieved.</li>\n<li>Update: Some refactoring to simplify the code.</li>\n</ul>\n<h4> 5.4.5 (2022/09/27) </h4>\n<ul>\n<li>Add: Auto-retry on failure, up to 10 times.</li>\n<li>Fix: Typos.</li>\n</ul>\n<h4> 5.4.3 (2022/08/11) </h4>\n<ul>\n<li>Add: Handle errors gracefully (with retry, skip or cancel).</li>\n</ul>\n<h4> 5.4.1 (2022/08/03) </h4>\n<ul>\n<li>Fix: Tiny UI bug in Safari.</li>\n</ul>\n<h4> 5.4.0 (2022/07/05) </h4>\n<ul>\n<li>Add: Support for Elementor (update the metadata and CSS).</li>\n<li>Update: Use the default WordPress font (to avoid loading data from Google Fonts) and a few UI enhancements.</li>\n</ul>\n<h4> 5.3.9 (2022/06/16) </h4>\n<ul>\n<li>Fix: The WebP files weren\'t not renamed perfectly.</li>\n</ul>\n<h4> 5.3.8 (2022/03/29) </h4>\n<ul>\n<li>Fix: Support for WebP.</li>\n<li>Fix: Anonymize (MD5) on upload now works fine.</li>\n<li>Fix: Decode HTML entities (in the meta, title) when renaming is based on it.</li>\n<li>Update: I am trying to enhance the UI (the rename field and the actions) depending on the size of the browser. I\'ll try to make this better and better, but don\'t hesitate to give me some feedback.</li>\n</ul>\n<h4> 5.3.6 (2022/02/01) </h4>\n<ul>\n<li>Update: Fresh build and support for WordPress 5.9.</li>\n</ul>\n<h4> 5.3.5 (2021/11/10) </h4>\n<ul>\n<li>Fix: Renaming of WebP uploaded directly to WordPress.</li>\n<li>Add: The possibility of locking files automatically after a manual rename (which was always the case previously), and/or after a automatic rename (that was not possible previously). With this last option, users having trouble to &quot;Rename All&quot; will be given the choice to do it on any kind of server. You will find those options in the Advanced tab.</li>\n<li>Add: &quot;Delay&quot; option, to give a break and a reset to the server between asynchronous requests! Default to 100ms. That will avoid the server to time out, or to slow down on purpose.</li>\n</ul>\n<h4> 5.3.3 (2021/11/09) </h4>\n<ul>\n<li>Fix: Avoid renaming when the URLs (before/after) are empty.</li>\n<li>Add: New option to update URLs in the excerpts (no need to use it for most users).</li>\n<li>Update: Avoid double call to the mfrh_url_renamed (seemed to be completely useless).</li>\n<li>Update: Added a new \'size\' argument to the mfrh_url_renamed action.</li>\n<li>Update: Optimized queries.</li>\n<li>Add: We can change the page (in the dashboard) by typing it.</li>\n</ul>\n<h4> 5.3.2 (2021/10/16) </h4>\n<ul>\n<li>Add: AVIF support.</li>\n<li>Fix: Avoid the double renaming when different registered sizes actually use the same file.</li>\n</ul>\n<h4> 5.3.0 (2021/10/09) </h4>\n<ul>\n<li>Add: Better Force Rename.</li>\n<li>Add: Featured Images Only option.</li>\n<li>Fix: Auto-attach feature wasn\'t working properly with Featured Image when attached to Product.</li>\n</ul>\n<h4> 5.2.9 (2021/09/23) </h4>\n<ul>\n<li>Add: Manual Sanitize Option. If the option is checked, the rename feature uses the new_filename function. If not, use the filename user input as it is.</li>\n</ul>\n<h4> 5.2.8 (2021/09/07) </h4>\n<ul>\n<li>Add: Option to clean the plugin data on uninstall.</li>\n<li>Add: Manual Rename now goes through the cleaning flow to make sure everything is clean and nice.</li>\n</ul>\n<h4> 5.2.7 (2021/09/03) </h4>\n<ul>\n<li>Fix: Security update: access controls to the REST API and the options enforced.</li>\n<li>Updated: Dependencies update.</li>\n</ul>\n<h4> 5.2.5 (2021/08/25) </h4>\n<ul>\n<li>Fix: Search feature was not always working well.</li>\n<li>Update: Better technical architecture.</li>\n</ul>\n<h4> 5.2.4 (2021/06/13) </h4>\n<ul>\n<li>Add: Remember the number of entries per page (dashboard).</li>\n<li>Fix: Limit the length of the manual filename.</li>\n</ul>\n<h4> 5.2.3 (2021/05/29) </h4>\n<ul>\n<li>Fix: The \'Move\' feature now also works with the original image (in case it has been scaled by WP).</li>\n</ul>\n<h4> 5.2.2 (2021/05/18) </h4>\n<ul>\n<li>Fix: Better Windows support.</li>\n</ul>\n<h4> 5.2.0 (2021/05/15) </h4>\n<ul>\n<li>Add: Move button (this was mainly added for tests, so it\'s a beta feature, it will be perfected over time).</li>\n<li>Add: Images Only option.</li>\n<li>Fix: Vulnerability report, a standard user access could potentially modify a media title with custom requests.</li>\n</ul>\n<h4> 5.1.9 (2021/04/09) </h4>\n<ul>\n<li>Fix: The Synchronize Alt option wasn\'t working logically.</li>\n</ul>\n<h4> 5.1.8 (2021/03/04) </h4>\n<ul>\n<li>Add: Search.</li>\n<li>Add: Quick rename the title from the dashboard.</li>\n</ul>\n<h4> 5.1.7 (2021/02/21) </h4>\n<ul>\n<li>Fix: The Synchronize Media Title option wasn\'t working logically.</li>\n</ul>\n<h4> 5.1.6 (2021/02/12) </h4>\n<ul>\n<li>Fix: References for moved files were not updated.</li>\n<li>Add: Sanitize filename after they have been through the mfrh_new_filename filter.</li>\n</ul>\n<h4> 5.1.3 (2021/02/06)  </h4>\n<ul>\n<li>Add: Greek support.</li>\n<li>Fix: Better sensitive file check.</li>\n<li>Fix: Manual rename with WP CLI.</li>\n</ul>\n<h4> 5.1.2 (2021/01/10) </h4>\n<ul>\n<li>Add: Auto attach feature.</li>\n<li>Add: Added Locked in the filters.</li>\n<li>Update: Icons position.</li>\n</ul>\n<h4> 5.1.1 (2021/01/05) </h4>\n<ul>\n<li>Fix: Issue with roles overriding and WP-CLI.</li>\n<li>Fix: Issue with REST in the Common Dashboard.</li>\n</ul>\n<h4> 5.1.0 (2021/01/01) </h4>\n<ul>\n<li>Add: Support overriding roles.</li>\n<li>Fix: The layout of the dashboard was broken by WPBakery.</li>\n</ul>\";}s:6:\"plugin\";s:49:\"media-file-renamer-pro/media-file-renamer-pro.php\";s:2:\"id\";s:49:\"media-file-renamer-pro/media-file-renamer-pro.php\";}}s:57:\"product-size-chart-for-woo/product-size-chart-for-woo.php\";O:8:\"stdClass\":18:{s:20:\"WC requires at least\";s:3:\"6.0\";s:15:\"WC tested up to\";s:5:\"7.8.0\";s:3:\"Woo\";s:0:\"\";s:4:\"Name\";s:34:\"Product Size Chart for WooCommerce\";s:9:\"PluginURI\";s:57:\"https://villatheme.com/extensions/woo-product-size-chart/\";s:7:\"Version\";s:5:\"1.1.5\";s:11:\"Description\";s:93:\"A plugin helps you to customize and design the size chart of specific products or categories.\";s:6:\"Author\";s:10:\"VillaTheme\";s:9:\"AuthorURI\";s:21:\"http://villatheme.com\";s:10:\"TextDomain\";s:26:\"product-size-chart-for-woo\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:3:\"7.0\";s:9:\"UpdateURI\";s:0:\"\";s:5:\"Title\";s:34:\"Product Size Chart for WooCommerce\";s:10:\"AuthorName\";s:10:\"VillaTheme\";s:6:\"update\";O:8:\"stdClass\":12:{s:2:\"id\";s:40:\"w.org/plugins/product-size-chart-for-woo\";s:4:\"slug\";s:26:\"product-size-chart-for-woo\";s:6:\"plugin\";s:57:\"product-size-chart-for-woo/product-size-chart-for-woo.php\";s:11:\"new_version\";s:5:\"1.1.6\";s:3:\"url\";s:57:\"https://wordpress.org/plugins/product-size-chart-for-woo/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/product-size-chart-for-woo.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/product-size-chart-for-woo/assets/icon-256x256.jpg?rev=2588381\";s:2:\"1x\";s:79:\"https://ps.w.org/product-size-chart-for-woo/assets/icon-128x128.jpg?rev=2588381\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:82:\"https://ps.w.org/product-size-chart-for-woo/assets/banner-1544x500.jpg?rev=2588381\";s:2:\"1x\";s:81:\"https://ps.w.org/product-size-chart-for-woo/assets/banner-772x250.jpg?rev=2588381\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.4.2\";s:12:\"requires_php\";s:3:\"7.0\";}}}','no'),(303169,'_transient_timeout_wc_tracks_blog_details','1705948209','no'),(303170,'_transient_wc_tracks_blog_details','a:6:{s:3:\"url\";s:33:\"https://www.nl.ecom-expansion.com\";s:9:\"blog_lang\";s:5:\"en_US\";s:7:\"blog_id\";b:0;s:8:\"store_id\";s:36:\"f6f3ff36-dcfe-4a76-bffd-7e58c181f5a3\";s:14:\"products_count\";i:0;s:10:\"wc_version\";s:5:\"8.5.1\";}','no'),(303184,'_transient_timeout_wp_rocket_pricing','1705923409','no'),(303187,'_transient_wp_rocket_pricing','O:8:\"stdClass\":3:{s:8:\"licenses\";O:8:\"stdClass\":3:{s:6:\"single\";O:8:\"stdClass\":2:{s:6:\"prices\";O:8:\"stdClass\":3:{s:7:\"regular\";i:59;s:4:\"sale\";d:41.3;s:7:\"renewal\";O:8:\"stdClass\":4:{s:14:\"is_grandfather\";d:39.2;s:14:\"is_grandmother\";i:49;s:15:\"not_grandfather\";i:59;s:10:\"is_expired\";i:59;}}s:8:\"websites\";i:1;}s:4:\"plus\";O:8:\"stdClass\":2:{s:6:\"prices\";O:8:\"stdClass\":4:{s:7:\"regular\";i:119;s:4:\"sale\";d:83.30000000000001;s:11:\"from_single\";O:8:\"stdClass\":2:{s:7:\"regular\";i:60;s:4:\"sale\";i:42;}s:7:\"renewal\";O:8:\"stdClass\":4:{s:14:\"is_grandfather\";d:79.2;s:14:\"is_grandmother\";i:99;s:15:\"not_grandfather\";i:119;s:10:\"is_expired\";i:119;}}s:8:\"websites\";i:3;}s:8:\"infinite\";O:8:\"stdClass\":2:{s:6:\"prices\";O:8:\"stdClass\":5:{s:7:\"regular\";i:299;s:4:\"sale\";d:209.3;s:11:\"from_single\";O:8:\"stdClass\":2:{s:7:\"regular\";i:240;s:4:\"sale\";i:168;}s:9:\"from_plus\";O:8:\"stdClass\":2:{s:7:\"regular\";i:180;s:4:\"sale\";i:126;}s:7:\"renewal\";O:8:\"stdClass\":4:{s:14:\"is_grandfather\";d:199.2;s:14:\"is_grandmother\";i:249;s:15:\"not_grandfather\";i:299;s:10:\"is_expired\";i:299;}}s:8:\"websites\";s:9:\"unlimited\";}}s:8:\"renewals\";O:8:\"stdClass\":4:{s:10:\"extra_days\";i:15;s:16:\"grandfather_date\";i:1640995200;s:16:\"grandmother_date\";i:1672389000;s:16:\"discount_percent\";O:8:\"stdClass\":3:{s:14:\"is_grandfather\";i:20;s:15:\"not_grandfather\";i:0;s:10:\"is_expired\";i:0;}}s:5:\"promo\";O:8:\"stdClass\":4:{s:4:\"name\";s:12:\"Black Friday\";s:16:\"discount_percent\";i:30;s:10:\"start_date\";i:1700438400;s:8:\"end_date\";i:1701302399;}}','no'),(303194,'_transient_timeout_vgse_variation_meta_keys','1705891175','no'),(303198,'_transient_vgse_variation_meta_keys','a:0:{}','no'),(303208,'_site_transient_timeout_available_translations','1705891055','no'),(303209,'_site_transient_available_translations','a:131:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-05-13 15:59:22\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/af.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"af\";i:2;s:3:\"afr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Gaan voort\";}}s:2:\"am\";a:8:{s:8:\"language\";s:2:\"am\";s:7:\"version\";s:5:\"6.0.6\";s:7:\"updated\";s:19:\"2022-09-29 20:43:49\";s:12:\"english_name\";s:7:\"Amharic\";s:11:\"native_name\";s:12:\"አማርኛ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.0.6/am.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"am\";i:2;s:3:\"amh\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"ቀጥል\";}}s:3:\"arg\";a:8:{s:8:\"language\";s:3:\"arg\";s:7:\"version\";s:8:\"6.2-beta\";s:7:\"updated\";s:19:\"2022-09-22 16:46:56\";s:12:\"english_name\";s:9:\"Aragonese\";s:11:\"native_name\";s:9:\"Aragonés\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/6.2-beta/arg.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"an\";i:2;s:3:\"arg\";i:3;s:3:\"arg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continar\";}}s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-12-25 17:57:08\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.2/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"متابعة\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:6:\"4.8.23\";s:7:\"updated\";s:19:\"2017-01-26 15:42:35\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"العربية المغربية\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.23/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"as\";a:8:{s:8:\"language\";s:2:\"as\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-10-19 09:22:30\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.2/as.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"as\";i:2;s:3:\"asm\";i:3;s:3:\"asm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2024-01-19 08:58:31\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.4.2/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-06 00:09:27\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"bel\";a:8:{s:8:\"language\";s:3:\"bel\";s:7:\"version\";s:6:\"4.9.24\";s:7:\"updated\";s:19:\"2019-10-29 07:54:22\";s:12:\"english_name\";s:10:\"Belarusian\";s:11:\"native_name\";s:29:\"Беларуская мова\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.9.24/bel.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"be\";i:2;s:3:\"bel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Працягнуць\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-11-09 09:13:37\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Напред\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2024-01-09 17:49:56\";s:12:\"english_name\";s:20:\"Bengali (Bangladesh)\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:28:\"চালিয়ে যান\";}}s:2:\"bo\";a:8:{s:8:\"language\";s:2:\"bo\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2020-10-30 03:24:38\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"བོད་ཡིག\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/bo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bo\";i:2;s:3:\"tib\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:33:\"མུ་མཐུད་དུ།\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"6.2.3\";s:7:\"updated\";s:19:\"2023-02-22 20:45:53\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.3/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2024-01-08 16:31:26\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.2/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:3:\"ceb\";a:8:{s:8:\"language\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-02 17:25:51\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ceb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}}s:5:\"cs_CZ\";a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2024-01-08 09:13:09\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"Čeština\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokračovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-11-03 10:36:13\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.2/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2024-01-20 10:05:06\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsæt\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-12-06 19:57:18\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/6.4.2/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_AT\";a:8:{s:8:\"language\";s:5:\"de_AT\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-11-29 21:13:08\";s:12:\"english_name\";s:16:\"German (Austria)\";s:11:\"native_name\";s:21:\"Deutsch (Österreich)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/de_AT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-11-08 18:40:48\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/translation/core/6.4.2/de_CH_informal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-11-08 18:40:24\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-12-06 19:56:58\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:3:\"dsb\";a:8:{s:8:\"language\";s:3:\"dsb\";s:7:\"version\";s:5:\"6.2.3\";s:7:\"updated\";s:19:\"2022-07-16 12:13:09\";s:12:\"english_name\";s:13:\"Lower Sorbian\";s:11:\"native_name\";s:16:\"Dolnoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.3/dsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"dsb\";i:3;s:3:\"dsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Dalej\";}}s:3:\"dzo\";a:8:{s:8:\"language\";s:3:\"dzo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-06-29 08:59:03\";s:12:\"english_name\";s:8:\"Dzongkha\";s:11:\"native_name\";s:18:\"རྫོང་ཁ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/dzo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"dz\";i:2;s:3:\"dzo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2024-01-10 19:54:48\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.2/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-08-28 15:58:51\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/en_ZA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-11-27 22:57:29\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-11-25 14:09:36\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-11-24 12:26:36\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-10-22 02:53:03\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-09-20 08:57:43\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.2/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_CR\";a:8:{s:8:\"language\";s:5:\"es_CR\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-11-08 20:42:04\";s:12:\"english_name\";s:20:\"Spanish (Costa Rica)\";s:11:\"native_name\";s:22:\"Español de Costa Rica\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/es_CR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2024-01-18 22:06:24\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/es_MX.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-12-20 03:52:48\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/es_AR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-10-16 16:00:04\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/es_VE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_EC\";a:8:{s:8:\"language\";s:5:\"es_EC\";s:7:\"version\";s:5:\"6.2.3\";s:7:\"updated\";s:19:\"2023-04-21 13:32:10\";s:12:\"english_name\";s:17:\"Spanish (Ecuador)\";s:11:\"native_name\";s:19:\"Español de Ecuador\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.3/es_EC.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:5:\"6.2.3\";s:7:\"updated\";s:19:\"2023-03-14 22:16:37\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.3/es_CO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2021-10-04 20:53:18\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/es_PE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_DO\";a:8:{s:8:\"language\";s:5:\"es_DO\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2021-10-08 14:32:50\";s:12:\"english_name\";s:28:\"Spanish (Dominican Republic)\";s:11:\"native_name\";s:33:\"Español de República Dominicana\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/es_DO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_UY\";a:8:{s:8:\"language\";s:5:\"es_UY\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-31 18:33:26\";s:12:\"english_name\";s:17:\"Spanish (Uruguay)\";s:11:\"native_name\";s:19:\"Español de Uruguay\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/es_UY.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-06-14 16:02:22\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/es_CL.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PR\";a:8:{s:8:\"language\";s:5:\"es_PR\";s:7:\"version\";s:6:\"5.4.14\";s:7:\"updated\";s:19:\"2020-04-29 15:36:59\";s:12:\"english_name\";s:21:\"Spanish (Puerto Rico)\";s:11:\"native_name\";s:23:\"Español de Puerto Rico\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.4.14/es_PR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:6:\"5.2.19\";s:7:\"updated\";s:19:\"2019-03-02 06:35:01\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"Español de Guatemala\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.2.19/es_GT.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-12-28 10:19:25\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/es_ES.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-10-05 10:16:58\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.2/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2024-01-12 17:31:37\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.2/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_AF\";a:8:{s:8:\"language\";s:5:\"fa_AF\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2024-01-06 04:38:22\";s:12:\"english_name\";s:21:\"Persian (Afghanistan)\";s:11:\"native_name\";s:31:\"(فارسی (افغانستان\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/fa_AF.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2024-01-05 21:16:24\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-11-09 09:46:35\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.2/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2024-01-16 15:58:51\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-11-29 13:35:45\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/fr_CA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-02-22 13:54:46\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:3:\"fur\";a:8:{s:8:\"language\";s:3:\"fur\";s:7:\"version\";s:6:\"4.8.23\";s:7:\"updated\";s:19:\"2023-04-30 13:56:46\";s:12:\"english_name\";s:8:\"Friulian\";s:11:\"native_name\";s:8:\"Friulian\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.23/fur.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"fur\";i:3;s:3:\"fur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"fy\";a:8:{s:8:\"language\";s:2:\"fy\";s:7:\"version\";s:5:\"6.2.3\";s:7:\"updated\";s:19:\"2022-12-25 12:53:23\";s:12:\"english_name\";s:7:\"Frisian\";s:11:\"native_name\";s:5:\"Frysk\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.3/fy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fy\";i:2;s:3:\"fry\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Trochgean\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-08-23 17:41:37\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-11-02 23:37:18\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"gu\";a:8:{s:8:\"language\";s:2:\"gu\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-08-09 07:20:47\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.2/gu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gu\";i:2;s:3:\"guj\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ચાલુ રાખો\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:6:\"4.4.31\";s:7:\"updated\";s:19:\"2015-12-05 00:59:09\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.4.31/haz.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"6.2.3\";s:7:\"updated\";s:19:\"2023-05-28 22:06:16\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.3/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"המשך\";}}s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-12-31 11:28:03\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"जारी रखें\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2024-01-03 21:54:15\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.2/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:3:\"hsb\";a:8:{s:8:\"language\";s:3:\"hsb\";s:7:\"version\";s:5:\"6.2.3\";s:7:\"updated\";s:19:\"2023-02-22 17:37:32\";s:12:\"english_name\";s:13:\"Upper Sorbian\";s:11:\"native_name\";s:17:\"Hornjoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.3/hsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"hsb\";i:3;s:3:\"hsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:4:\"Dale\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2024-01-19 19:44:34\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Folytatás\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-03 16:21:10\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Հայերեն\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Շարունակել\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2024-01-05 15:44:59\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:6:\"4.9.24\";s:7:\"updated\";s:19:\"2018-12-11 10:40:02\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.24/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2024-01-02 20:36:49\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-12-27 06:05:50\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.2/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"次へ\";}}s:5:\"jv_ID\";a:8:{s:8:\"language\";s:5:\"jv_ID\";s:7:\"version\";s:6:\"4.9.24\";s:7:\"updated\";s:19:\"2019-02-16 23:58:56\";s:12:\"english_name\";s:8:\"Javanese\";s:11:\"native_name\";s:9:\"Basa Jawa\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.24/jv_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"jv\";i:2;s:3:\"jav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Nerusaké\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:5:\"6.1.4\";s:7:\"updated\";s:19:\"2023-11-25 09:35:18\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.4/ka_GE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"გაგრძელება\";}}s:3:\"kab\";a:8:{s:8:\"language\";s:3:\"kab\";s:7:\"version\";s:5:\"6.2.3\";s:7:\"updated\";s:19:\"2023-07-05 11:40:39\";s:12:\"english_name\";s:6:\"Kabyle\";s:11:\"native_name\";s:9:\"Taqbaylit\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.3/kab.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"kab\";i:3;s:3:\"kab\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Kemmel\";}}s:2:\"kk\";a:8:{s:8:\"language\";s:2:\"kk\";s:7:\"version\";s:6:\"4.9.24\";s:7:\"updated\";s:19:\"2018-07-10 11:35:44\";s:12:\"english_name\";s:6:\"Kazakh\";s:11:\"native_name\";s:19:\"Қазақ тілі\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.24/kk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kk\";i:2;s:3:\"kaz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Жалғастыру\";}}s:2:\"km\";a:8:{s:8:\"language\";s:2:\"km\";s:7:\"version\";s:6:\"5.2.19\";s:7:\"updated\";s:19:\"2019-06-10 16:18:28\";s:12:\"english_name\";s:5:\"Khmer\";s:11:\"native_name\";s:27:\"ភាសាខ្មែរ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2.19/km.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"km\";i:2;s:3:\"khm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"បន្ត\";}}s:2:\"kn\";a:8:{s:8:\"language\";s:2:\"kn\";s:7:\"version\";s:5:\"6.1.4\";s:7:\"updated\";s:19:\"2022-10-20 17:15:28\";s:12:\"english_name\";s:7:\"Kannada\";s:11:\"native_name\";s:15:\"ಕನ್ನಡ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.4/kn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kn\";i:2;s:3:\"kan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"ಮುಂದುವರಿಸು\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-10-19 07:05:28\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:3:\"ckb\";a:8:{s:8:\"language\";s:3:\"ckb\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2024-01-14 23:31:45\";s:12:\"english_name\";s:16:\"Kurdish (Sorani)\";s:11:\"native_name\";s:13:\"كوردی‎\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.4.2/ckb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ku\";i:3;s:3:\"ckb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"به‌رده‌وام به‌\";}}s:3:\"kir\";a:8:{s:8:\"language\";s:3:\"kir\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-11-21 15:26:43\";s:12:\"english_name\";s:6:\"Kyrgyz\";s:11:\"native_name\";s:16:\"Кыргызча\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.4.2/kir.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ky\";i:2;s:3:\"kir\";i:3;s:3:\"kir\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Улантуу\";}}s:2:\"lo\";a:8:{s:8:\"language\";s:2:\"lo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 09:59:23\";s:12:\"english_name\";s:3:\"Lao\";s:11:\"native_name\";s:21:\"ພາສາລາວ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/lo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lo\";i:2;s:3:\"lao\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"ຕໍ່​ໄປ\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:5:\"6.1.4\";s:7:\"updated\";s:19:\"2022-11-24 03:51:58\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.4/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:2:\"lv\";a:8:{s:8:\"language\";s:2:\"lv\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-12-20 21:57:20\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.2/lv.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Turpināt\";}}s:5:\"mk_MK\";a:8:{s:8:\"language\";s:5:\"mk_MK\";s:7:\"version\";s:5:\"6.0.6\";s:7:\"updated\";s:19:\"2022-10-01 09:23:52\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.0.6/mk_MK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Продолжи\";}}s:5:\"ml_IN\";a:8:{s:8:\"language\";s:5:\"ml_IN\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2024-01-14 15:04:06\";s:12:\"english_name\";s:9:\"Malayalam\";s:11:\"native_name\";s:18:\"മലയാളം\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/ml_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ml\";i:2;s:3:\"mal\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"തുടരുക\";}}s:2:\"mn\";a:8:{s:8:\"language\";s:2:\"mn\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-10-05 01:27:19\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"Монгол\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.2/mn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mn\";i:2;s:3:\"mon\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:6:\"4.9.24\";s:7:\"updated\";s:19:\"2019-11-22 15:32:08\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.24/mr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mr\";i:2;s:3:\"mar\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"सुरु ठेवा\";}}s:5:\"ms_MY\";a:8:{s:8:\"language\";s:5:\"ms_MY\";s:7:\"version\";s:6:\"5.5.13\";s:7:\"updated\";s:19:\"2022-03-11 13:52:22\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.5.13/ms_MY.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:6:\"4.2.36\";s:7:\"updated\";s:19:\"2017-12-26 11:57:10\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.36/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ဆောင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2024-01-20 00:02:09\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"ne_NP\";a:8:{s:8:\"language\";s:5:\"ne_NP\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-12-22 16:02:51\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"नेपाली\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/ne_NP.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ne\";i:2;s:3:\"nep\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:43:\"जारी राख्नुहोस्\";}}s:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-10-14 13:34:08\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/6.4.2/nl_NL_formal.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-12-21 10:48:27\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2024-01-20 14:27:46\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/nl_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-18 10:59:16\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:6:\"4.8.23\";s:7:\"updated\";s:19:\"2017-08-25 10:03:08\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.23/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pa_IN\";a:8:{s:8:\"language\";s:5:\"pa_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-16 05:19:43\";s:12:\"english_name\";s:15:\"Panjabi (India)\";s:11:\"native_name\";s:18:\"ਪੰਜਾਬੀ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/pa_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pa\";i:2;s:3:\"pan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ਜਾਰੀ ਰੱਖੋ\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2024-01-19 15:39:28\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:6:\"4.3.32\";s:7:\"updated\";s:19:\"2015-12-02 21:41:29\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.3.32/ps.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"دوام ورکړه\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2024-01-18 09:34:08\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_AO\";a:8:{s:8:\"language\";s:5:\"pt_AO\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-08-21 12:17:05\";s:12:\"english_name\";s:19:\"Portuguese (Angola)\";s:11:\"native_name\";s:20:\"Português de Angola\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/pt_AO.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-11-08 00:25:54\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:10:\"pt_PT_ao90\";a:8:{s:8:\"language\";s:10:\"pt_PT_ao90\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-11-07 09:12:03\";s:12:\"english_name\";s:27:\"Portuguese (Portugal, AO90)\";s:11:\"native_name\";s:17:\"Português (AO90)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/core/6.4.2/pt_PT_ao90.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"rhg\";a:8:{s:8:\"language\";s:3:\"rhg\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-16 13:03:18\";s:12:\"english_name\";s:8:\"Rohingya\";s:11:\"native_name\";s:8:\"Ruáinga\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/rhg.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"rhg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2024-01-16 11:40:22\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-11-02 16:10:47\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:3:\"sah\";a:8:{s:8:\"language\";s:3:\"sah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-21 02:06:41\";s:12:\"english_name\";s:5:\"Sakha\";s:11:\"native_name\";s:14:\"Сахалыы\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/sah.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"sah\";i:3;s:3:\"sah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Салҕаа\";}}s:3:\"snd\";a:8:{s:8:\"language\";s:3:\"snd\";s:7:\"version\";s:6:\"5.4.14\";s:7:\"updated\";s:19:\"2020-07-07 01:53:37\";s:12:\"english_name\";s:6:\"Sindhi\";s:11:\"native_name\";s:8:\"سنڌي\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/5.4.14/snd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"sd\";i:2;s:3:\"snd\";i:3;s:3:\"snd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"اڳتي هلو\";}}s:5:\"si_LK\";a:8:{s:8:\"language\";s:5:\"si_LK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 06:00:52\";s:12:\"english_name\";s:7:\"Sinhala\";s:11:\"native_name\";s:15:\"සිංහල\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/si_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"si\";i:2;s:3:\"sin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:44:\"දිගටම කරගෙන යන්න\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2024-01-16 08:12:17\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:3:\"skr\";a:8:{s:8:\"language\";s:3:\"skr\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-11-12 10:29:16\";s:12:\"english_name\";s:7:\"Saraiki\";s:11:\"native_name\";s:14:\"سرائیکی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.4.2/skr.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"skr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"جاری رکھو\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2024-01-18 05:40:05\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Nadaljuj\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-11-13 18:56:56\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.2/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2024-01-05 20:51:57\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-12-20 00:53:50\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:2:\"sw\";a:8:{s:8:\"language\";s:2:\"sw\";s:7:\"version\";s:6:\"5.3.16\";s:7:\"updated\";s:19:\"2019-10-13 15:35:35\";s:12:\"english_name\";s:7:\"Swahili\";s:11:\"native_name\";s:9:\"Kiswahili\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.3.16/sw.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sw\";i:2;s:3:\"swa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Endelea\";}}s:3:\"szl\";a:8:{s:8:\"language\";s:3:\"szl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-24 19:58:14\";s:12:\"english_name\";s:8:\"Silesian\";s:11:\"native_name\";s:17:\"Ślōnskŏ gŏdka\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/szl.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"szl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:13:\"Kōntynuować\";}}s:5:\"ta_IN\";a:8:{s:8:\"language\";s:5:\"ta_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:22:47\";s:12:\"english_name\";s:5:\"Tamil\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ta_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"தொடரவும்\";}}s:5:\"ta_LK\";a:8:{s:8:\"language\";s:5:\"ta_LK\";s:7:\"version\";s:6:\"4.2.36\";s:7:\"updated\";s:19:\"2015-12-03 01:07:44\";s:12:\"english_name\";s:17:\"Tamil (Sri Lanka)\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.36/ta_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"தொடர்க\";}}s:2:\"te\";a:8:{s:8:\"language\";s:2:\"te\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:47:39\";s:12:\"english_name\";s:6:\"Telugu\";s:11:\"native_name\";s:18:\"తెలుగు\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/te.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"te\";i:2;s:3:\"tel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"కొనసాగించు\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2022-06-08 04:30:30\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.8/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:6:\"4.8.23\";s:7:\"updated\";s:19:\"2017-09-30 09:04:29\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8.23/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2024-01-06 00:04:30\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"tt_RU\";a:8:{s:8:\"language\";s:5:\"tt_RU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-20 20:20:50\";s:12:\"english_name\";s:5:\"Tatar\";s:11:\"native_name\";s:19:\"Татар теле\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/tt_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tt\";i:2;s:3:\"tat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"дәвам итү\";}}s:3:\"tah\";a:8:{s:8:\"language\";s:3:\"tah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-06 18:39:39\";s:12:\"english_name\";s:8:\"Tahitian\";s:11:\"native_name\";s:10:\"Reo Tahiti\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/tah.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ty\";i:2;s:3:\"tah\";i:3;s:3:\"tah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2024-01-11 17:50:19\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:16:\"ئۇيغۇرچە\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2024-01-14 12:08:20\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.2/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}}s:2:\"ur\";a:8:{s:8:\"language\";s:2:\"ur\";s:7:\"version\";s:6:\"5.4.14\";s:7:\"updated\";s:19:\"2020-04-09 11:17:33\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:8:\"اردو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.4.14/ur.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ur\";i:2;s:3:\"urd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"جاری رکھیں\";}}s:5:\"uz_UZ\";a:8:{s:8:\"language\";s:5:\"uz_UZ\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-02-28 12:02:22\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:11:\"O‘zbekcha\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/uz_UZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uz\";i:2;s:3:\"uzb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Davom etish\";}}s:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"6.2.3\";s:7:\"updated\";s:19:\"2023-07-15 15:30:50\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.3/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-12-07 00:00:04\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-11-23 09:22:54\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.2/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}s:5:\"zh_HK\";a:8:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"6.2.3\";s:7:\"updated\";s:19:\"2022-07-15 15:25:03\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:12:\"香港中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.3/zh_HK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}}','no'),(303216,'_transient_timeout_wfcredentialstatus_12','1705883868','no'),(303217,'_transient_wfcredentialstatus_12','0e63da3487078c3d7051829e57423a7221dfb864f7f452fab3b53d28afd3b8646','no'),(303219,'_transient_timeout_vgse_sort_options_post','1706485080','no'),(303220,'_transient_vgse_sort_options_post','a:10:{s:6:\"ASC:ID\";s:8:\"ID : ASC\";s:7:\"DESC:ID\";s:9:\"ID : DESC\";s:14:\"ASC:post_title\";s:16:\"post_title : ASC\";s:15:\"DESC:post_title\";s:17:\"post_title : DESC\";s:13:\"ASC:post_name\";s:15:\"post_name : ASC\";s:14:\"DESC:post_name\";s:16:\"post_name : DESC\";s:13:\"ASC:post_date\";s:15:\"post_date : ASC\";s:0:\"\";s:26:\"post_date : DESC (Default)\";s:17:\"ASC:post_modified\";s:19:\"post_modified : ASC\";s:18:\"DESC:post_modified\";s:20:\"post_modified : DESC\";}','no'),(303221,'_site_transient_timeout_browser_9c1ce27f08b16479d2e17743062b28ed','1706485081','no'),(303222,'_site_transient_browser_9c1ce27f08b16479d2e17743062b28ed','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"120.0.0.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(303223,'_site_transient_timeout_php_check_38979a08dcd71638878b7b4419751271','1706485081','no'),(303224,'_site_transient_php_check_38979a08dcd71638878b7b4419751271','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:3:\"7.0\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(303225,'_transient_timeout_wcstripe_account_data_live','1705887487','no'),(303226,'_transient_wcstripe_account_data_live','O:8:\"stdClass\":19:{s:2:\"id\";s:21:\"acct_1NR06LL2rnkpzIzk\";s:6:\"object\";s:7:\"account\";s:16:\"business_profile\";O:8:\"stdClass\":7:{s:3:\"mcc\";s:4:\"5944\";s:4:\"name\";s:9:\"Teng Shop\";s:15:\"support_address\";O:8:\"stdClass\":6:{s:4:\"city\";N;s:7:\"country\";s:2:\"FR\";s:5:\"line1\";N;s:5:\"line2\";N;s:11:\"postal_code\";N;s:5:\"state\";N;}s:13:\"support_email\";s:21:\"contact@teng-shop.com\";s:13:\"support_phone\";s:13:\"+528333106537\";s:11:\"support_url\";N;s:3:\"url\";s:16:\"se.teng-shop.com\";}s:12:\"capabilities\";O:8:\"stdClass\":12:{s:19:\"bancontact_payments\";s:6:\"active\";s:13:\"blik_payments\";s:6:\"active\";s:13:\"card_payments\";s:6:\"active\";s:12:\"eps_payments\";s:6:\"active\";s:16:\"giropay_payments\";s:6:\"active\";s:14:\"ideal_payments\";s:6:\"active\";s:15:\"klarna_payments\";s:8:\"inactive\";s:13:\"link_payments\";s:6:\"active\";s:12:\"p24_payments\";s:6:\"active\";s:19:\"sepa_debit_payments\";s:6:\"active\";s:15:\"sofort_payments\";s:6:\"active\";s:9:\"transfers\";s:6:\"active\";}s:15:\"charges_enabled\";b:1;s:10:\"controller\";O:8:\"stdClass\":2:{s:13:\"is_controller\";b:1;s:4:\"type\";s:11:\"application\";}s:7:\"country\";s:2:\"FR\";s:7:\"created\";i:1688680454;s:16:\"default_currency\";s:3:\"eur\";s:17:\"details_submitted\";b:1;s:5:\"email\";s:24:\"doriangenisset@gmail.com\";s:17:\"external_accounts\";O:8:\"stdClass\":5:{s:6:\"object\";s:4:\"list\";s:4:\"data\";a:1:{i:0;O:8:\"stdClass\":18:{s:2:\"id\";s:27:\"ba_1NR06gL2rnkpzIzk1kFTrr3L\";s:6:\"object\";s:12:\"bank_account\";s:7:\"account\";s:21:\"acct_1NR06LL2rnkpzIzk\";s:19:\"account_holder_name\";N;s:19:\"account_holder_type\";N;s:12:\"account_type\";N;s:24:\"available_payout_methods\";a:1:{i:0;s:8:\"standard\";}s:9:\"bank_name\";s:13:\"N26 BANK GMBH\";s:7:\"country\";s:2:\"DE\";s:8:\"currency\";s:3:\"eur\";s:20:\"default_for_currency\";b:1;s:11:\"fingerprint\";s:16:\"4YST2gyJyv8fianQ\";s:19:\"future_requirements\";O:8:\"stdClass\":4:{s:13:\"currently_due\";a:0:{}s:6:\"errors\";a:0:{}s:8:\"past_due\";a:0:{}s:20:\"pending_verification\";a:0:{}}s:5:\"last4\";s:4:\"7736\";s:8:\"metadata\";O:8:\"stdClass\":0:{}s:12:\"requirements\";O:8:\"stdClass\":4:{s:13:\"currently_due\";a:0:{}s:6:\"errors\";a:0:{}s:8:\"past_due\";a:0:{}s:20:\"pending_verification\";a:0:{}}s:14:\"routing_number\";s:8:\"NTSBDEB1\";s:6:\"status\";s:7:\"errored\";}}s:8:\"has_more\";b:0;s:11:\"total_count\";i:1;s:3:\"url\";s:52:\"/v1/accounts/acct_1NR06LL2rnkpzIzk/external_accounts\";}s:19:\"future_requirements\";O:8:\"stdClass\":8:{s:12:\"alternatives\";a:0:{}s:16:\"current_deadline\";N;s:13:\"currently_due\";a:0:{}s:15:\"disabled_reason\";N;s:6:\"errors\";a:0:{}s:14:\"eventually_due\";a:0:{}s:8:\"past_due\";a:0:{}s:20:\"pending_verification\";a:0:{}}s:8:\"metadata\";O:8:\"stdClass\":0:{}s:15:\"payouts_enabled\";b:1;s:12:\"requirements\";O:8:\"stdClass\":8:{s:12:\"alternatives\";a:0:{}s:16:\"current_deadline\";N;s:13:\"currently_due\";a:0:{}s:15:\"disabled_reason\";N;s:6:\"errors\";a:0:{}s:14:\"eventually_due\";a:0:{}s:8:\"past_due\";a:0:{}s:20:\"pending_verification\";a:0:{}}s:8:\"settings\";O:8:\"stdClass\":8:{s:19:\"bacs_debit_payments\";O:8:\"stdClass\":2:{s:12:\"display_name\";N;s:19:\"service_user_number\";N;}s:8:\"branding\";O:8:\"stdClass\":4:{s:4:\"icon\";N;s:4:\"logo\";N;s:13:\"primary_color\";N;s:15:\"secondary_color\";N;}s:12:\"card_issuing\";O:8:\"stdClass\":1:{s:14:\"tos_acceptance\";O:8:\"stdClass\":2:{s:4:\"date\";N;s:2:\"ip\";N;}}s:13:\"card_payments\";O:8:\"stdClass\":4:{s:10:\"decline_on\";O:8:\"stdClass\":2:{s:11:\"avs_failure\";b:0;s:11:\"cvc_failure\";b:0;}s:27:\"statement_descriptor_prefix\";s:2:\"TS\";s:32:\"statement_descriptor_prefix_kana\";N;s:33:\"statement_descriptor_prefix_kanji\";N;}s:9:\"dashboard\";O:8:\"stdClass\":2:{s:12:\"display_name\";s:12:\"Teng Shop SE\";s:8:\"timezone\";s:7:\"Etc/UTC\";}s:8:\"payments\";O:8:\"stdClass\":3:{s:20:\"statement_descriptor\";s:9:\"TENG SHOP\";s:25:\"statement_descriptor_kana\";N;s:26:\"statement_descriptor_kanji\";N;}s:7:\"payouts\";O:8:\"stdClass\":3:{s:23:\"debit_negative_balances\";b:1;s:8:\"schedule\";O:8:\"stdClass\":2:{s:10:\"delay_days\";i:7;s:8:\"interval\";s:5:\"daily\";}s:20:\"statement_descriptor\";N;}s:19:\"sepa_debit_payments\";O:8:\"stdClass\":0:{}}s:14:\"tos_acceptance\";O:8:\"stdClass\":1:{s:4:\"date\";i:1688680424;}s:4:\"type\";s:8:\"standard\";}','no'),(303227,'_transient_timeout_wpr_dynamic_lists_incompatible_plugins','1706485087','no'),(303228,'_transient_wpr_dynamic_lists_incompatible_plugins','O:8:\"stdClass\":6:{s:0:\"\";a:35:{i:0;O:8:\"stdClass\":2:{s:4:\"slug\";s:14:\"wp-super-cache\";s:4:\"file\";s:27:\"wp-super-cache/wp-cache.php\";}i:1;O:8:\"stdClass\":2:{s:4:\"slug\";s:23:\"enable-gzip-compression\";s:4:\"file\";s:51:\"enable-gzip-compression/enable-gzip-compression.php\";}i:2;O:8:\"stdClass\":2:{s:4:\"slug\";s:11:\"quick-cache\";s:4:\"file\";s:27:\"quick-cache/quick-cache.php\";}i:3;O:8:\"stdClass\":2:{s:4:\"slug\";s:31:\"leverage-browser-caching-ninjas\";s:4:\"file\";s:66:\"leverage-browser-caching-ninjas/leverage-browser-caching-ninja.php\";}i:4;O:8:\"stdClass\":2:{s:4:\"slug\";s:28:\"wp-performance-score-booster\";s:4:\"file\";s:61:\"wp-performance-score-booster/wp-performance-score-booster.php\";}i:5;O:8:\"stdClass\":2:{s:4:\"slug\";s:15:\"litespeed-cache\";s:4:\"file\";s:35:\"litespeed-cache/litespeed-cache.php\";}i:6;O:8:\"stdClass\":2:{s:4:\"slug\";s:42:\"remove-query-strings-from-static-resources\";s:4:\"file\";s:67:\"remove-query-strings-from-static-resources/remove-query-strings.php\";}i:7;O:8:\"stdClass\":2:{s:4:\"slug\";s:19:\"wp-http-compression\";s:4:\"file\";s:43:\"wp-http-compression/wp-http-compression.php\";}i:8;O:8:\"stdClass\":2:{s:4:\"slug\";s:21:\"query-strings-remover\";s:4:\"file\";s:47:\"query-strings-remover/query-strings-remover.php\";}i:9;O:8:\"stdClass\":2:{s:4:\"slug\";s:13:\"page-optimize\";s:4:\"file\";s:31:\"page-optimize/page-optimize.php\";}i:10;O:8:\"stdClass\":2:{s:4:\"slug\";s:18:\"speed-booster-pack\";s:4:\"file\";s:41:\"speed-booster-pack/speed-booster-pack.php\";}i:11;O:8:\"stdClass\":2:{s:4:\"slug\";s:17:\"swift-performance\";s:4:\"file\";s:33:\"swift-performance/performance.php\";}i:12;O:8:\"stdClass\":2:{s:4:\"slug\";s:28:\"gzip-ninja-speed-compression\";s:4:\"file\";s:49:\"gzip-ninja-speed-compression/gzip-ninja-speed.php\";}i:13;O:8:\"stdClass\":2:{s:4:\"slug\";s:18:\"super-static-cache\";s:4:\"file\";s:41:\"super-static-cache/super-static-cache.php\";}i:14;O:8:\"stdClass\":2:{s:4:\"slug\";s:10:\"lite-cache\";s:4:\"file\";s:21:\"lite-cache/plugin.php\";}i:15;O:8:\"stdClass\":2:{s:4:\"slug\";s:11:\"hyper-cache\";s:4:\"file\";s:22:\"hyper-cache/plugin.php\";}i:16;O:8:\"stdClass\":2:{s:4:\"slug\";s:7:\"wp-ffpc\";s:4:\"file\";s:19:\"wp-ffpc/wp-ffpc.php\";}i:17;O:8:\"stdClass\":2:{s:4:\"slug\";s:13:\"wp-fast-cache\";s:4:\"file\";s:31:\"wp-fast-cache/wp-fast-cache.php\";}i:18;O:8:\"stdClass\":2:{s:4:\"slug\";s:19:\"psn-pagespeed-ninja\";s:4:\"file\";s:38:\"psn-pagespeed-ninja/pagespeedninja.php\";}i:19;O:8:\"stdClass\":2:{s:4:\"slug\";s:22:\"swift-performance-lite\";s:4:\"file\";s:38:\"swift-performance-lite/performance.php\";}i:20;O:8:\"stdClass\":2:{s:4:\"slug\";s:10:\"force-gzip\";s:4:\"file\";s:25:\"force-gzip/force-gzip.php\";}i:21;O:8:\"stdClass\":2:{s:4:\"slug\";s:19:\"add-expires-headers\";s:4:\"file\";s:43:\"add-expires-headers/add-expires-headers.php\";}i:22;O:8:\"stdClass\":2:{s:4:\"slug\";s:20:\"hyper-cache-extended\";s:4:\"file\";s:31:\"hyper-cache-extended/plugin.php\";}i:23;O:8:\"stdClass\":2:{s:4:\"slug\";s:11:\"gator-cache\";s:4:\"file\";s:27:\"gator-cache/gator-cache.php\";}i:24;O:8:\"stdClass\":2:{s:4:\"slug\";s:10:\"flexicache\";s:4:\"file\";s:24:\"flexicache/wp-plugin.php\";}i:25;O:8:\"stdClass\":2:{s:4:\"slug\";s:16:\"wp-fastest-cache\";s:4:\"file\";s:35:\"wp-fastest-cache/wpFastestCache.php\";}i:26;O:8:\"stdClass\":2:{s:4:\"slug\";s:26:\"wordpress-gzip-compression\";s:4:\"file\";s:35:\"wordpress-gzip-compression/ezgz.php\";}i:27;O:8:\"stdClass\":2:{s:4:\"slug\";s:11:\"wp-optimize\";s:4:\"file\";s:27:\"wp-optimize/wp-optimize.php\";}i:28;O:8:\"stdClass\":2:{s:4:\"slug\";s:33:\"check-and-enable-gzip-compression\";s:4:\"file\";s:54:\"check-and-enable-gzip-compression/richards-toolbox.php\";}i:29;O:8:\"stdClass\":2:{s:4:\"slug\";s:24:\"far-future-expiry-header\";s:4:\"file\";s:50:\"far-future-expiry-header/far-future-expiration.php\";}i:30;O:8:\"stdClass\":2:{s:4:\"slug\";s:24:\"leverage-browser-caching\";s:4:\"file\";s:53:\"leverage-browser-caching/leverage-browser-caching.php\";}i:31;O:8:\"stdClass\":2:{s:4:\"slug\";s:12:\"wpcompressor\";s:4:\"file\";s:29:\"wpcompressor/wpcompressor.php\";}i:32;O:8:\"stdClass\":2:{s:4:\"slug\";s:11:\"combine-css\";s:4:\"file\";s:27:\"combine-css/combine-css.php\";}i:33;O:8:\"stdClass\":2:{s:4:\"slug\";s:14:\"w3-total-cache\";s:4:\"file\";s:33:\"w3-total-cache/w3-total-cache.php\";}i:34;O:8:\"stdClass\":2:{s:4:\"slug\";s:13:\"cache-enabler\";s:4:\"file\";s:31:\"cache-enabler/cache-enabler.php\";}}s:21:\"minify_css||minify_js\";a:9:{i:0;O:8:\"stdClass\":2:{s:4:\"slug\";s:20:\"merge-minify-refresh\";s:4:\"file\";s:45:\"merge-minify-refresh/merge-minify-refresh.php\";}i:1;O:8:\"stdClass\":2:{s:4:\"slug\";s:16:\"async-js-and-css\";s:4:\"file\";s:34:\"async-js-and-css/asyncJSandCSS.php\";}i:2;O:8:\"stdClass\":2:{s:4:\"slug\";s:15:\"wp-super-minify\";s:4:\"file\";s:35:\"wp-super-minify/wp-super-minify.php\";}i:3;O:8:\"stdClass\":2:{s:4:\"slug\";s:20:\"fast-velocity-minify\";s:4:\"file\";s:28:\"fast-velocity-minify/fvm.php\";}i:4;O:8:\"stdClass\":2:{s:4:\"slug\";s:23:\"dependency-minification\";s:4:\"file\";s:51:\"dependency-minification/dependency-minification.php\";}i:5;O:8:\"stdClass\":2:{s:4:\"slug\";s:10:\"bwp-minify\";s:4:\"file\";s:25:\"bwp-minify/bwp-minify.php\";}i:6;O:8:\"stdClass\":2:{s:4:\"slug\";s:8:\"minqueue\";s:4:\"file\";s:19:\"minqueue/plugin.php\";}i:7;O:8:\"stdClass\":2:{s:4:\"slug\";s:12:\"scripts-gzip\";s:4:\"file\";s:29:\"scripts-gzip/scripts_gzip.php\";}i:8;O:8:\"stdClass\":2:{s:4:\"slug\";s:9:\"wp-minify\";s:4:\"file\";s:23:\"wp-minify/wp-minify.php\";}}s:8:\"lazyload\";a:6:{i:0;O:8:\"stdClass\":2:{s:4:\"slug\";s:9:\"lazy-load\";s:4:\"file\";s:23:\"lazy-load/lazy-load.php\";}i:1;O:8:\"stdClass\":2:{s:4:\"slug\";s:12:\"bj-lazy-load\";s:4:\"file\";s:29:\"bj-lazy-load/bj-lazy-load.php\";}i:2;O:8:\"stdClass\":2:{s:4:\"slug\";s:25:\"jquery-image-lazy-loading\";s:4:\"file\";s:46:\"jquery-image-lazy-loading/jq_img_lazy_load.php\";}i:3;O:8:\"stdClass\":2:{s:4:\"slug\";s:10:\"crazy-lazy\";s:4:\"file\";s:25:\"crazy-lazy/crazy-lazy.php\";}i:4;O:8:\"stdClass\":2:{s:4:\"slug\";s:24:\"specify-image-dimensions\";s:4:\"file\";s:53:\"specify-image-dimensions/specify-image-dimensions.php\";}i:5;O:8:\"stdClass\":2:{s:4:\"slug\";s:18:\"advanced-lazy-load\";s:4:\"file\";s:40:\"advanced-lazy-load/advanced_lazyload.php\";}}s:9:\"minify_js\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"slug\";s:5:\"wp-js\";s:4:\"file\";s:15:\"wp-js/wp-js.php\";}i:1;O:8:\"stdClass\":2:{s:4:\"slug\";s:20:\"scripts-to-footerphp\";s:4:\"file\";s:42:\"scripts-to-footerphp/scripts-to-footer.php\";}i:2;O:8:\"stdClass\":2:{s:4:\"slug\";s:10:\"combine-js\";s:4:\"file\";s:25:\"combine-js/combine-js.php\";}i:3;O:8:\"stdClass\":2:{s:4:\"slug\";s:17:\"footer-javascript\";s:4:\"file\";s:39:\"footer-javascript/footer-javascript.php\";}}s:17:\"control_heartbeat\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"slug\";s:17:\"heartbeat-control\";s:4:\"file\";s:39:\"heartbeat-control/heartbeat-control.php\";}}s:16:\"lazyload_iframes\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"slug\";s:20:\"lazy-load-for-videos\";s:4:\"file\";s:37:\"lazy-load-for-videos/codeispoetry.php\";}}}','no'),(303229,'_transient_timeout_wc_report_orders_stats_8b12bc282d6fa18d361ffe243b711b60','1706485100','no'),(303230,'_transient_wc_report_orders_stats_8b12bc282d6fa18d361ffe243b711b60','a:2:{s:7:\"version\";s:10:\"1688580509\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"products\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:4:{i:0;a:6:{s:8:\"interval\";s:7:\"2024-04\";s:10:\"date_start\";s:19:\"2024-01-22 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-01-21 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-22 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-22 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2024-03\";s:10:\"date_start\";s:19:\"2024-01-15 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-01-14 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-21 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-21 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:7:\"2024-02\";s:10:\"date_start\";s:19:\"2024-01-08 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-01-07 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-14 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-14 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:7:\"2024-01\";s:10:\"date_start\";s:19:\"2024-01-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-12-31 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-07 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-07 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:4;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no'),(303231,'_transient_timeout_wc_report_orders_stats_e09ebe8505d058863fccae5c07951193','1706485100','no'),(303232,'_transient_wc_report_orders_stats_e09ebe8505d058863fccae5c07951193','a:2:{s:7:\"version\";s:10:\"1688580509\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"products\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:4:{i:0;a:6:{s:8:\"interval\";s:7:\"2024-04\";s:10:\"date_start\";s:19:\"2024-01-22 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-01-21 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-22 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-22 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2024-03\";s:10:\"date_start\";s:19:\"2024-01-15 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-01-14 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-21 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-21 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:7:\"2024-02\";s:10:\"date_start\";s:19:\"2024-01-08 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-01-07 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-14 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-14 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:7:\"2024-01\";s:10:\"date_start\";s:19:\"2024-01-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-12-31 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-07 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-07 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:4;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no'),(303233,'_transient_timeout_wc_report_products_stats_1c3a948fbe08bdb7a9a1b56ef68fa0fd','1706485100','no'),(303234,'_transient_wc_report_products_stats_1c3a948fbe08bdb7a9a1b56ef68fa0fd','a:2:{s:7:\"version\";s:10:\"1688580509\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:4:{i:0;a:6:{s:8:\"interval\";s:7:\"2024-04\";s:10:\"date_start\";s:19:\"2024-01-22 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-01-21 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-22 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-22 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2024-03\";s:10:\"date_start\";s:19:\"2024-01-15 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-01-14 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-21 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-21 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:7:\"2024-02\";s:10:\"date_start\";s:19:\"2024-01-08 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-01-07 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-14 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-14 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:7:\"2024-01\";s:10:\"date_start\";s:19:\"2024-01-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-12-31 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-07 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-07 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:4;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no'),(303235,'_transient_timeout_wc_report_variations_stats_57a3073c896c6eb49212b9df3eb82150','1706485100','no'),(303236,'_transient_wc_report_variations_stats_57a3073c896c6eb49212b9df3eb82150','a:2:{s:7:\"version\";s:10:\"1688580509\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:4:{i:0;a:6:{s:8:\"interval\";s:7:\"2024-04\";s:10:\"date_start\";s:19:\"2024-01-22 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-01-21 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-22 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-22 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2024-03\";s:10:\"date_start\";s:19:\"2024-01-15 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-01-14 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-21 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-21 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:7:\"2024-02\";s:10:\"date_start\";s:19:\"2024-01-08 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-01-07 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-14 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-14 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:7:\"2024-01\";s:10:\"date_start\";s:19:\"2024-01-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-12-31 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-07 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-07 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:4;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no'),(303237,'_transient_timeout_wc_report_orders_stats_87e627dd106522221f52e8464a8d45f6','1706485100','no'),(303238,'_transient_wc_report_orders_stats_87e627dd106522221f52e8464a8d45f6','a:2:{s:7:\"version\";s:10:\"1688580509\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":4:{s:11:\"net_revenue\";d:0;s:8:\"products\";i:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:22:{i:0;a:6:{s:8:\"interval\";s:10:\"2024-01-01\";s:10:\"date_start\";s:19:\"2024-01-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-12-31 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-01 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:10:\"2024-01-02\";s:10:\"date_start\";s:19:\"2024-01-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-01-01 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-02 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-02 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:10:\"2024-01-03\";s:10:\"date_start\";s:19:\"2024-01-03 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-01-02 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-03 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-03 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:10:\"2024-01-04\";s:10:\"date_start\";s:19:\"2024-01-04 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-01-03 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-04 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-04 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:4;a:6:{s:8:\"interval\";s:10:\"2024-01-05\";s:10:\"date_start\";s:19:\"2024-01-05 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-01-04 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-05 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-05 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:5;a:6:{s:8:\"interval\";s:10:\"2024-01-06\";s:10:\"date_start\";s:19:\"2024-01-06 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-01-05 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-06 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-06 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:6;a:6:{s:8:\"interval\";s:10:\"2024-01-07\";s:10:\"date_start\";s:19:\"2024-01-07 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-01-06 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-07 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-07 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:7;a:6:{s:8:\"interval\";s:10:\"2024-01-08\";s:10:\"date_start\";s:19:\"2024-01-08 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-01-07 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-08 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:8;a:6:{s:8:\"interval\";s:10:\"2024-01-09\";s:10:\"date_start\";s:19:\"2024-01-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-01-08 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-09 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-09 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:9;a:6:{s:8:\"interval\";s:10:\"2024-01-10\";s:10:\"date_start\";s:19:\"2024-01-10 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-01-09 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-10 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-10 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:10;a:6:{s:8:\"interval\";s:10:\"2024-01-11\";s:10:\"date_start\";s:19:\"2024-01-11 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-01-10 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-11 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-11 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:11;a:6:{s:8:\"interval\";s:10:\"2024-01-12\";s:10:\"date_start\";s:19:\"2024-01-12 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-01-11 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-12 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-12 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:12;a:6:{s:8:\"interval\";s:10:\"2024-01-13\";s:10:\"date_start\";s:19:\"2024-01-13 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-01-12 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-13 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-13 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:13;a:6:{s:8:\"interval\";s:10:\"2024-01-14\";s:10:\"date_start\";s:19:\"2024-01-14 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-01-13 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-14 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-14 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:14;a:6:{s:8:\"interval\";s:10:\"2024-01-15\";s:10:\"date_start\";s:19:\"2024-01-15 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-01-14 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-15 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-15 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:15;a:6:{s:8:\"interval\";s:10:\"2024-01-16\";s:10:\"date_start\";s:19:\"2024-01-16 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-01-15 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-16 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-16 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:16;a:6:{s:8:\"interval\";s:10:\"2024-01-17\";s:10:\"date_start\";s:19:\"2024-01-17 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-01-16 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-17 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-17 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:17;a:6:{s:8:\"interval\";s:10:\"2024-01-18\";s:10:\"date_start\";s:19:\"2024-01-18 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-01-17 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-18 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-18 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:18;a:6:{s:8:\"interval\";s:10:\"2024-01-19\";s:10:\"date_start\";s:19:\"2024-01-19 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-01-18 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-19 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-19 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:19;a:6:{s:8:\"interval\";s:10:\"2024-01-20\";s:10:\"date_start\";s:19:\"2024-01-20 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-01-19 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-20 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-20 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:20;a:6:{s:8:\"interval\";s:10:\"2024-01-21\";s:10:\"date_start\";s:19:\"2024-01-21 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-01-20 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-21 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-21 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:21;a:6:{s:8:\"interval\";s:10:\"2024-01-22\";s:10:\"date_start\";s:19:\"2024-01-22 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-01-21 23:00:00\";s:8:\"date_end\";s:19:\"2024-01-22 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-01-22 22:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:22;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no'),(303239,'_site_transient_timeout_community-events-2a05e03e9d5ee7be5d1f51fc256572c9','1705923522','no'),(303240,'_site_transient_community-events-2a05e03e9d5ee7be5d1f51fc256572c9','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:13:\"189.203.148.0\";}s:6:\"events\";a:0:{}}','no'),(303241,'_transient_timeout_rank_math_feed_posts_v2','1705923522','no'),(303242,'_transient_rank_math_feed_posts_v2','a:4:{i:0;a:5:{s:5:\"title\";a:1:{s:8:\"rendered\";s:51:\"Content AI 2.0: Introducing AI SEO Inside WordPress\";}s:4:\"date\";s:19:\"2024-01-21 21:45:27\";s:4:\"link\";s:62:\"https://rankmath.com/blog/introducing-supercharged-content-ai/\";s:12:\"custom_label\";s:0:\"\";s:9:\"condition\";s:0:\"\";}i:1;a:3:{s:5:\"title\";a:1:{s:8:\"rendered\";s:37:\"How to Embed Google Maps in WordPress\";}s:4:\"date\";s:19:\"2024-01-19 18:25:27\";s:4:\"link\";s:44:\"https://rankmath.com/blog/embed-google-maps/\";}i:2;a:3:{s:5:\"title\";a:1:{s:8:\"rendered\";s:50:\"How to Perform Content Audit: A Step-by-Step Guide\";}s:4:\"date\";s:19:\"2024-01-18 18:13:36\";s:4:\"link\";s:40:\"https://rankmath.com/blog/content-audit/\";}i:3;a:3:{s:5:\"title\";a:1:{s:8:\"rendered\";s:47:\"Hreflang Tags: The Complete Guide for Beginners\";}s:4:\"date\";s:19:\"2024-01-17 18:16:32\";s:4:\"link\";s:40:\"https://rankmath.com/blog/hreflang-tags/\";}}','no'),(303243,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1705923524','no'),(303244,'_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:52:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\n \n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"The latest news about WordPress and the WordPress community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 12 Jan 2024 16:58:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=6.5-alpha-57310\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"image\";a:1:{i:0;a:6:{s:4:\"data\";s:11:\"\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:3:\"url\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://s.w.org/favicon.ico?2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"width\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"height\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:57:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"Data Liberation in 2024\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/news/2024/01/data-liberation-in-2024/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 12 Jan 2024 16:58:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=16736\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:314:\"Imagine a more open web where people can switch between any platform of their choosing. A web where being locked into a system is a thing of the past. This is the web I’ve always wanted to see. That’s why I announced a new initiative called Data Liberation for 2024. Migrating your site to WordPress, [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2885:\"\n<p>Imagine a more open web where people can switch between any platform of their choosing. A web where being locked into a system is a thing of the past. This is the web I’ve always wanted to see. That’s why I announced a new initiative called <a href=\"https://wordpress.org/data-liberation/\" target=\"_blank\" rel=\"noreferrer noopener\">Data Liberation</a> for 2024. Migrating your site to WordPress, or exporting all your content from WordPress, should be possible in one click. I want WordPress’ export format to become the lingua franca of CMSes, whether coming to WordPress or moving within WordPress. </p>\n\n\n\n<p>I often hear about folks across the WordPress community duplicating efforts when creating scripts and workflows to move users to WordPress. Imagine if we shared those resources instead and built community-owned plugins that anyone could use! </p>\n\n\n\n<p>But it should be more than plugins; workflows, tutorials, and helper scripts should be shared, too. I want this resource to have space to include moving from social networks, moving from a page builder to core blocks, switching from classic to blocks, and improving WordPress current canonical plugins for importing. </p>\n\n\n\n<h2 class=\"wp-block-heading\">You can help!</h2>\n\n\n\n<p>Of course, the heart of any open source project is the community that shows up to build it. My hope is that this marks the start of a new contribution pathway, separate from core teams, that allows folks to contribute what they’ve learned and what they’ve created to help others move to WordPress. I expect this emphasis on migration will also influence future development, both in core and with recommended community or canonical plugins.</p>\n\n\n\n<p>There are a few things that I think will be key to making this project a success:</p>\n\n\n\n<ul>\n<li>A dedicated landing page on WordPress.org following a WordPress.org/and/[platform-name] format.</li>\n\n\n\n<li>A forum used for non-review user feedback and general discussion.</li>\n\n\n\n<li>A dedicated Slack channel.</li>\n\n\n\n<li>Moderation within hours rather than days.</li>\n\n\n\n<li>Listed on <a href=\"https://github.com/WordPress\">WordPress GitHub</a> with syncing for individual commits to SVN for history in both places.</li>\n</ul>\n\n\n\n<p>By complementing the community’s existing efforts—the <a href=\"https://wordpress.org/five-for-the-future/\">Five for the Future program</a>, the <a href=\"https://learn.wordpress.org/\">Learn WordPress initiative</a>, a focus on internationalization, etc.—my hope is that this will help even more people see themselves in the WordPress project, providing fresh momentum for <a href=\"https://events.wordpress.org/\">WordCamps and meetups</a>. </p>\n\n\n\n<p>It’s never been more crucial to champion openness on the web. Bringing focused attention to improved portability will untether users and increase their freedom like never before.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"16736\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:61:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"WP Briefing: Episode 70: A Look Ahead at WordPress in 2024\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://wordpress.org/news/2024/01/episode-70-a-look-ahead-at-wordpress-in-2024/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 08 Jan 2024 13:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=16677\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:264:\"Curious about WordPress\'s big-picture items for 2024? Phase 3, Data Liberation, new meetups, and more, get the spotlight in this episode. Join Executive Director Josepha Haden Chomphosy for all this, plus a small list of big things coming up in the next two weeks.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:50:\"https://wordpress.org/news/files/2024/01/WP070.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:8342:\"\n<p>Curious about WordPress&#8217;s big-picture items for 2024? Phase 3, Data Liberation, new meetups, and more, get the spotlight in this episode. Join Executive Director Josepha Haden Chomphosy for all this, plus a small list of big things coming up in the next two weeks.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Host:&nbsp;<a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a><br>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production:&nbsp;<a href=\"https://profiles.wordpress.org/bjmcsherry/\">Brett McSherry</a><br>Song: Fearless First by Kevin MacLeod</p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/03/real-time-collaboration/\">Real-Time Collaboration</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/\">Make WordPress Core</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/data-liberation/\">Data Liberation</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/plugins/\">Make WordPress Plugins</a></li>\n\n\n\n<li><a href=\"https://events.wordpress.org/\">WordCamp Events</a></li>\n\n\n\n<li><strong>Small List of Big Things</strong>\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/12/12/overflow-questions-from-state-of-the-word-2023/\">Overflow Questions from State of the Word 2023 in Madrid, Spain</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/11/17/announcing-the-2023-annual-meetup-survey/\" target=\"_blank\" rel=\"noreferrer noopener\">Annual Meetup Survey</a>&nbsp;&#8211; This is the final chance to share your feedback on WordPress meetups for 2024 and how we can improve the program in the future.&nbsp;</li>\n</ul>\n</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Transcripts</h2>\n\n\n\n<span id=\"more-16677\"></span>\n\n\n\n<p>[00:00:00] <strong>Josepha:</strong> Hello, everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go.&nbsp;</p>\n\n\n\n<p>[00:00:28] (Intro music)&nbsp;</p>\n\n\n\n<p>[00:00:40] <strong>Josepha:</strong> Hello, my dears, and welcome to 2024. I hope you&#8217;ve had a lovely break. At the top of the year, I like to look around and gather the projects that the community is interested in. We can&#8217;t always commit to everything, and sometimes even the things we plan to do can&#8217;t make it across the finish line. In the next few weeks, I&#8217;ll be publishing kind of the big picture goals for the year, but I wanted to share a little bit about what I&#8217;ve collected so far.</p>\n\n\n\n<p>[00:01:05] <strong>Josepha:</strong> Firstly, we&#8217;ve got Phase 3. This has been called a few things over the years: collaborative editing, multiplayer, co-editing. But whatever it&#8217;s been called, the biggest changes to writing and design workflows are likely to happen in this phase. A redesigned workflow can be a bit of a shock. But fortunately, we already have a prototype out there.</p>\n\n\n\n<p>I&#8217;ll include a link to some resources in the show notes, or of course, you can always stop by make.WordPress.org/core for some insights. But I would encourage you to, at the very least, get your hands on that prototype to see what it looks like is coming in Phase 3 so that you can be aware and provide your feedback.</p>\n\n\n\n<p>The next thing on our list is Data Liberation. This is a new-to-us project that was introduced at State of the Word. Fortunately, though, it&#8217;s not a new concept overall. Data Liberation is actually one of the earliest ideas that sold me on WordPress. The idea that you could set up a site for a client, or yourself, and that hard work wasn&#8217;t lost if something went wrong, was really important to me. It&#8217;s been a long time since we put any effort into our importers and exporters, and I think this will be a good focus for the year.</p>\n\n\n\n<p>[00:02:14] <strong>Josepha:</strong> The next thing that I&#8217;ve picked up, kind of a list of three things, but there are three mid-sized areas that I want us to pay attention to this year: plugins, old tickets, and new meetups.&nbsp;</p>\n\n\n\n<p>Plugins, because they really have turned a corner on where they ended 2023. A lot of work has been done to make sure that they&#8217;ve streamlined some efforts, gotten some better onboarding for folks as they&#8217;re going in, and we could really use a hand to keep that momentum going.</p>\n\n\n\n<p>Old tickets, because it&#8217;s something that we hope for year after year when we&#8217;re talking to people about what they want in new releases. So often, part of what they say is some way to work through all of these old things that have been around forever, some with patches. And why not, after all?</p>\n\n\n\n<p>And then new meetups, because I really still think that meetups are the best intro to WordPress. No matter whether you&#8217;re wanting to become a developer eventually or, like, the community-building aspect is the thing that hooks you forever. Meetups are the place to encourage those and discover those.&nbsp;</p>\n\n\n\n<p>[00:03:20] <strong>Josepha:</strong> The next thing on my list is also two things. It&#8217;s two things, but kind of a guess at the moment. There are two summit items that I want us to try to consider this year.</p>\n\n\n\n<p>So the first one is contributor recognition. Acknowledgment and recognition, I think, are two different things, and there was an entire series of sessions at the summit where we talked about it. And so I think that it&#8217;s worth us digging in on that.</p>\n\n\n\n<p>The other thing from the summit that I would really like us to all kind of dig in on is accessibility, how we do it, how we confirm it, what we think we should do versus what we actually do, and see what we can move on the needle there.</p>\n\n\n\n<p>And the last thing is sort of a personal wish. I think it&#8217;s about time that we take a look at the way that we kind of manage ourselves as a project, the way that we do our meetings and report on our successes, things like that. And I realize that this is a big thing, and it might be a little bit scary. But, I mean, we&#8217;ve been doing this for a really long time, and it&#8217;s probably as good a time as any, frankly, to look at what we&#8217;re doing by habit or tradition and see if it still suits us.</p>\n\n\n\n<p>So, that&#8217;s my back of the napkin set of notes so far. Keep an eye out in the next couple of weeks for the annual Big Picture post so you can get some context, notes, and discussion opportunities. And, of course, anything that has shown up that&#8217;s a bit bigger, a bit more final will be in there as well.&nbsp;</p>\n\n\n\n<p>But first, our small list of big things. </p>\n\n\n\n<p>[00:04:52] (Music interlude)&nbsp;</p>\n\n\n\n<p>[00:05:00] <strong>Josepha:</strong> Firstly, State of the Word had nearly 200 questions submitted, and Matt has been answering the overflow on make.WordPress.org/project. So, I&#8217;ll include a link, but head on over there to that post if you would like to catch up on those.</p>\n\n\n\n<p>And then the second item, and last item, is that you&#8217;ve got a few more days left to give us feedback on WordPress meetups in 2023, and give us an idea of what we can do to improve those. I believe those close on January 14th. I really love my local meetup, and I hope that we can get some of that same sort of feeling going in all of yours, too.</p>\n\n\n\n<p>[00:05:33] <strong>Josepha:</strong> And that, my friends, is your small list of big things. Don&#8217;t forget to follow us on your favorite podcast app or subscribe directly on WordPress.org/news. You&#8217;ll get a friendly reminder whenever there&#8217;s a new episode. If you liked what you heard today, share it with a fellow WordPresser, or if you had questions about what you heard, you can share those with me at wpbriefing@WordPress.org.</p>\n\n\n\n<p>I&#8217;m your host, Josepha Haden Chomphosy. Thanks again for tuning in for the WordPress Briefing, and I&#8217;ll see you again in a couple of weeks.&nbsp;</p>\n\n\n\n<p>[00:06:02] (Music outro)&nbsp;</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"16677\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"The Month in WordPress – December 2023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/news/2024/01/the-month-in-wordpress-december-2023/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 05 Jan 2024 10:10:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:18:\"month in wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=16680\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:331:\"As 2023 came to a close, WordPress bid farewell with the much-anticipated annual State of the Word and the 6.5 roadmap, among other exciting updates. Read on to learn more about the community’s end-of-year celebrations and catch a sneak peek of what’s in store for the year ahead. Highlights from State of the Word On [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Reyes Martínez\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:11236:\"\n<p>As 2023 came to a close, WordPress bid farewell with the much-anticipated annual State of the Word and the 6.5 roadmap, among other exciting updates.</p>\n\n\n\n<p>Read on to learn more about the community’s end-of-year celebrations and catch a sneak peek of what’s in store for the year ahead.</p>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Highlights from State of the Word</h2>\n\n\n\n<p>On December 11, WordPress co-founder Matt Mullenweg delivered his annual <strong><a href=\"https://wordpress.org/state-of-the-word/\">State of the Word</a> keynote in Madrid, Spain</strong>, marking the first international edition of the event. Nearly 200 WordPress enthusiasts and tech industry leaders gathered in person to hear what’s next for WordPress—with a large audience joining online or from one of the 47 watch parties held across 18 countries.</p>\n\n\n\n<p>The keynote <a href=\"https://wordpress.org/news/2023/12/state-of-the-word-2023-recap/\">highlighted</a> last year’s milestones and showcased compelling demos, providing a glimpse into the upcoming developments for the Site Editor, Collaboration phase, and Admin redesign. Matt also introduced 2024’s focus on <a href=\"https://wordpress.org/data-liberation/\">Data Liberation</a>, aiming to unlock digital barriers and frictionless migrations into WordPress for a more open web.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/c7M4mBVgP3Y?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox\"></iframe>\n</div></figure>\n\n\n\n<p>The event concluded with a <a href=\"https://www.youtube.com/watch?v=S01uBD2pyQY\">Q&amp;A session</a> and <a href=\"https://make.wordpress.org/project/2023/12/12/overflow-questions-from-state-of-the-word-2023/\">this follow-up post</a>.</p>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Roadmap to WordPress 6.5</h2>\n\n\n\n<p>WordPress 6.5 is <a href=\"https://make.wordpress.org/core/6-5/\">scheduled</a> for release on <strong>March 26, 2024</strong>. This major release is set to introduce a new Font Library for easy global font management, support for Appearance Tools in Classic Themes, Data Views for templates and patterns, and more robust revisions across the editing experience, among other highlights.</p>\n\n\n\n<p>6.5 will also include new APIs like Interactivity, Custom Fields, and Block Binding that expand block capabilities and underpin features like Synced Pattern Overrides.</p>\n\n\n\n<p>Learn more about the features planned for WordPress 6.5 in <a href=\"https://make.wordpress.org/core/2023/12/07/roadmap-to-6-5/\">this roadmap post</a>.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Don’t wait for the next release to optimize your creative workflows with <a href=\"https://wordpress.org/news/2023/12/leap-into-2024-with-these-site-editor-tools/\">these powerful Site Editor tools</a>.</p>\n</blockquote>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">New in the Gutenberg plugin</h2>\n\n\n\n<p>Two new versions of Gutenberg shipped in December:</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/12/06/whats-new-in-gutenberg-17-2-6-december/\"><strong>Gutenberg 17.2</strong></a> introduced improvements to the site editing experience, including the ability to drag and drop blocks to the top and bottom of documents and sticky table headers. The update also enhanced the Interactivity API docs and addressed numerous bug fixes.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/12/20/whats-new-in-gutenberg-17-3-20-december/\"><strong>Gutenberg 17.3</strong></a> featured a summary of changes in the global styles revision history, an updated preferences panel, and a new social icon for the Gravatar service, along with the ongoing development of Phase 3 features.</li>\n</ul>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<a class=\"wp-block-jetpack-podcast-player jetpack-podcast-player__direct-link\" href=\"https://wordpress.org/news/2023/10/episode-64-patterns-in-wordpress/\">https://wordpress.org/news/2023/10/episode-64-patterns-in-wordpress/</a>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Team updates</h2>\n\n\n\n<ul>\n<li>Openverse <a href=\"https://make.wordpress.org/openverse/2023/12/11/introducing-enhanced-content-safety-features-on-openverse/\">introduced new features to filter sensitive content</a>, aiming for a more accessible and safer browsing experience. This update marks the beginning of a significant initiative to enhance content safety tools.</li>\n\n\n\n<li>Matrix contributors <a href=\"https://make.wordpress.org/project/2023/12/12/update-on-matrix-migration-pausing-the-transition/\">announced</a> the decision to pause the Making WordPress Slack migration to Matrix and the factors contributing to it.</li>\n\n\n\n<li>The <a href=\"https://make.wordpress.org/meta/2023/12/15/developer-resources-gets-a-refresh/\">redesign of the Developer Resources section</a> went live last month.</li>\n\n\n\n<li>Are you searching for events in your local community? Explore the recently launched <a href=\"https://make.wordpress.org/community/2023/12/13/announcing-the-new-wordpress-events-page/\">WordPress.org Events page</a>—your new central hub for discovering upcoming events or applying to organize one.</li>\n\n\n\n<li>In 2023, WordPress significantly <a href=\"https://make.wordpress.org/core/2023/12/19/wordpress-performance-impact-on-core-web-vitals-in-2023/\">improved Core Web Vitals (CWV) across sites</a>. The overall passing rates went up from 28.31% to 36.44% on mobile and from 32.55% to 40.80% on desktop, making both WordPress and the whole web perform better.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/12/22/call-to-action-2024-major-releases-call-for-volunteers/\">Volunteers are needed</a> for 2024’s WordPress major releases. If you’re interested, now’s the time to get involved!</li>\n\n\n\n<li>Check out all the community <a href=\"https://make.wordpress.org/project/2023/12/22/wordpress-end-of-year-celebrations/\">achievements and contributions</a> that moved the WordPress project closer to its goals in 2023.</li>\n</ul>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<a class=\"wp-block-jetpack-podcast-player jetpack-podcast-player__direct-link\" href=\"https://wordpress.org/news/2023/10/episode-64-patterns-in-wordpress/\">https://wordpress.org/news/2023/10/episode-64-patterns-in-wordpress/</a>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Requests for feedback &amp; testing</h2>\n\n\n\n<ul>\n<li>Complete the <a href=\"https://make.wordpress.org/community/2023/11/17/announcing-the-2023-annual-meetup-survey/\">2023 Annual Meetup Survey</a> before January 14, 2024, and help strengthen WordPress meetups in the future.</li>\n</ul>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress events</h2>\n\n\n\n<ul>\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1f9-1f1fc.png\" alt=\"🇹🇼\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> WordCamp Asia has opened <a href=\"https://asia.wordcamp.org/2024/contributor-day-registration/\">registrations for its Contributor Day</a>. The conference will be held in Taipei, Taiwan, on March 7-9, 2024.</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ea-1f1fa.png\" alt=\"🇪🇺\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> WordCamp Europe’s <a href=\"https://europe.wordcamp.org/2024/speakers/call-for-speakers/\">call for speakers</a> is open until January 15, 2024. Don’t miss the chance to be part of this event by either submitting your speaking proposals or <a href=\"https://europe.wordcamp.org/2024/sponsors/call-for-sponsors/\">supporting it as a sponsor</a>.</li>\n\n\n\n<li>Mark your calendars! <a href=\"https://us.wordcamp.org/2024/\">WordCamp US 2024</a> is headed to Portland, Oregon, from September 17 to 20, as revealed during the State of the Word.</li>\n\n\n\n<li>Check out these WordPress events happening soon:\n<ul>\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1f3.png\" alt=\"🇮🇳\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://events.wordpress.org/kolkata/2024/careercamp/\">Kolkata CareerCamp</a>, India on January 6, 2024</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1f3-1f1f5.png\" alt=\"🇳🇵\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://nepal.wordcamp.org/2024/\">WordCamp Nepal</a> on January 12-13, 2024</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ea-1f1f8.png\" alt=\"🇪🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://zaragoza.wordcamp.org/2024/\">WordCamp Zaragoza</a>, Spain on January 19-20, 2024</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1e9.png\" alt=\"🇮🇩\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://events.wordpress.org/jakarta/2024/web-challenge/\">WordPress Web Challenge</a>, Indonesia on January 27, 2024</li>\n</ul>\n</li>\n</ul>\n\n\n\n<div style=\"height:1px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p><em><strong>Have a story we should include in the next issue of The Month in WordPress? Fill out </strong></em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><strong><em>this quick form</em></strong></a><em><strong> to let us know.</strong></em></p>\n\n\n\n<p><em>Thank you to <a href=\"https://profiles.wordpress.org/bernard0omnisend/\">Bernard Meyer</a>, <a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a>, and <a href=\"https://profiles.wordpress.org/laurlittle/\">Lauren Stein</a></em> <em>for contributing to this edition of The Month in WordPress.</em></p>\n\n\n\n<div class=\"wp-block-group is-layout-constrained wp-block-group-is-layout-constrained\">\n<h3 class=\"wp-block-heading\">Subscribe to WordPress News</h3>\n\n\n\n<p>Join other subscribers and receive WordPress news directly in your inbox.</p>\n\n\n<div class=\"wp-block-jetpack-subscriptions__supports-newline is-style-split wp-block-jetpack-subscriptions\">\n		<div>\n			<div>\n				<div>\n					<p >\n						<a href=\"https://wordpress.org/news/?post_type=post&#038;p=16680\" style=\"text-decoration: none; font-size: 16px;padding: 15px 23px 15px 23px;margin: 0px; margin-left: 10px;border-radius: 0px;border-width: 1px; background-color: #113AF5; color: #FFFFFF;\">Subscribe</a>\n					</p>\n				</div>\n			</div>\n		</div>\n	</div></div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"16680\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:75:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n\n\n\n\n\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"Leap into 2024 with these Site Editor Tools\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://wordpress.org/news/2023/12/leap-into-2024-with-these-site-editor-tools/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 28 Dec 2023 18:35:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:6:\"Design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"Features\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:9:\"Gutenberg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:11:\"Site editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=16658\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:297:\"The Site Editor gives you a powerful way to visually create every part of your site and tell your story. It lets you handle everything from big stylistic changes to simple copy updates all in a single place. To help you make the most of this new way to WordPress, here are a few standout [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:6:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:70:\"https://wordpress.org/news/files/2023/12/Command-Palette-news-post.mp4\";s:6:\"length\";s:7:\"5553759\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:70:\"https://wordpress.org/news/files/2023/12/Style-book-news-post-demo.mp4\";s:6:\"length\";s:8:\"30842905\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:75:\"https://wordpress.org/news/files/2023/12/Styling-options-news-post-demo.mp4\";s:6:\"length\";s:8:\"27873396\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:88:\"https://wordpress.org/news/files/2023/12/Distraction-free-and-preview-news-post-demo.mp4\";s:6:\"length\";s:8:\"24659305\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:68:\"https://wordpress.org/news/files/2023/12/Patterns-news-post-demo.mp4\";s:6:\"length\";s:7:\"3617911\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:69:\"https://wordpress.org/news/files/2023/12/List-View-news-post-demo.mp4\";s:6:\"length\";s:7:\"2163970\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"annezazu\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:9352:\"\n<p>The Site Editor gives you a powerful way to visually create every part of your site and tell your story. It lets you handle everything from big stylistic changes to simple copy updates all in a single place. To help you make the most of this new way to WordPress, here are a few standout tools and features you’ll want to try.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">Command Palette</h3>\n\n\n\n<p>Think of the Command Palette as the ultimate shortcut tool, letting you do more with less clicks and without needing to remember where each option might be. It’s available across the editing experience, whether you’re switching between templates in the Site Editor or toggling open settings in the Post Editor, with specific contextual options depending on where you are.<strong> </strong>You can use the keyboard shortcut Cmd+K on Mac or Ctrl+K on Windows to activate it and get started.&nbsp;</p>\n\n\n\n<p>If you think of a command that doesn’t exist yet that would help with your workflow, open a <a href=\"https://github.com/WordPress/gutenberg/issues/new/choose\">feature request issue</a> so we can consider adding it.</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://wordpress.org/news/files/2023/12/Command-Palette-news-post.mp4\"></video></figure>\n\n\n\n<p class=\"is-style-default\"><a href=\"https://make.wordpress.org/core/2023/09/12/core-editor-improvement-commanding-the-command-palette/\"><em>Read more</em></a><em> about everything you can do with the Command Palette, including a </em><a href=\"https://wordpress.org/documentation/article/site-editor-command-palette/#list-of-available-commands\"><em>list of available commands</em></a><em>.&nbsp;</em></p>\n\n\n\n<h3 class=\"wp-block-heading\">Style Book</h3>\n\n\n\n<p>The Style Book helps you see all the blocks on your site as you style them. It’s built into the Styles section and can be toggled on/off as you’d like. This is especially useful when you’re aiming for design consistency for a client, trying to see how a change might impact a block that might not be visible, or wanting to get a different look at how a style variation will switch things up.</p>\n\n\n\n<p>Work is also underway for the next WordPress release to <a href=\"https://github.com/WordPress/gutenberg/pull/56800\">integrate the Style Book into Style revisions</a> to allow for an at-a-glance view of changes made. </p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://wordpress.org/news/files/2023/12/Style-book-news-post-demo.mp4\"></video></figure>\n\n\n\n<p><a href=\"https://learn.wordpress.org/tutorial/how-to-use-the-wordpress-stylebook-with-your-block-theme/\"><em>Learn more</em></a><em> about how best to use the Style Book.</em></p>\n\n\n\n<h3 class=\"wp-block-heading\">Styling shortcuts</h3>\n\n\n\n<p>Sometimes you get a design just right—the color contrast, the perfect padding, the exact font size. Instead of needing to manually recreate the design or copy/paste the block to fill in with new content, you have two powerful options built into the editing experience: copy/paste styles and apply styles globally for all instances of the desired block.&nbsp;</p>\n\n\n\n<p>Copying and pasting styles is perfect for more nuanced and smaller changes, like headings on a landing page that you intentionally want to be distinct. Applying changes globally is best for blocks like buttons and for changes that are likely to work well across layouts, like setting a specific border radius and color. This helps keep the creativity flowing and makes achieving design consistency across your site much easier.</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://wordpress.org/news/files/2023/12/Styling-options-news-post-demo.mp4\"></video></figure>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2023/02/01/core-editor-improvement-strengthening-style-options/\"><em>Read more</em></a><em> about the various styling options available.&nbsp;</em></p>\n\n\n\n<h3 class=\"wp-block-heading\">Distraction free mode</h3>\n\n\n\n<p>Just like an artist might need to take a few steps back to view their in-progress artwork, sometimes we need to get a different view of our site before diving back in. Distraction free offers you that alternate perspective with a pared-down experience that lets you focus purely on creating, like:</p>\n\n\n\n<ul>\n<li>Hiding the top toolbar until one intentionally hovers over where it typically sits.</li>\n\n\n\n<li>Removing many of the top toolbar buttons.</li>\n\n\n\n<li>Automatically closing any open sidebars, like block settings and list view.&nbsp;</li>\n\n\n\n<li>Hiding the insertion point indicator, reducing visual clutter.&nbsp;</li>\n\n\n\n<li>Hiding the block toolbar for individual blocks.</li>\n</ul>\n\n\n\n<p>It’s worth noting that this mode can be used when writing posts and pages too! For an added bonus and more views of your site, you can use the preview options to see how your site might look across different devices.</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://wordpress.org/news/files/2023/12/Distraction-free-and-preview-news-post-demo.mp4\"></video></figure>\n\n\n\n<p><a href=\"https://wordpress.org/documentation/article/distraction-free-mode/\"><em>Learn more</em></a><em> about making the most out of Distraction free mode.&nbsp;</em></p>\n\n\n\n<h3 class=\"wp-block-heading\">Patterns</h3>\n\n\n\n<p>Patterns are a collection of blocks that make it simple to add complex layouts and designs to any WordPress site without starting from scratch. They save time by reducing duplication and ensuring consistency. You can create your own, use theme-provided patterns, or <a href=\"https://wordpress.org/patterns/\">lean on the Pattern Directory</a>.&nbsp;</p>\n\n\n\n<p>You can also specify whether to sync your patterns so that one change applies to all parts of your site, or to keep them unsynced so you can customize each instance. For any patterns you create, you can assign categories to make them easy to find and organize. Use the Inserter with easy filtering options to add patterns to your content, and head to the dedicated Patterns section in the Site Editor to create or edit patterns to your liking.&nbsp;</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://wordpress.org/news/files/2023/12/Patterns-news-post-demo.mp4\"></video></figure>\n\n\n\n<p><a href=\"https://learn.wordpress.org/tutorial/creating-your-own-custom-synced-or-non-synced-patterns/\"><em>Learn more</em></a><em> about creating patterns.&nbsp;</em></p>\n\n\n\n<h3 class=\"wp-block-heading\">List View</h3>\n\n\n\n<p>List View is the go-to tool for navigating between layers of your content, selecting exactly what you need, and getting a sense of how everything fits together. Similar to the Style Book and Distraction free mode, you can toggle it on/off as you’d like. It’s currently visible in the Top Toolbar and will remain open as you navigate through your site. Beyond providing a simple view of the layers of your site, there are more recent additions to List View that makes the tool even more powerful:</p>\n\n\n\n<ul>\n<li>See previews of your images for Image and Gallery blocks reflected in List View to make it easier to find what you need.</li>\n\n\n\n<li>The Escape key deselects blocks to make it easier to purely preview your content without any blocks selected.&nbsp;</li>\n\n\n\n<li>Lean on a keyboard shortcut for duplicating blocks quickly: CMD+Shift+D for Mac or Control + Shift + D for Windows.&nbsp;</li>\n\n\n\n<li>Drag and drop blocks at any level directly within List View.</li>\n\n\n\n<li>Rename Group blocks and have the custom name reflected in List View for improved organization.</li>\n</ul>\n\n\n\n<p>Here’s how a few of these improvements come together:</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://wordpress.org/news/files/2023/12/List-View-news-post-demo.mp4\"></video></figure>\n\n\n\n<p><a href=\"https://wordpress.org/documentation/article/list-view/\"><em>Learn more</em></a><em> about using List View. </em></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>As you explore these tools, remember that, except for the Style Book, you can use these features when writing posts and pages too. Expect the Site Editor and other tools to evolve with each release. To get a sneak peek at what’s planned for the next major WordPress release in March, <a href=\"https://make.wordpress.org/core/2023/12/07/roadmap-to-6-5/\">check out the roadmap</a> and stay tuned. </p>\n\n\n\n<h3 class=\"wp-block-heading\">Subscribe to WordPress News</h3>\n\n\n\n<p>Join other subscribers and receive WordPress news directly in your inbox. </p>\n\n\n<div class=\"wp-block-jetpack-subscriptions__supports-newline wp-block-jetpack-subscriptions\">\n		<div>\n			<div>\n				<div>\n					<p >\n						<a href=\"https://wordpress.org/news/?post_type=post&#038;p=16658\" style=\"text-decoration: none; font-size: 16px;padding: 15px 23px 15px 23px;margin: 0px; margin-left: 10px;border-radius: 0px;border-width: 1px; background-color: #113AF5; color: #FFFFFF;\">Subscribe</a>\n					</p>\n				</div>\n			</div>\n		</div>\n	</div>\n\n\n<p><em>Thank you to the contributors who collaborated on this post: <a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a>, <a href=\"https://profiles.wordpress.org/laurlittle/\">Lauren Stein</a>, <a href=\"https://profiles.wordpress.org/joen/\" data-type=\"link\" data-id=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a></em>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"16658\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:61:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"WP Briefing: Episode 69: Reflections on State of the Word\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://wordpress.org/news/2023/12/episode-69-reflections-on-state-of-the-word/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 26 Dec 2023 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=16654\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:232:\"In this episode, WordPress Executive Director Josepha Haden Chomphosy reflects on the recent 2023 State of the Word, which took place in Madrid, Spain, and some of the highlights of the work across the WordPress open source project.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:51:\"https://wordpress.org/news/files/2023/12/WPB069.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:10686:\"\n<p>In this episode, WordPress Executive Director Josepha Haden Chomphosy reflects on the recent 2023 State of the Word, which took place in Madrid, Spain, and some of the highlights of the work across the WordPress open source project.</p>\n\n\n\n<p><em><strong>Have a question you’d like answered? You can submit them to&nbsp;<a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@WordPress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Host:&nbsp;<a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a><br>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production:&nbsp;<a href=\"https://profiles.wordpress.org/bjmcsherry/\">Brett McSherry</a><br>Song: Fearless First by Kevin MacLeod</p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/12/state-of-the-word-2023-recap/\">State of the Word Recap</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/project/2023/05/17/wordpress-contributor-mentorship-program-pilot-program-proposal/\">WordPress Contributor Mentorship Program: Pilot Program Proposal</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/\">WordPress Developer Blog</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/project/2023/12/22/wordpress-end-of-year-celebrations/\">WordPress End of Year Celebrations!</a></li>\n\n\n\n<li><strong>Small List of Big Things</strong>\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2023/12/11/introducing-enhanced-content-safety-features-on-openverse/\" target=\"_blank\" rel=\"noreferrer noopener\">Introducing Enhanced Content Safety Features on Openverse</a>&nbsp;&#8211; Introducing new features for enhanced content safety on Openverse. </li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/12/alert-wordpress-security-team-impersonation-scams/\" target=\"_blank\" rel=\"noreferrer noopener\">Alert: WordPress Security Team Impersonation Scams</a>.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/plugins/2023/12/02/join-the-plugin-review-team/\" target=\"_blank\" rel=\"noreferrer noopener\">Join the Plugin Review Team!</a> &#8211; The Plugin Review Team is looking for new members; the deadline to apply is on December 31, 2023.</li>\n</ul>\n</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Transcripts</h2>\n\n\n\n<span id=\"more-16654\"></span>\n\n\n\n<p>[00:00:00] <strong>Josepha:</strong> Hello everyone, and welcome to the WordPress Briefing. The podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I’m your host, Josepha Haden Chomphosy. Here we go.</p>\n\n\n\n<p>[00:00:28] (Intro music)&nbsp;</p>\n\n\n\n<p>[00:00:40]&nbsp;<strong>Josepha:</strong> We wrapped up State of the Word earlier this month, and while I was sitting there being the only person to clap for the love of cake, I realized just how much we have been able to accomplish this year. And on the one hand, I shouldn&#8217;t be surprised.</p>\n\n\n\n<p>After all, progress is radical over time yet incremental in time. But all told, 2023 has been a big year for WordPress. There&#8217;s been some radical progress in a few places. There are the things you know because you&#8217;ve heard them all year. You heard them in State of the Word.</p>\n\n\n\n<p>We turned 20, for instance. We shipped three on-time releases. We had three well-organized flagship events, and we prototyped essential parts of phase 3. But there&#8217;s a lot of work that happens outside of flagship events and software releases, and I&#8217;d like to highlight a few examples of operational excellence in our community and ecosystem.</p>\n\n\n\n<p>[00:01:31] <strong>Josepha:</strong> First highlight goes to the contributors who are building community. Going back to 2021, we&#8217;ve been working to bring people back together in person.</p>\n\n\n\n<p>And in that year, we had 19 events. In 2022, we had 24 events, so a modest increase of just over 30%. But then, in 2023, the WordPress community banded together on a campaign to reignite passion in our Meetup groups and encourage playfulness in our WordCamp planning. And not only did we see a 57% increase in active Meetup groups, But we also saw a 116% increase in WordCamps, 54 WordCamps in all. That&#8217;s about a third of the way to our all-time annual high of 142.</p>\n\n\n\n<p>And to complement these in-person opportunities, Learn also shipped 104 pieces of new content and hosted 258 online workshops because location should never be a barrier to entry for joining WordPress.&nbsp;</p>\n\n\n\n<p>[00:02:32] <strong>Josepha:</strong> Second highlight goes to the contributors who are managing our directories. We do have a lot of directories. We have Plugins, Themes, Photos, Block plugins. We got a lot.</p>\n\n\n\n<p>And I&#8217;m sure that everyone saw the consistent and borderline pleading calls to join the Plugin team this year. And for folks who&#8217;ve been around a bit, you probably recall a similar set of consistent and pleading calls to join the Theme team a few years back. Concurrent with the work to refill that contribution pipeline, folks over in Meta and across the project generally, were working on automating as many checks as possible, loosening guidelines where it was reasonable, and modernizing as many processes as we could.</p>\n\n\n\n<p>I&#8217;m happy to share that the theme wait time is at a historic low, with their longest wait sometimes just at a week. And as anxious as I am about the plugin wait times, we&#8217;re actually seeing a lot of progress there as well. As we follow a process similar to the one that we did on themes, I imagine it&#8217;s only gonna get better. So, in 2023, we&#8217;ve onboarded six new team members. And since September, the number of plugins awaiting initial review has been cut in half.</p>\n\n\n\n<p>And then coming up in Q1 of 2024, we&#8217;ll have a project focused entirely on automating as many checks as possible. So I still need you, but I also need you to know that your work there matters and is having an impact.</p>\n\n\n\n<p>[00:03:55] <strong>Josepha:</strong> The third highlight goes to the contributors who are doing outreach. This year, we launched a mentorship program with an 89% completion rate because we&#8217;ve seen time and again that our most prolific contributors had someone at the start that they felt safe asking dumb questions with. We launched and nurtured the developer blog, which was a need identified by the community because there was no place for intermediate and advanced developers to get excited about their cool explorations. And there were 53 posts there this year with thirteen thousand views, which is a 251% increase for the record, which is a ridiculous increase, but it&#8217;s a lot. Thirteen thousand views is a lot.</p>\n\n\n\n<p>We have focused on documentation as we suggested in Porto of 2022. And marketing, I know not always our favorite topic, but marketing, our ability to talk about ourselves to more than just ourselves, has increased dramatically this year.&nbsp;</p>\n\n\n\n<p>Not only have we started rolling out a modern design across our website, but we also are present and engaged on eight different platforms with 20-plus episodes of this very podcast and also video content that netted us seven and a half million views this year. That&#8217;s a lot of numbers, and there&#8217;s a post that goes with it.</p>\n\n\n\n<p>[00:05:10] <strong>Josepha:</strong> Check out the show notes. But if you&#8217;re not gonna check out the show notes because you listen to this on Pocket Casts or Google or something, go to make.WordPress.org/project, and it&#8217;ll be over there. But the point is, it&#8217;s been a banner year for the software, and I am grateful for every tester, designer, and developer that showed up for it. But I also know that what makes WordPress truly irreplaceable is our ecosystem, and it&#8217;s contributions like this and the contributors who do them that make our ecosystem vibrant and responsive and thriving on into the future.</p>\n\n\n\n<p>So, thank you all for the contributions you make to WordPress. Thank you for the shining example of how to do open source at scale, and thank you for another great year together.&nbsp;</p>\n\n\n\n<p>[00:06:04] <strong>Josepha:</strong> Which brings us now to our small list of big things. It is indeed a small this time. First up, I would like to introduce our enhanced content safety features on Openverse. By default, search results now exclude openly licensed media containing sensitive textual content. But this new feature adds additional filtering based on titles, tags, and descriptions of the work as well.</p>\n\n\n\n<p>[00:06:27] <strong>Josepha:</strong> The second thing on our small list of big things is that there is just a general alert. There&#8217;s a WordPress security team impersonation scam that&#8217;s going on out there. The team is aware of multiple ongoing phishing scams impersonating both the WordPress team and the WordPress security team in an attempt to convince administrators to install a plugin on their website which contains malware. I&#8217;ll include a link to that post just in case you have anyone that you think might need to be aware of that, but also all of our site administrators know. Like, WordPress is not gonna email you asking for passwords or anything ever. </p>\n\n\n\n<p>[00:07:02] <strong>Josepha:</strong> And item number three, I would like you to join the Plugin review team. I know I just said it in the body of the episode. But, the Plugin review team is looking for new members still who believe in our mission of guiding plugin authors in responsibly transforming their innovative ideas into reality and ensuring a great WordPress plugin experience for end users. There is a deadline to apply; it&#8217;s December 31st. And so you can get that done over the holidays, over a glass of eggnog if that&#8217;s how you choose to celebrate whatever it is that you do. </p>\n\n\n\n<p>And that&#8217;s it for your small list of big things.&nbsp;</p>\n\n\n\n<p>Don&#8217;t forget to follow us on your favorite podcast app or subscribe directly on WordPress.org/news. You&#8217;ll get a friendly reminder whenever there&#8217;s a new episode. If you liked what you heard today, share it with a fellow WordPresser. Or, if you had questions about what you heard, you can share those with me at wpbriefing@WordPress.org. I&#8217;m your host, Josepha Haden Chomphosy. See you again in a couple of weeks.&nbsp;</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"16654\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"State of the Word 2023 Recap\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/news/2023/12/state-of-the-word-2023-recap/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 11 Dec 2023 22:55:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:17:\"state of the word\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=16617\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:384:\"On December 11, WordPress co-founder Matt Mullenweg traveled to beautiful Madrid, Spain, to deliver his annual State of the Word keynote. It was the first time this event took place outside the United States. Against the backdrop of Palacio Neptuno—an iconic architectural gem and UNESCO World Heritage site—nearly 200 contributors, developers, extenders, and friends of [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Nicholas Garofalo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:20461:\"\n<p>On December 11, WordPress co-founder <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a> traveled to beautiful Madrid, Spain, to deliver his annual <a href=\"https://wordpress.org/state-of-the-word/\">State of the Word</a> keynote. It was the first time this event took place outside the United States. Against the backdrop of <a href=\"https://www.palacioneptuno.com/\">Palacio Neptuno</a>—an iconic architectural gem and UNESCO World Heritage site—nearly 200 contributors, developers, extenders, and friends of the project came together to hear from Matt, with millions more joining online.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/c7M4mBVgP3Y?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox\"></iframe>\n</div></figure>\n\n\n\n<h2 class=\"wp-block-heading\">An introduction from the Executive Director</h2>\n\n\n\n<p>Kicking off the event, <a href=\"https://profiles.wordpress.org/chanthaboune/\" target=\"_blank\" rel=\"noreferrer noopener\">Josepha Haden Chomphosy</a>, Executive Director of the WordPress project, spoke about the community’s heart and spirit as what fuels hope for the future, ensuring the freedoms of the open web for all. She invited Matt on stage with a closing statement of confidence that such values and characteristics will move the project forward into the next 20 years as it has for the last 20.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img fetchpriority=\"high\" decoding=\"async\" width=\"1024\" height=\"682\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_36_35.jpg?resize=1024%2C682&#038;ssl=1\" alt=\"Josepha Haden Chomphosy, Executive Director of the WordPress project, speaking at a podium \" class=\"wp-image-16627\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_36_35.jpg?resize=1024%2C682&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_36_35.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_36_35.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_36_35.jpg?w=1280&amp;ssl=1 1280w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Looking back at 2023</h2>\n\n\n\n<p>Taking the stage, Matt shared his excitement about the event being the first international State of the Word. He honored the Spanish WordPress community for hosting, citing their past WordCamp accomplishments. From there, Matt jumped right into a reflection of this year’s notable moments. He recalled the project’s 20th-anniversary celebrations, how the software has evolved, and how much more the community came together this year—doubling the number of WordCamps to 70, taking place in 33 countries.</p>\n\n\n\n<div class=\"wp-block-group has-off-white-2-background-color has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:var(--wp--preset--spacing--40);padding-right:0;padding-bottom:var(--wp--preset--spacing--40);padding-left:0\">\n<p class=\"has-text-align-center\">We’re always aiming to learn and improve. Tell us how to make meetups better.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-2 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-50\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://wordpressdotorg.survey.fm/2023-meetup-annual-survey?p=1\" target=\"_blank\" rel=\"noreferrer noopener\">Take the 2023 Meetup Survey</a></div>\n</div>\n</div>\n\n\n\n<p>Matt continued with callouts to several resources on <a href=\"https://wordpress.org/\">WordPress.org</a>: the all-new <a href=\"https://events.wordpress.org/\">Events</a> page, the redesigned <a href=\"https://wordpress.org/showcase/\">Showcase</a>, a new <a href=\"https://wordpress.org/remembers/\">WordPress Remembers memorial</a>, and the <a href=\"https://wordpress.org/news/2023/09/openverse-wins-the-2023-oeg-open-infrastructure-award/\">award-winning Openverse</a>. He also demoed <a href=\"https://developer.wordpress.org/playground/\">WordPress Playground</a>, a tool allowing users to experiment with WordPress directly in their browsers, as well as the versatile <a href=\"https://wordpress.org/themes/twentytwentyfour/\">Twenty Twenty-Four default theme</a>.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"682\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_35_53.jpg?resize=1024%2C682&#038;ssl=1\" alt=\"Matías Ventura, Lead Architect of Gutenberg, speaking on stage at State of the Word\" class=\"wp-image-16621\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_35_53.jpg?resize=1024%2C682&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_35_53.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_35_53.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_35_53.jpg?w=1280&amp;ssl=1 1280w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Collaborative editing and more</h2>\n\n\n\n<p>Matt recapped the four phases of the Gutenberg project, noting that work has begun on Phase 3: Collaboration before passing the microphone to <a href=\"https://profiles.wordpress.org/matveb/\">Matías Ventura</a>, Lead Architect of Gutenberg.&nbsp;</p>\n\n\n\n<p>After a quick interlude in Spanish, Matías acknowledged how much progress had been made on the software this year. He spoke about the aim of the Site Editor to become both an exemplary writing environment and a superior design tool while noting improvements to the&nbsp;<a href=\"https://wordpress.org/documentation/article/footnotes-block/\" target=\"_blank\" rel=\"noreferrer noopener\">Footnotes Block</a>&nbsp;and the ease of&nbsp;<a href=\"https://wordpress.org/documentation/article/distraction-free-mode/\" target=\"_blank\" rel=\"noreferrer noopener\">Distraction Free mode</a>.</p>\n\n\n\n<p>While there was no set timeline for collaboration and workflows, Matías was excited to share a working prototype in the Editor. He showcased some of the most interesting aspects of collaborative editing, including establishing a sync engine that allows real-time edits to be visible across sessions. He invited contributors to test the prototype in the <a href=\"https://wordpress.org/plugins/gutenberg/\">Gutenberg plugin</a> and <a href=\"https://github.com/WordPress/gutenberg/issues/52593\">share their feedback in Github</a>.</p>\n\n\n\n<p>From there, Matías highlighted other exciting developments, including the emphasis on Patterns and their continued evolution as a powerful tool for workflows, and the ability to connect blocks to custom fields. He was thrilled to speak about performance improvements, noting that work is in progress to make the Editor <a href=\"https://www.codevitals.run/project/gutenberg\">at least twice as fast</a>. Speaking about front-end performance, he shared what’s to come with a <a href=\"https://wpmovies.dev/\">demo of the Interactivity API</a>, showcasing how it can make transitions, search, and other interactions instant—all with standard WordPress blocks and features.&nbsp;</p>\n\n\n\n<p>Matías concluded with a look at how the Admin redesign will take cues from the Site Editor, eventually allowing users to shape their WordPress Admin experience based on their unique needs.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"684\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_36_09.jpg?resize=1024%2C684&#038;ssl=1\" alt=\"WordPress co-founder Matt Mullenweg speaking at a podium\" class=\"wp-image-16624\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_36_09.jpg?resize=1024%2C684&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_36_09.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_36_09.jpg?resize=768%2C513&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_36_09.jpg?w=1280&amp;ssl=1 1280w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\">AI and Data Liberation</h2>\n\n\n\n<p>Matt returned to the stage to expand on the future of WordPress, reinforcing his past advice to <em>learn AI deeply</em>. He expressed his excitement about what can be accomplished with the wealth of AI tools available, how contributors are already experimenting with natural language processing and WordPress Playground to create and build.</p>\n\n\n\n<p>Finally, Matt introduced an additional focus for the project in 2024: <a href=\"https://wordpress.org/data-liberation/\">Data Liberation</a>, with the goal to make importing from other platforms into WordPress as frictionless as possible. He spoke about the tendency of content management systems to keep users locked in as part of his motivation to <em>unlock digital barriers</em>. The Data Liberation initiative will work on one-click migration and the export format from WordPress.&nbsp;</p>\n\n\n\n<p>More than just tools, Data Liberation reflects the project’s ethos to allow seamless contributions. With that, Matt invited anyone interested to jump into the action, noting a new <a href=\"https://github.com/wordpress/data-liberation\">Data Liberation GitHub repository</a> and forthcoming <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack</a> channels as places to get started.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Questions and answers</h2>\n\n\n\n<p>Following the presentation, Matt fielded questions from the live-stream and in-person audiences during an interactive question-and-answer session hosted by <a href=\"https://profiles.wordpress.org/monchomad/\">Jose Ramón Padrón (Moncho)</a>.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/S01uBD2pyQY?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox\"></iframe>\n</div></figure>\n\n\n\n<p>Additional questions from the live session will be answered in a follow-up post on <a href=\"https://make.wordpress.org/project\">make.WordPress.org/project</a>. Subscribe to our blog notifications to be sure you don’t miss it. And don’t forget to mark your calendars for next year’s <a href=\"https://asia.wordcamp.org/2024/\">WordCamp Asia</a> (Taipei, Taiwan), <a href=\"https://europe.wordcamp.org/2024/\">WordCamp Europe</a> (Torino, Italy), and WordCamp US (Portland, Oregon, United States).</p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-jetpack-tiled-gallery aligncenter is-style-rectangular\"><div class=\"tiled-gallery__gallery\"><div class=\"tiled-gallery__row\"><div class=\"tiled-gallery__col\" style=\"flex-basis:34.98661%\"><figure class=\"tiled-gallery__item\"><img decoding=\"async\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_37_04-1024x576.jpg?strip=info&#038;w=600&#038;ssl=1 600w,https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_37_04-1024x576.jpg?strip=info&#038;w=900&#038;ssl=1 900w,https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_37_04-1024x576.jpg?strip=info&#038;w=1200&#038;ssl=1 1200w,https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_37_04-1024x576.jpg?strip=info&#038;w=1280&#038;ssl=1 1280w\" alt=\"\" data-height=\"720\" data-id=\"16628\" data-link=\"https://wordpress.org/news/?attachment_id=16628\" data-url=\"https://wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_37_04-1024x576.jpg\" data-width=\"1280\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_37_04-1024x576.jpg?ssl=1\" data-amp-layout=\"responsive\" /></figure><figure class=\"tiled-gallery__item\"><img decoding=\"async\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_36_22-1024x682.jpg?strip=info&#038;w=600&#038;ssl=1 600w,https://i1.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_36_22-1024x682.jpg?strip=info&#038;w=900&#038;ssl=1 900w,https://i1.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_36_22-1024x682.jpg?strip=info&#038;w=1200&#038;ssl=1 1200w,https://i1.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_36_22-1024x682.jpg?strip=info&#038;w=1280&#038;ssl=1 1280w\" alt=\"\" data-height=\"853\" data-id=\"16618\" data-link=\"https://wordpress.org/news/?attachment_id=16618\" data-url=\"https://wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_36_22-1024x682.jpg\" data-width=\"1280\" src=\"https://i1.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_36_22-1024x682.jpg?ssl=1\" data-amp-layout=\"responsive\" /></figure></div><div class=\"tiled-gallery__col\" style=\"flex-basis:65.01339%\"><figure class=\"tiled-gallery__item\"><img decoding=\"async\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_36_31-1024x682.jpg?strip=info&#038;w=600&#038;ssl=1 600w,https://i1.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_36_31-1024x682.jpg?strip=info&#038;w=900&#038;ssl=1 900w,https://i1.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_36_31-1024x682.jpg?strip=info&#038;w=1200&#038;ssl=1 1200w,https://i1.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_36_31-1024x682.jpg?strip=info&#038;w=1280&#038;ssl=1 1280w\" alt=\"\" data-height=\"853\" data-id=\"16626\" data-link=\"https://wordpress.org/news/?attachment_id=16626\" data-url=\"https://wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_36_31-1024x682.jpg\" data-width=\"1280\" src=\"https://i1.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_36_31-1024x682.jpg?ssl=1\" data-amp-layout=\"responsive\" /></figure></div></div><div class=\"tiled-gallery__row\"><div class=\"tiled-gallery__col\" style=\"flex-basis:75.87343%\"><figure class=\"tiled-gallery__item\"><img decoding=\"async\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/12/sotw-2023-final.006-1024x576.png?strip=info&#038;w=600&#038;ssl=1 600w,https://i0.wp.com/wordpress.org/news/files/2023/12/sotw-2023-final.006-1024x576.png?strip=info&#038;w=900&#038;ssl=1 900w,https://i0.wp.com/wordpress.org/news/files/2023/12/sotw-2023-final.006-1024x576.png?strip=info&#038;w=1200&#038;ssl=1 1200w,https://i0.wp.com/wordpress.org/news/files/2023/12/sotw-2023-final.006-1024x576.png?strip=info&#038;w=1500&#038;ssl=1 1500w,https://i0.wp.com/wordpress.org/news/files/2023/12/sotw-2023-final.006-1024x576.png?strip=info&#038;w=1800&#038;ssl=1 1800w,https://i0.wp.com/wordpress.org/news/files/2023/12/sotw-2023-final.006-1024x576.png?strip=info&#038;w=1920&#038;ssl=1 1920w\" alt=\"\" data-height=\"1080\" data-id=\"16632\" data-link=\"https://wordpress.org/news/?attachment_id=16632\" data-url=\"https://wordpress.org/news/files/2023/12/sotw-2023-final.006-1024x576.png\" data-width=\"1920\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/12/sotw-2023-final.006-1024x576.png?ssl=1\" data-amp-layout=\"responsive\" /></figure></div><div class=\"tiled-gallery__col\" style=\"flex-basis:24.12657%\"><figure class=\"tiled-gallery__item\"><img decoding=\"async\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_34_38-576x1024.jpg?strip=info&#038;w=600&#038;ssl=1 600w,https://i1.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_34_38-576x1024.jpg?strip=info&#038;w=720&#038;ssl=1 720w\" alt=\"\" data-height=\"1280\" data-id=\"16630\" data-link=\"https://wordpress.org/news/?attachment_id=16630\" data-url=\"https://wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_34_38-576x1024.jpg\" data-width=\"720\" src=\"https://i1.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_34_38-576x1024.jpg?ssl=1\" data-amp-layout=\"responsive\" /></figure></div></div><div class=\"tiled-gallery__row\"><div class=\"tiled-gallery__col\" style=\"flex-basis:63.00314%\"><figure class=\"tiled-gallery__item\"><img decoding=\"async\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_35_11-1024x682.jpg?strip=info&#038;w=600&#038;ssl=1 600w,https://i2.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_35_11-1024x682.jpg?strip=info&#038;w=900&#038;ssl=1 900w,https://i2.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_35_11-1024x682.jpg?strip=info&#038;w=1200&#038;ssl=1 1200w,https://i2.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_35_11-1024x682.jpg?strip=info&#038;w=1280&#038;ssl=1 1280w\" alt=\"\" data-height=\"853\" data-id=\"16620\" data-link=\"https://wordpress.org/news/?attachment_id=16620\" data-url=\"https://wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_35_11-1024x682.jpg\" data-width=\"1280\" src=\"https://i2.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_35_11-1024x682.jpg?ssl=1\" data-amp-layout=\"responsive\" /></figure></div><div class=\"tiled-gallery__col\" style=\"flex-basis:36.99686%\"><figure class=\"tiled-gallery__item\"><img decoding=\"async\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_34_45-1024x576.jpg?strip=info&#038;w=600&#038;ssl=1 600w,https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_34_45-1024x576.jpg?strip=info&#038;w=900&#038;ssl=1 900w,https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_34_45-1024x576.jpg?strip=info&#038;w=1200&#038;ssl=1 1200w,https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_34_45-1024x576.jpg?strip=info&#038;w=1280&#038;ssl=1 1280w\" alt=\"\" data-height=\"720\" data-id=\"16619\" data-link=\"https://wordpress.org/news/?attachment_id=16619\" data-url=\"https://wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_34_45-1024x576.jpg\" data-width=\"1280\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_34_45-1024x576.jpg?ssl=1\" data-amp-layout=\"responsive\" /></figure><figure class=\"tiled-gallery__item\"><img decoding=\"async\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_38_08-1024x576.jpg?strip=info&#038;w=600&#038;ssl=1 600w,https://i1.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_38_08-1024x576.jpg?strip=info&#038;w=900&#038;ssl=1 900w,https://i1.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_38_08-1024x576.jpg?strip=info&#038;w=1200&#038;ssl=1 1200w,https://i1.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_38_08-1024x576.jpg?strip=info&#038;w=1280&#038;ssl=1 1280w\" alt=\"\" data-height=\"720\" data-id=\"16629\" data-link=\"https://wordpress.org/news/?attachment_id=16629\" data-url=\"https://wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_38_08-1024x576.jpg\" data-width=\"1280\" src=\"https://i1.wp.com/wordpress.org/news/files/2023/12/IMAGE-2023-12-11-13_38_08-1024x576.jpg?ssl=1\" data-amp-layout=\"responsive\" /></figure></div></div></div></div>\n\n\n\n<p><em><em>Thank you to <a href=\'https://profiles.wordpress.org/laurlittle/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>laurlittle</a>, <a href=\'https://profiles.wordpress.org/eidolonnight/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>eidolonnight</a>, <a href=\'https://profiles.wordpress.org/nilovelez/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>nilovelez</a>, <a href=\'https://profiles.wordpress.org/fepr/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>fepr</a>, <a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>, and the many others who made this event and post possible.</em></em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"16617\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:61:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"WP Briefing: Episode 68: Toward a More Interconnected Web\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://wordpress.org/news/2023/12/episode-68-toward-a-more-interconnected-web/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 11 Dec 2023 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=16569\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:235:\"In this episode, WordPress Executive Director, Josepha Haden Chomphosy articulates the vision for a collaborative ecosystem where knowledge sharing and contributions to open source tools lead to a more interconnected and empowered web.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:51:\"https://wordpress.org/news/files/2023/12/WPB068.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:14552:\"\n<p>In this episode, WordPress Executive Director, Josepha Haden Chomphosy articulates the vision for a collaborative ecosystem where knowledge sharing and contributions to open source tools lead to a more interconnected and empowered web.</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to&nbsp;<a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@WordPress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Host:&nbsp;<a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a><br>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production:&nbsp;<a href=\"https://profiles.wordpress.org/bjmcsherry/\">Brett McSherry</a><br>Song: Fearless First by Kevin MacLeod</p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2022/11/state-of-the-word-2022/\">State of the Word 2022</a></li>\n\n\n\n<li><a href=\"https://thephp.foundation/\">PHP Foundation</a></li>\n\n\n\n<li>Josepha&#8217;s <a href=\"https://make.wordpress.org/project/2022/01/21/big-picture-goals-2022/\">Big Picture Goals 2022</a></li>\n\n\n\n<li><strong>Small List of Big Things</strong>\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/11/22/whats-new-in-gutenberg-17-1-22-november/\">Gutenberg 17.1</a> has been released and is <a href=\"https://wordpress.org/plugins/gutenberg/\" target=\"_blank\" rel=\"noreferrer noopener\">available for download</a>! The latest release includes new enhancements, bug fixes, and continued work on Phase 3 features.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/11/17/announcing-the-2023-annual-meetup-survey/\" target=\"_blank\" rel=\"noreferrer noopener\">Announcing the 2023 Annual Meetup Survey</a> &#8211; The Community team proposed a survey for all meetup members and organizers. Please complete the <a href=\"https://wordpressdotorg.survey.fm/2023-meetup-annual-survey\" target=\"_blank\" rel=\"noreferrer noopener\">Annual Meetup Survey</a>  by January 14, 2024– even if you haven&#8217;t participated in a meetup recently!</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/11/29/request-for-feedback-lesson-handbook-pages/\" target=\"_blank\" rel=\"noreferrer noopener\">Request for feedback: Lesson Handbook pages</a> &#8211; As the Training team progresses towards the 2024 launch of <a href=\"https://make.wordpress.org/training/2023/07/07/project-thread-learning-pathways-on-learn-wordpress/\">Learning Pathways</a>, they&#8217;re developing a set of content creation guidelines to streamline and scale the process. These guidelines will focus on efficient methods for developing, reviewing, and updating content. To gather input, a <a href=\"https://docs.google.com/document/d/1twvDGmVZsyjBZbi9abiqoA_a2G7O_WNis_iGL2Sccg0/edit#heading=h.srkdcrt4k0v8\">Google Doc</a> has been created where you can share your ideas. Please provide your feedback and comments on this document by Tuesday, December 19, 2023.</li>\n\n\n\n<li><a href=\"https://playground.wordpress.net/\">WordPress Playground</a> makes WordPress instantly accessible for users, learners, extenders, and contributors.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/project/2023/11/30/embracing-matrix-for-enhanced-communication/\">Embracing Matrix for Enhanced Communication</a></li>\n</ul>\n</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Transcripts</h2>\n\n\n\n<span id=\"more-16569\"></span>\n\n\n\n<p>[00:00:00] <strong>Josepha:</strong> Hello everyone. And welcome to the WordPress Briefing. The podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go.</p>\n\n\n\n<p>[00:00:28] (Intro music)&nbsp;</p>\n\n\n\n<p>[00:00:40] <strong>Josepha:</strong> If you&#8217;re already familiar with the WordPress project, and if you&#8217;re listening to this podcast, I feel like it&#8217;s a safe assumption that you&#8217;re probably also familiar with the fact that we are what&#8217;s considered a free and open source software project. We adhere to the four freedoms of open source. We track bugs in the open, and we believe that knowledge sharing can only improve our products. </p>\n\n\n\n<p>But you might not be aware of the other open source projects that are foundational to ours and otherwise are integral to our commitment to the open web. At last year&#8217;s State of the Word, Matt mentioned that one of the coolest things about being a plugin or theme author in WordPress is that you get to run your open source project on the same infrastructure that WordPress runs on. So, no matter whether you have five installs or five thousand, you&#8217;re getting the benefits of our bug trackers, messaging, and network of project sites. But beyond those, which are, of course, near and dear to us, we also support projects like PHP and its foundation. Openverse and its founding organization Creative Commons, and of course, the two that we&#8217;re hearing a lot about this year and next, Playground and Matrix.</p>\n\n\n\n<p>[00:01:52] <strong>Josepha:</strong> That&#8217;s a lot of projects and not even a comprehensive list. And honestly, it can seem, I don&#8217;t know, a little weird. Like, we&#8217;re a FOSS CMS, right? You probably know why we contribute back to PHP. It&#8217;s the same reason we ask people to contribute to WordPress. But why are we giving so much time to a media search engine, or a Web Assembly implementation, or even a messaging protocol?</p>\n\n\n\n<p>At first glance, there are, of course, a lot of quick and easy answers. For instance, like, open source is open source. Any open source contribution is going to be a good contribution. All open source in the world increases good and freedom in the world. Like, open source is open source. Makes sense, right?</p>\n\n\n\n<p>Another quick and easy answer is, you know, they&#8217;re part of us. And that&#8217;s true, definitely, for PHP, like, they&#8217;re part of us, and so we should be contributing back to them. Because we rely on them so much. And then a third quick and easy answer is that we, as the biggest open source CMS on the planet, basically, we can, spare a lending hand. We can offer a little bit of help to those around us.&nbsp;</p>\n\n\n\n<p>[00:03:03] <strong>Josepha:</strong> And those are all true. I don&#8217;t think that anyone would disagree with any of that. But the thing that ties it all together for me is something that&#8217;s a little harder to see. In the 2022 goals that I posted, I said that my second goal for our year was to support open source alternatives for all site-building necessities.</p>\n\n\n\n<p>At the time, I was primarily talking about Openverse and the directory of photos that was being created as a CC-first source. But that also applies to all of our directories. It did then, just as it does now. And Trac, and our vast network of WordPress sites. All the tools we use in order to collaborate with, and lead for, and learn from each other.</p>\n\n\n\n<p>I want us to be able to do everything it takes to build an online presence using open source tools and methods because WordPress is just a glorious little microcosm of the interconnected web. It reminds me of this art installation I had the privilege of experiencing. It&#8217;s called Meow Wolf. I went to the one in Denver, but there are a few different installations across the U.S.&nbsp;The one that I went to is this massive art installation, and it is designed to be interactive, but it wasn&#8217;t until you started sharing your experience sharing your knowledge with other people that you realized it was also collaborative, a set of buttons you pushed in one room would cause a light show in some other room.</p>\n\n\n\n<p>[00:04:34] <strong>Josepha:</strong> So you were enhancing the experience of strangers in some completely disconnected room to yours, and they couldn&#8217;t distinguish it from an automation or something they did, or just plain old magic. And that&#8217;s what we&#8217;re doing by supporting these other open source tools. Yes, every new open source contribution results in more freedom in the world. Yes, we owe support to the components that got us where we are today. And yes, we absolutely can and should pay it forward. But more importantly than all that, we&#8217;re creating the opportunity for new interactions, new brilliance, and new defenders of the open web every time that we work on these open source products.</p>\n\n\n\n<p>[00:05:20] <strong>Josepha:</strong> And it doesn&#8217;t matter if we will ever see any of those people. And it doesn&#8217;t matter if they will ever thank us. What matters is that we see that knowledge like this is worth preserving and worth sharing. Because knowledge shared, information shared is like light. The more you share it, the more there is.</p>\n\n\n\n<p>And I want you to be able to take that sharing and use it to light the world. I want you to be able to go out and tell people how open source has changed your life, how WordPress has opened doors for you, or how much these tools have empowered your clients. I want you to remember why you came to WordPress in the first place, and I need you to hear me when I say that I need you here in WordPress today because every little ripple of good that we create makes the world a little more good.</p>\n\n\n\n<p>[00:06:12] (Music interlude)&nbsp;</p>\n\n\n\n<p>[00:06:20] <strong>Josepha:</strong> (SLBT) And now, my friends, that brings us to our time for the small list of big things. I&#8217;ve got a kind of a big list because I always kind of have a big list anymore, but the first thing on my list is Gutenberg 17.1. That has been released and is available for download. It includes several new enhancements, loads of bug fixes, and continues that work on phase three features that we are starting to see come through. If you don&#8217;t have it already, go out and grab it, test it, break it, and tell us what you tested and how it broke things.&nbsp;</p>\n\n\n\n<p>[00:06:52] <strong>Josepha:</strong> The second thing on my small list of big things is that there is currently an annual meetup survey out. So, we&#8217;ve had an increase in our meetup events, and certainly an increase in the active number of meetup groups that we have, but the community team is proposing a unified survey for all meetup members and organizers, and if you haven&#8217;t participated in it yet go and fill it out. You don&#8217;t have to have actually gone to a meetup event recently in order to take it, but, you know, it might be helpful. Either way, you have until January 14, 2024, to fill that out.</p>\n\n\n\n<p>[00:07:30] <strong>Josepha:</strong> The third thing on my small list of big things is a request for feedback. The training team is working toward launching Learning Pathways in 2024. They&#8217;re looking to create a new set of content creation guidelines that enables the learning pathways to scale with a straightforward process for developing, reviewing, and updating that content. There&#8217;s a Google doc for you where you can contribute your ideas, and that doc will be open for feedback through this week and into next week. I believe it closes on Tuesday, the 19th of December, 2023.</p>\n\n\n\n<p>[00:08:04] <strong>Josepha:</strong> And then the final thing on my small list of big things is actually, it&#8217;s a dual call-in. I already said with my first one about the Gutenberg plugin: get in there and test it and break it, and then tell us how it broke and what you were doing when you were testing it and broke it. And I encourage you to do that also for Matrix and Playground.</p>\n\n\n\n<p>So Playground has been a really big deal all year long. It was a big deal at the end of last year. It showed up for us in November 2022 and has been really just growing in surprising ways all the way through 2023. So if you have not yet seen it, you haven&#8217;t gotten your hands on it yet, it&#8217;s a WordPress installation that is loaded entirely in the browser, totally server-free, and we&#8217;re looking at a couple of new implementations that make it easier for users who are trying to, like, kick the tires of WordPress before they decide, and developers who are wanting to test new pull requests and things like that.</p>\n\n\n\n<p>So keep an eye out if it sounds interesting; it is interesting. And wander over and figure out how that&#8217;s working. And the other thing in that last call for collective testing is Matrix. So Matrix is an open source federated messaging protocol, and like so many technology projects out there at the moment, we are trying to make sure that we are preparing ourselves for the future arrival of Web 3 and all of the things that are coming along with current advancements in federated everything and AI and etc., etc.</p>\n\n\n\n<p>And so, Matrix is an open source messaging protocol. There are a lot of different ways to get connected. I&#8217;ll share a link to one of the posts in the show notes over on WordPress.org/news. But if you&#8217;re interested in learning a bit about it and you don&#8217;t really want to like figure out what sort of client is comfortable for you to use. There&#8217;s also on-site chat implementations for, I want to say, like 10 or 12 of our largest or most regularly meeting groups that we have. You can go to parts of the website like make.WordPress.org/core/chat and check those out. If you have a WordPress.org account, then you can have access to that on-site chat, and that is it.</p>\n\n\n\n<p>That&#8217;s the whole low barrier to entryway of figuring that out with us. Come and break stuff with us, everyone, and tell us how to make it better.&nbsp;</p>\n\n\n\n<p>[00:10:33] <strong>Josepha:</strong> And that, my friends, is your small list of big things. Don&#8217;t forget to follow us on your favorite podcast app or subscribe directly on WordPress.org/news. You&#8217;ll get a friendly reminder whenever there&#8217;s a new episode. If you liked what you heard today, share it with a fellow WordPresser. Or, if you had questions about what you heard, you can share those with me at wpbriefing@WordPress.org. I&#8217;m your host, Josepha Haden Chomphosy. Thank you for tuning in today for the WordPress Briefing, and I&#8217;ll see you again in a couple of weeks.</p>\n\n\n\n<p>[00:11:00] (Music outro)&nbsp;</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"16569\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"The Month in WordPress – November 2023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/news/2023/12/the-month-in-wordpress-november-2023/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 08 Dec 2023 11:20:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:18:\"month in wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=16575\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:251:\"November is usually a busy month for the WordPress project, and this year is no different. Following the empowering release of WordPress 6.4, the energy continues to build, setting the stage for the anticipated State of the Word and upcoming projects.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Reyes Martínez\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:11827:\"\n<p>November is usually a busy month for the WordPress project, and this year is no different. Following the empowering release of WordPress 6.4, the energy continues to build, setting the stage for the anticipated State of the Word and upcoming projects.&nbsp;</p>\n\n\n\n<p>Read on for all the exciting updates that marked the past month.</p>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Get ready for State of the Word</h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/SOTW-Blue.png?resize=1024%2C683&#038;ssl=1\" alt=\"State of the Word 2023\" class=\"wp-image-16438\" style=\"object-fit:cover\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/11/SOTW-Blue.png?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/11/SOTW-Blue.png?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/11/SOTW-Blue.png?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/11/SOTW-Blue.png?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/11/SOTW-Blue.png?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Mark your calendars—State of the Word 2023 is approaching fast. In this annual keynote, WordPress co-founder Matt Mullenweg celebrates the progress of the open source project and offers a glimpse into its future.</p>\n\n\n\n<p>For the first time in WordPress history, the event will be held outside North America, in the vibrant city of <a href=\"https://wordpress.org/news/2023/11/state-of-the-word-2023-madrid-spain/\">Madrid, Spain, on December 11, 2023</a>.</p>\n\n\n\n<p>If you’re unable to attend the State of the Word in person, you can watch it live on the <a href=\"https://www.youtube.com/live/1MwT9EEkguE?si=TYwAe5qnKA3DlRMX\">WordPress YouTube channel</a> or join one of the many community-led watch parties. <a href=\"https://wordpress.org/state-of-the-word\">Find one near you</a> or <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/state-of-the-word-watch-parties/\">organize one</a>.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-4 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-white-color has-dark-strokes-grey-background-color has-text-color has-background has-link-color wp-element-button\" href=\"https://wordpress.org/state-of-the-word/\">Learn more about State of the Word 2023</a></div>\n</div>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Meet Twenty Twenty-Four</h2>\n\n\n\n<p>Along with the release of <a href=\"https://wordpress.org/download/releases/6-4/\">WordPress 6.4</a> “Shirley,” the new default <a href=\"https://wordpress.org/news/2023/11/introducing-twenty-twenty-four/\">Twenty Twenty-Four theme was introduced</a>.</p>\n\n\n\n<p>This theme breaks away from the tradition of previous default themes that focused on a specific topic or style. Instead, Twenty Twenty-Four was created to fit any website and explore different use cases for entrepreneurs, artists, and writers.</p>\n\n\n\n<p>You’ll find more than 35 beautiful patterns, including full-page patterns for templates like homepage, search, and more. Twenty Twenty-Four boasts the latest site editing capabilities and a sophisticated aesthetic inspired by contemporary design trends.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-5 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-white-color has-dark-strokes-grey-background-color has-text-color has-background has-link-color wp-element-button\" href=\"https://playground.wordpress.net/?theme=twentytwentyfour\">Check out Twenty Twenty-Four now</a></div>\n</div>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">New in the Gutenberg plugin</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/11/10/whats-new-in-gutenberg-17-0-9-november/\">Gutenberg 17.0</a> was released on November 9, 2023. It introduced improvements to the Command Palette, an alternative implementation of the DropdownMenu component, additional visual cues for LinkControl, and various accessibility and performance iterations.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/11/22/whats-new-in-gutenberg-17-1-22-november/\">Gutenberg 17.1</a> shipped on November 22, 2023. In addition to several accessibility and writing flow enhancements, this version brought a new block spacing control in the Quote block.</li>\n</ul>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<a class=\"wp-block-jetpack-podcast-player jetpack-podcast-player__direct-link\" href=\"https://wordpress.org/news/2023/10/episode-64-patterns-in-wordpress/\">https://wordpress.org/news/2023/10/episode-64-patterns-in-wordpress/</a>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Team updates</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/11/30/embracing-matrix-for-enhanced-communication/\">WordPress is switching to Matrix</a> in replacement of the Making WordPress Slack. The move stems from the project&#8217;s commitment to implementing a new chat system aligned with WordPress&#8217;s open source values. If you haven&#8217;t already, now is the time to explore Matrix and share your questions.</li>\n\n\n\n<li>With phishing scams on the rise, the WordPress Security team is actively monitoring the current threat and has posted <a href=\"https://wordpress.org/news/2023/12/alert-wordpress-security-team-impersonation-scams/\">an advisory to help you protect your site</a>.</li>\n\n\n\n<li>The Plugin Review team is now <a href=\"https://make.wordpress.org/plugins/2023/12/02/join-the-plugin-review-team/\">reopening applications to join their team</a>. They’re looking for three new members who can improve the state of the plugin review queue and help create a diverse and inclusive team.</li>\n\n\n\n<li>Over the past few months, contributors have been working on <a href=\"https://make.wordpress.org/meta/2023/11/22/redesigning-developer-resources-and-a-call-for-testing/\">redesigning the WordPress.org Developer Resources</a> section.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/11/06/proposal-2024-major-release-timing/\">This post</a> outlines proposed dates for major WordPress releases in 2024.</li>\n\n\n\n<li>The Meta team shared an <a href=\"https://make.wordpress.org/meta/2023/11/22/plugin-directory-preview-button-revisited/\">improved version of the plugin preview feature</a>. This version builds on feedback and allows plugin developers to safely test the preview experience for their plugins in a <a href=\"https://developer.wordpress.org/playground/\">WordPress Playground</a> environment.</li>\n\n\n\n<li>Polyglots and Meta contributors introduced <a href=\"https://make.wordpress.org/meta/2023/11/29/create-tours-for-make-p2s/\">a new plugin called Tour</a>, which enables the creation of tours to guide contributors through a Make WordPress blog.</li>\n\n\n\n<li>Are you looking to broaden your knowledge and improve your WordPress skills? See <a href=\"https://make.wordpress.org/updates/2023/12/01/whats-new-on-learn-wordpress-in-november-2023/\">what’s new on Learn WordPress in November 2023</a>.</li>\n\n\n\n<li>The latest edition of People of WordPress features back-end web developer <a href=\"https://wordpress.org/news/2023/12/people-of-wordpress-artemy-kaydash/\">Artemy Kaydash</a> from Ukraine.</li>\n</ul>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<a class=\"wp-block-jetpack-podcast-player jetpack-podcast-player__direct-link\" href=\"https://wordpress.org/news/2023/10/episode-64-patterns-in-wordpress/\">https://wordpress.org/news/2023/10/episode-64-patterns-in-wordpress/</a>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Requests for feedback &amp; testing</h2>\n\n\n\n<ul>\n<li>The Community team announced the <a href=\"https://make.wordpress.org/community/2023/11/17/announcing-the-2023-annual-meetup-survey/\">2023 Annual Meetup Survey</a>. Both event attendees and organizers are encouraged to provide feedback in this 5-minute survey to help strengthen WordPress meetups in the future.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/11/23/mobile-team-update-november-22nd/\">Version 23.7</a> of the WordPress mobile app for iOS and Android is ready for testing.</li>\n</ul>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress events</h2>\n\n\n\n<ul>\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1f9-1f1fc.png\" alt=\"🇹🇼\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> WordCamp Asia opened the <a href=\"https://asia.wordcamp.org/2024/the-third-batch-of-tickets-on-sale-now/\">third round of ticket sales</a> and announced that <a href=\"https://asia.wordcamp.org/2024/announcing-our-first-speaker-matt-mullenweg/\">their first speaker is WordPress co-founder Matt Mullenweg</a>. The conference will be held in Taipei, Taiwan, on March 7-9, 2024.</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ea-1f1fa.png\" alt=\"🇪🇺\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> WordCamp Europe <a href=\"https://europe.wordcamp.org/2024/call-for-sponsors/\">opened its call for sponsors</a> and <a href=\"https://europe.wordcamp.org/2024/speakers/call-for-speakers/\">speakers</a> for their conference slated to take place in Torino, Italy, on June 13-15, 2024.&nbsp;</li>\n\n\n\n<li>Don’t miss these upcoming WordCamps:\n<ul>\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1f3.png\" alt=\"🇮🇳\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://ahmedabad.wordcamp.org/2023/\">WordCamp Ahmedabad 2023</a>, India on December 9, 2023</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1f5-1f1f0.png\" alt=\"🇵🇰\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://lahore.wordcamp.org/2023/\">WordCamp Lahore 2023</a>, Pakistan on December 9-10, 2023</li>\n</ul>\n</li>\n</ul>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p><em><strong>Have a story we should include in the next issue of The Month in WordPress? Fill out </strong></em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><strong><em>this quick form</em></strong></a><em><strong> to let us know.</strong></em></p>\n\n\n\n<p><em>Thank you to <a href=\"https://profiles.wordpress.org/bernard0omnisend/\">Bernard Meyer</a> for contributing to this edition of The Month in WordPress.</em></p>\n\n\n\n<div class=\"wp-block-group is-layout-constrained wp-block-group-is-layout-constrained\">\n<h3 class=\"wp-block-heading\">Subscribe to WordPress News</h3>\n\n\n\n<p>Join other subscribers and receive WordPress news directly in your inbox.</p>\n\n\n<div class=\"wp-block-jetpack-subscriptions__supports-newline is-style-split wp-block-jetpack-subscriptions\">\n		<div>\n			<div>\n				<div>\n					<p >\n						<a href=\"https://wordpress.org/news/?post_type=post&#038;p=16575\" style=\"text-decoration: none; font-size: 16px;padding: 15px 23px 15px 23px;margin: 0px; margin-left: 10px;border-radius: 0px;border-width: 1px; background-color: #113AF5; color: #FFFFFF;\">Subscribe</a>\n					</p>\n				</div>\n			</div>\n		</div>\n	</div></div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"16575\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"WordPress 6.4.2 Maintenance &amp; Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://wordpress.org/news/2023/12/wordpress-6-4-2-maintenance-security-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Dec 2023 17:03:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=16562\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:352:\"WordPress 6.4.2 is now available! This minor release features 7 bug fixes in Core. The fixes include a bug fix for an issue causing stylesheet and theme directories to sometimes return incorrect results. This release also features one security fix. Because this is a security release, it is recommended that you update your sites immediately. [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Aaron Jorbin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6255:\"\n<h2 class=\"wp-block-heading\">WordPress 6.4.2 is now available!</h2>\n\n\n\n<p>This minor release features <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;milestone=6.4.2&amp;groupdesc=1&amp;group=resolution&amp;col=id&amp;col=summary&amp;col=status&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;col=keywords&amp;order=priority\">7 bug fixes</a> in Core. The fixes include a bug fix for an issue causing stylesheet and theme directories to sometimes return incorrect results.</p>\n\n\n\n<p>This release also features one security fix. Because this is a security release, <strong>it is recommended that you update your sites immediately</strong><strong>.</strong></p>\n\n\n\n<p>You can <a href=\"https://wordpress.org/wordpress-6.4.2.zip\">download WordPress 6.4.2 from WordPress.org</a>, or visit your WordPress Dashboard, click “Updates”, and then click “Update Now”. If you have sites that support automatic background updates, the update process will begin automatically.</p>\n\n\n\n<p>WordPress 6.4.2 is a short-cycle release. The next major release will be version 6.5 released in early 2024.</p>\n\n\n\n<p>For more information on this release, please visit the <a href=\"https://wordpress.org/documentation/wordpress-version/version-6-4-2/\">HelpHub site</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Security updates included in this release</h2>\n\n\n\n<p>The security team addressed the following vulnerability in this release.</p>\n\n\n\n<ul>\n<li>A Remote Code Execution vulnerability that is not directly exploitable in core, however the security team feels that there is a potential for high severity when combined with some plugins, especially in multisite installs.</li>\n</ul>\n\n\n\n<p>To help the security team and WordPressers around the world, you are encouraged to <a href=\"https://hackerone.com/wordpress?type=team\">responsibly report vulnerabilities</a>. This allows vulnerabilities to be fixed in future releases.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you to these WordPress contributors</h2>\n\n\n\n<p>This release was led by <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>.</p>\n\n\n\n<p>WordPress 6.4.2 would not have been possible without the contributions of the following people. Their asynchronous coordination to deliver maintenance and security fixes into a stable release is a testament to the power and capability of the WordPress community.</p>\n\n\n\n<p class=\"is-style-wporg-props-long\"><a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/wildworks\">Aki Hamano</a>, <a href=\"https://profiles.wordpress.org/atachibana\">Akira Tachibana</a>, <a href=\"https://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/angelasjin\">Angela Jin</a>, <a href=\"https://profiles.wordpress.org/antonvlasenko\">Anton Vlasenko</a>, <a href=\"https://profiles.wordpress.org/barry\">Barry</a>, <a href=\"https://profiles.wordpress.org/Bernhard%20Reiter\">bernhard-reiter</a>, <a href=\"https://profiles.wordpress.org/icaleb\">Caleb Burks</a>, <a href=\"https://profiles.wordpress.org/coreyw\">Corey Worrell</a>, <a href=\"https://profiles.wordpress.org/crstauf\">crstauf</a>, <a href=\"https://profiles.wordpress.org/nerrad\">Darren Ethier (nerrad)</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/dmsnell\">Dennis Snell</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/kebbet\">Erik</a>, <a href=\"https://profiles.wordpress.org/gaambo\">Fabian Todt</a>, <a href=\"https://profiles.wordpress.org/flixos90\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/priethor\">Héctor Prieto</a>, <a href=\"https://profiles.wordpress.org/ironprogrammer\">ironprogrammer</a>, <a href=\"https://profiles.wordpress.org/isabel_brison\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/audrasjb\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jeffpaul\">Jeffrey Paul</a>, <a href=\"https://profiles.wordpress.org/luminuu\">Jessica Lyschik</a>, <a href=\"https://profiles.wordpress.org/joemcgill\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/kharisblank\">Kharis Sulistiyono</a>, <a href=\"https://profiles.wordpress.org/krupalpanchal\">Krupal Panchal</a>, <a href=\"https://profiles.wordpress.org/kdowns\">Kylen Downs</a>, <a href=\"https://profiles.wordpress.org/meta4\">meta4</a>, <a href=\"https://profiles.wordpress.org/mikeschroder\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/mukesh27\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/partyfrikadelle\">partyfrikadelle</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/NekoJonez\">Pieterjan Deneys</a>, <a href=\"https://profiles.wordpress.org/rawrly\">rawrly</a>, <a href=\"https://profiles.wordpress.org/rebasaurus\">rebasaurus</a>, <a href=\"https://profiles.wordpress.org/SergeyBiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/hellofromTonya\">Tonya Mork</a>, <a href=\"https://profiles.wordpress.org/vortfu\">vortfu</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">How to contribute</h2>\n\n\n\n<p>To get involved in WordPress core development, head over to Trac, <a href=\"https://core.trac.wordpress.org/report/6\">pick a ticket</a>, and join the conversation in the <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a>. Need help? Check out the <a href=\"https://make.wordpress.org/core/handbook/tutorials/faq-for-new-contributors/\">Core Contributor Handbook</a>.</p>\n\n\n\n<p>As a final reminder, The WordPress Security Team will never email you requesting that you install a plugin or theme on your site, and will never ask for an administrator username and password. <a href=\"https://wordpress.org/news/2023/12/alert-wordpress-security-team-impersonation-scams/\">Please stay vigilant against phishing attacks</a>.</p>\n\n\n\n<p><em>Thanks to <a href=\"https://profiles.wordpress.org/angelasjin/\">@angelasjin</a> and <a href=\"https://wordpress.slack.com/team/U02SVSW3U\">@desrosj</a> for proofreading.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"16562\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"Alert: WordPress Security Team Impersonation Scams\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://wordpress.org/news/2023/12/alert-wordpress-security-team-impersonation-scams/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 04 Dec 2023 23:13:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"Updates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=16547\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:368:\"The WordPress Security Team is aware of multiple ongoing phishing scams impersonating both the “WordPress team” and the “WordPress Security Team“ in an attempt to convince administrators to install a plugin on their website which contains malware. The WordPress Security Team will never email you requesting that you install a plugin or theme on your [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Peter Wilson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4939:\"\n<p>The WordPress Security Team is aware of multiple ongoing phishing scams impersonating both the “WordPress team” and the “WordPress Security Team“ in an attempt to convince administrators to install a plugin on their website which contains malware.</p>\n\n\n\n<p><strong>The WordPress Security Team will never email you requesting that you install a plugin or theme on your site, and will never ask for an administrator username and password.</strong></p>\n\n\n\n<p>If you receive an unsolicited email claiming to be from WordPress with instructions similar to those described above, please disregard the emails and indicate that the email is a scam to your email provider.</p>\n\n\n\n<p>These emails link to a phishing site that appears to be the WordPress plugin repository on a domain that is not owned by WordPress or an associated entity. Both <a href=\"https://patchstack.com/articles/fake-cve-phishing-campaign-tricks-wordpress-users-to-install-malware/\">Patchstack</a> and <a href=\"https://www.wordfence.com/blog/2023/12/psa-fake-cve-2023-45124-phishing-scam-tricks-users-into-installing-backdoor-plugin/\">Wordfence</a> have written articles that go in to further detail.</p>\n\n\n\n<p>Official emails from the WordPress project will always:</p>\n\n\n\n<ul>\n<li>Come from a <code>@wordpress.org</code> or <code>@wordpress.net</code> domain.</li>\n\n\n\n<li>Should also say “Signed by: wordpress.org” in the email details section.</li>\n</ul>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"450\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/12/email-details-signed-by-wordpressdotorg.png?resize=1024%2C450&#038;ssl=1\" alt=\"Screenshot of email sent by a WordPress.org email account. The details include &quot;mailed-by wordpress.org&quot; and &quot;signed-by wordpress.org&quot;.\" class=\"wp-image-16548\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/12/email-details-signed-by-wordpressdotorg.png?resize=1024%2C450&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/12/email-details-signed-by-wordpressdotorg.png?resize=300%2C132&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/12/email-details-signed-by-wordpressdotorg.png?resize=768%2C337&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/12/email-details-signed-by-wordpressdotorg.png?w=1202&amp;ssl=1 1202w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>The WordPress Security Team will only communicate with WordPress users in the following locations:</p>\n\n\n\n<ul>\n<li>the Making WordPress Secure blog at <a href=\"https://make.wordpress.org/security\">make.wordpress.org/security</a></li>\n\n\n\n<li>the main WordPress News site at <a href=\"https://wordpress.org/news\">wordpress.org/news</a></li>\n</ul>\n\n\n\n<p>The WordPress Plugin team will never communicate directly with a plugin’s users but may email plugin support staff, owners and contributors. These emails will be sent from <a href=\"mailto:plugins@wordpress.org\">plugins@wordpress.org</a> and be signed as indicated above.</p>\n\n\n\n<p>The official WordPress plugin repository is located at <a href=\"https://wordpress.org/plugins\">wordpress.org/plugins</a> with internationalized versions on subdomains, such as <a href=\"https://fr.wordpress.org/plugins\">fr.wordpress.org/plugins</a>, <a href=\"https://en-au.wordpress.org/plugins\">en-au.wordpress.org/plugins</a>, etc. A subdomain may contain a hyphen, however a dot will always appear before wordpress.org.</p>\n\n\n\n<p>A WordPress site’s administrators can also access the plugin repository via the plugins menu in the WordPress dashboard.</p>\n\n\n\n<p>As WordPress is the most used CMS, these types of phishing scams will happen occasionally. Please be vigilant for unexpected emails asking you to install a theme, plugin or linking to a login form.</p>\n\n\n\n<p>The Scamwatch website has some tips for <a href=\"https://www.scamwatch.gov.au/protect-yourself/ways-to-spot-and-avoid-scams\">identifying emails and text messages that are likely to be scams</a>.</p>\n\n\n\n<p>As always, if you believe that you have discovered a security vulnerability in WordPress, please <a href=\"https://wordpress.org/about/security/\">follow the project’s Security policies</a> by privately and responsibly disclosing the issue directly to the WordPress Security team through the project’s official <a href=\"https://hackerone.com/wordpress\">HackerOne page</a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p><em>Thank you <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/otto/\">Otto</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a>, and <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a> for their collaboration on and review of this post.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"16547\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n	hourly	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n	1	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:12:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Sun, 21 Jan 2024 23:38:44 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:25:\"strict-transport-security\";s:12:\"max-age=3600\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Fri, 12 Jan 2024 16:58:53 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:4:\"gzip\";s:7:\"alt-svc\";s:19:\"h3=\":443\"; ma=86400\";s:4:\"x-nc\";s:9:\"HIT ord 1\";}}s:5:\"build\";s:14:\"20231106184314\";}','no'),(303245,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1705923524','no'),(303246,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1705880324','no'),(303247,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1705923524','no');
INSERT INTO `wpj7_options` VALUES (303248,'_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n	\n	\n	\n	\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"Gutenberg Times: Gutenberg Changelog #95 – Gutenberg 17.5, Early Testing of WordPress 6.5 and Block Themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://gutenbergtimes.com/?post_type=podcast&p=27107\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:121:\"https://gutenbergtimes.com/podcast/gutenberg-changelog-95-gutenberg-17-5-early-testing-of-wordpress-6-5-and-block-themes/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5711:\"<p>In this episode, Carolina Nymark and Birgit Pauli-Haack discuss Gutenberg 17.5, early testing of WordPress 6.5 and block themes</p>\n\n\n\n<p><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-95-gutenberg-17-5-early-testing-of-wordpress-6-5-and-block-themes/#shownotes\">Show Notes</a> / <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-95-gutenberg-17-5-early-testing-of-wordpress-6-5-and-block-themes/transcript\">Transcript</a></p>\n\n\n\n<ul>\n<li>Music:&nbsp;<a href=\"https://soundcloud.com/xirclebox\">Homer Gaines</a></li>\n\n\n\n<li>Editor:&nbsp;<a href=\"https://www.linkedin.com/in/sandy-reed/\">Sandy Reed</a></li>\n\n\n\n<li>Logo:&nbsp;<a href=\"https://markuraine.com/\">Mark Uraine</a></li>\n\n\n\n<li>Production:&nbsp;<a href=\"https://icodeforapurpose.com\">Birgit Pauli-Haack</a></li>\n</ul>\n\n\n\n<p class=\"has-larger-font-size\" id=\"shownotes\"><strong>Show Notes</strong></p>\n\n\n\n<h2 class=\"wp-block-heading\">Special Guest: Carolina Nymark</h2>\n\n\n\n<ul>\n<li><a href=\"https://profiles.wordpress.org/poena/\">WPProfile: @poena</a></li>\n\n\n\n<li><a href=\"https://twitter.com/carolinapoena\">X (former Twitter) @carolinapoena</a></li>\n\n\n\n<li><a href=\"https://fullsiteediting.com/\">FullsiteEditing.com</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/themes/\">Make Themes team</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/6-5\">WordPress 6.5 Release squad</a></li>\n</ul>\n\n\n\n<p>Live Q &amp; As with Carolina Nymark</p>\n\n\n\n<ul>\n<li><a href=\"https://gutenbergtimes.com/discussion-going-from-creating-classic-themes-to-building-block-themes/\">Discussion: Going from Creating classic themes to Building block themes</a></li>\n\n\n\n<li><a href=\"https://gutenbergtimes.com/live-q-a-updates-to-site-editor-fse-and-block-based-themes/\">Live Q &amp; A: Updates to Full-Site Editing and Block-based Themes</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Questions</h2>\n\n\n\n<p><a href=\"https://gutenbergtimes.com/quick-tip-how-to-use-a-classic-menu-in-the-navigation-block-of-a-block-theme/\">Quick Tip: How to use a classic menu in the navigation block of a block theme</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Upcoming Events</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2024/01/17/media-phase-3-meeting-feb-7/\">Phase 3 Media Meeting: February 7, 2024</a></li>\n\n\n\n<li><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/298440719/\">Live stream: Reviewing Gutenberg 17.5</a></li>\n\n\n\n<li>Extensibility Issues Triage meeting Jan 23 at 12:00 UTC</li>\n\n\n\n<li>February 8th, 2023 15:00 UTC- There will be a Hallway Hangout to discuss Intrinsic Design and how to use it on real life projects</li>\n\n\n\n<li>February 13, 2024, at 16:00 UTC&nbsp;<a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/298634428/\">Developer Hours: JavaScript for modern WordPress development</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Data Views &amp; Extensibility</h2>\n\n\n\n<ul>\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/55083#issuecomment-1893398270\">DataViews: Improve all the table and list views in the site editor and further.</a>&nbsp;#55083 (Riad Benguella&#8217;s response regarding extensibility of new admin views</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/blob/trunk/packages/dataviews/README.md\">Documentation of @wordpress/dataviews package</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Community Contributions</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/test/2024/01/13/early-opportunities-to-test-wordpress-6-5/\">Early Opportunities to Test WordPress 6.5</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2024/01/12/call-for-mentees-mentors-cohort-2/\">Call for Mentees &amp; Mentors: Contributor Mentorship Program Cohort #2 (2024 Q1)</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">What&#8217;s released</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2024/01/18/wordpress-6-5-release-squad-formation/\">WordPress 6.5 release squad formation</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/01/16/6-4-3-an-upcoming-maintenance-release/\">6.4.3: An upcoming maintenance release</a></li>\n\n\n\n<li></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/01/17/whats-new-in-gutenberg-17-5-17-january-2024/\">What’s new in Gutenberg 17.5? (17 January 2024)</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">What&#8217;s in the works and discussed</h2>\n\n\n\n<p></p>\n\n\n\n<ul>\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/57841\"><strong>Try reducing specificity of global styles block selector.</strong></a></li>\n\n\n\n<li>Section Styling, Colorways, and Typesets for WP 6.5 &gt; <a href=\"https://github.com/WordPress/gutenberg/issues/57537#issuecomment-1895419662\"><strong>Summary of Explorations and the Current Approach</strong></a></li>\n</ul>\n\n\n\n<p class=\"has-large-font-size\">Stay in Touch</p>\n\n\n\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow\">\n<ul>\n<li>Did you like this episode? <a href=\"https://lovethepodcast.com/gutenbergchangelog\"><strong>Please write us a review </strong></a></li>\n\n\n\n<li>Ping us on Twitter or send DMs with questions. <a href=\"https://twitter.com/gutenbergtimes\">@gutenbergtimes </a>and <a href=\"https://twitter.com/bph\">@bph</a>.</li>\n\n\n\n<li><em>If you have questions or suggestions, or news you want us to include, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. </em></li>\n\n\n\n<li><em>Please write us a review on iTunes! <a href=\"https://gutenbergtimes.com/itunes/\">(Click here to learn how)</a></em></li>\n</ul>\n</div></div>\n\n\n\n<p class=\"has-large-font-size\" id=\"transcript\"><strong>Transcript</strong></p>\n\n\n\n<p>The transcript is in the works. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 21 Jan 2024 13:34:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:118:\"Gutenberg Times: Media Experiments, WordPress 6.5, Gutenberg 17.5 and block building tutorials — Weekend Edition 281\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=27026\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:121:\"https://gutenbergtimes.com/media-experiments-wordpress-6-5-gutenberg-17-5-and-block-building-updates-weekend-edition-218/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:23550:\"<p>Howdy, </p>\n\n\n\n<p>Work on the next major WordPress release, 6.5 is in full swing. Two more Gutenberg plugin releases and Beta 1 will be upon us. You&#8217;ll find more information below, including additional resources. It&#8217;s the first release since 6.0 that I won&#8217;t be on the release squad, by choice. I will, of course, support it anyway I can.</p>\n\n\n\n<p>More about block editor, themes, plugins and tutorials, as always, below.</p>\n\n\n\n<p>Wishing everyone in the Northern Hemisphere to stay warm and a wonderful weekend for all of us. </p>\n\n\n\n<p>Yours, 💕<br /><em>Birgit</em></p>\n\n\n\n<p>PS <strong>for WordCamp Attendees: </strong></p>\n\n\n\n<a href=\"https://asia.wordcamp.org/2024/\"><img width=\"652\" height=\"343\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/01/wcasia2024.webp?resize=652%2C343&ssl=1\" alt=\"\" class=\"wp-image-27071\" /></a>\n\n\n\n<p>If you&#8217;d like to meet with me, feel free to <a href=\"https://calendly.com/pauli-haack/wcasia\">use my Calendly link to my public calendar</a> to schedule a get-together. I&#8217;ll be in Taipei, Taiwan a couple of days early in will scout out some meeting locations. </p>\n\n\n\n<p>My friend and college <strong>Ryan Welcher</strong> will also be in Taipei, Taiwan. If you want to meet with him as well, you can <a href=\"https://calendly.com/ryan-welcher/wordcamp-asia-2024?from=slack\">use his Calendly link</a> to schedule a meeting</p>\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<ol><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/media-experiments-wordpress-6-5-gutenberg-17-5-and-block-building-updates-weekend-edition-218/#0-word-press-release-information\">Developing Gutenberg and WordPress</a><ol><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/media-experiments-wordpress-6-5-gutenberg-17-5-and-block-building-updates-weekend-edition-218/#wordpress-6-5\">WordPress 6.5 </a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/media-experiments-wordpress-6-5-gutenberg-17-5-and-block-building-updates-weekend-edition-218/#wordpress-6-4-3\">WordPress 6.4.3</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/media-experiments-wordpress-6-5-gutenberg-17-5-and-block-building-updates-weekend-edition-218/#gutenberg-17-5\">Gutenberg 17.5</a></li></ol></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/media-experiments-wordpress-6-5-gutenberg-17-5-and-block-building-updates-weekend-edition-218/#upcoming-events\">Upcoming events</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/media-experiments-wordpress-6-5-gutenberg-17-5-and-block-building-updates-weekend-edition-218/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/media-experiments-wordpress-6-5-gutenberg-17-5-and-block-building-updates-weekend-edition-218/#2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/media-experiments-wordpress-6-5-gutenberg-17-5-and-block-building-updates-weekend-edition-218/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor.</a></li></ol>\n</div></div>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"wordpress-6-5\">WordPress 6.5 </h3>\n\n\n\n<p><strong>Hector Prieto</strong>, co-release coordinator,  posted the full release squad for WordPress 6.5: <a href=\"https://make.wordpress.org/core/2024/01/18/wordpress-6-5-release-squad-formation/\">WordPress 6.5 <strong>release squad formation</strong></a> &#8211; a new role is Default Themes lead, suggested by Carolina Nymark, who will also lead the first time around. In her suggestion, she mentioned that it would be great to make sure default themes bundled with WordPress are all compatible with the improvements and features of the Block editor. The abbreviated release schedule: </p>\n\n\n\n<ul>\n<li><strong>Feb 13, 2024, Beta 1 </strong>&#8211; Gutenberg 17.7 will be the last version for features in WordPress 6.5</li>\n\n\n\n<li><strong>March 5, 2024, Release Candidate 1</strong> with Fieldguide and Dev Notes deadline</li>\n\n\n\n<li><strong>March 26, 2024, Final Release</strong> </li>\n</ul>\n\n\n\n<p>From the Dev Chat Summary by <a href=\"https://make.wordpress.org/core/2024/01/16/dev-chat-agenda-january-16-2024/\"><strong>Abha Thakor</strong></a><br />&#8220;Note update on the&nbsp;<a href=\"https://core.trac.wordpress.org/ticket/59166#comment:21\" target=\"_blank\" rel=\"noreferrer noopener\">Font Library API design proposal,</a>&nbsp;with a particular note for REST API folks to view as&nbsp;<a href=\"https://github.com/WordPress/gutenberg/issues/57616#issuecomment-1884806194\" target=\"_blank\" rel=\"noreferrer noopener\">per this comment</a>. The navigation overlay has&nbsp;<a href=\"https://github.com/WordPress/gutenberg/issues/43852#issuecomment-1888088839\" target=\"_blank\" rel=\"noreferrer noopener\">been punted from the 6.5 roadmap</a>&nbsp;by the contributors working on this feature.&#8221;</p>\n\n\n\n<p><strong>More resources: </strong></p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/6-5/\">WordPress 6.5 Development Cycle</a> Full schedule and release squad</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2024/01/13/early-opportunities-to-test-wordpress-6-5/\">Early Opportunities to Test WordPress 6.5</a>&nbsp;</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/12/07/roadmap-to-6-5/\">Roadmap to 6.5</a></li>\n\n\n\n<li><a href=\"https://github.com/orgs/WordPress/projects/148\">WordPress 6.5 Editor Tasks board</a></li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Anne McCarthy</strong> invited contributors to a <strong><a href=\"https://make.wordpress.org/core/2024/01/17/hallway-hangout-lets-explore-wordpress-6-5-recap/\">Hallway Hangout to explore WordPress 6.5</a></strong> at its current stage and posted a Recap with links and video recording. You learn more about the upcoming Data views, the new Drag and Drop features in the editor, as well as the work behind the Pattern Overrides (former partially synched patterns) and the improved Style revision screens. Demos by Anne McCarthy, Isabel Brison and Saxon Fletcher.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>If you want to dive in a little deeper into the various features, here is your reminder: <strong>Anne McCarthy</strong> also posted <a href=\"https://make.wordpress.org/test/2024/01/13/early-opportunities-to-test-wordpress-6-5/\"><strong>Early Opportunities to Test WordPress 6.5</strong></a> with clear instructions on what exactly to test, and how to set up a test site for this exercise. All. feedback is welcome, post it either on GitHub or as a comment on the post.</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"wordpress-6-4-3\">WordPress 6.4.3</h3>\n\n\n\n<p><strong>Aaron Jorbin</strong>, release lead for 6.4.3 just announced the schedule and content for the next minor WordPress  release. <a href=\"https://make.wordpress.org/core/2024/01/16/6-4-3-an-upcoming-maintenance-release/\"><strong>6.4.3: An upcoming maintenance release</strong></a>. Final release is scheduled for next week, January 30, 2024. </p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"gutenberg-17-5\">Gutenberg 17.5</h3>\n\n\n\n<p><strong>Ben Dwyer</strong> managed this week&#8217;s Gutenberg plugin release and published <strong><a href=\"https://make.wordpress.org/core/2024/01/17/whats-new-in-gutenberg-17-5-17-january-2024/\">What’s new in Gutenberg 17.5? (17 January 2024)</a> </strong>. 178 PRs were merged for this release by 45 contributors, two of them first timers. This release is dominated by a lot of foundational work on site editor to allow for feature parity with the post editor and for the Data views, that are still experimental. Dwyer highlighted: </p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2024/01/17/whats-new-in-gutenberg-17-5-17-january-2024/#editor-unification-1\">Editor Unification</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/01/17/whats-new-in-gutenberg-17-5-17-january-2024/#gallery-block-random-order-setting\">Gallery Block: Random Order Setting</a></li>\n\n\n\n<li>Post&nbsp;Featured Image: Add a <code>useFirstImageFromPost</code> attribute. (<a href=\"https://github.com/WordPress/gutenberg/pull/56573\">56573</a>)</li>\n\n\n\n<li>Add drag cursor to draggable list items. (<a href=\"https://github.com/WordPress/gutenberg/pull/57493\">57493</a>)</li>\n\n\n\n<li>Font Library: Add a progress bar while uploading font assets. (<a href=\"https://github.com/WordPress/gutenberg/pull/57463\">57463</a>)</li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Gutenberg 17.5</strong> was also part of the Gutenberg Changelog chat with <strong>Carolina Nymark</strong>. We discussed block themes, migration to block themes, the new role on the release squad and lots more. It was wonderful to finally catch up again and talk about her fantastic work on fullsiteediting.com and on the themes team for all those years. The episode will drop into your favorite podcast app over the weekend. </p>\n\n\n\n<img width=\"652\" height=\"189\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/01/Screenshot-2024-01-20-at-11.42.58.png?resize=652%2C189&ssl=1\" alt=\"\" class=\"wp-image-27074\" />\n\n\n\n<p class=\"has-accent-color has-light-background-background-color has-text-color has-background has-link-color wp-elements-b21294d93d10468b5f9c6136fdd74073\">🎙️ Latest episode:  <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-94-state-of-the-word-gutenberg-17-2-17-3-and-17-4-wordpress-6-5-migrating-from-classic-theme-to-block-theme/\">Gutenberg Changelog #94 – State of the Word, Gutenberg 17.2, 17.3 and 17.4, WordPress 6.5, Migrating from Classic Theme to Block Theme</a> with Sarah Norris</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"upcoming-events\">Upcoming events</h2>\n\n\n\n<p><strong>January 23, 2024, at 12:00 UTC.</strong> <strong>Extensibility Issues Triage meeting</strong> We will go over the <a href=\"https://github.com/orgs/WordPress/projects/146\">project board’s</a> columns: Triage, Needs discussion and PR in reviews. It will be a Slack meeting in the #core-editor channel.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>January 25, 2024, at 15:30 UTC</strong> &#8211; Developer <a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/298440719/\"><strong>Live stream: Reviewing Gutenberg 17.5</strong></a> Ryan Welcher is also doing a review of Gutenberg 17.5 on Twitch. It’s a live stream, so not prepared slide etc.&nbsp;</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2024/01/17/media-phase-3-meeting-feb-7/\"><strong>Phase 3 Media Meeting: February 7, 2024,</strong></a> at 12:00 UTC, Anthony Burchell wrote: “kick off a round table discussion about some opportunities and challenges ahead in the development of Phase 3. The Media Component Maintainers hope to find areas of focus where contributors can lean in to align efforts with folks working on Phase 3.”</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>February 8th, 202</strong>4 <strong>15:00 UTC</strong>: There will be <strong>a Hallway Hangout</strong> to discuss <strong>Intrinsic Design and how to use it on real life projects</strong></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>F<strong>ebruary 13, 2024, at 16:00 UTC</strong> <strong><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/298634428/\">Developer Hours: JavaScript for modern WordPress development</a></strong></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<ul>\n<li>More events are planned to Learn.WordPress . Here is their schedule of <a href=\"https://learn.wordpress.org/online-workshops/\"><strong>Online Workshops</strong></a> </li>\n\n\n\n<li>If you are looking for a WordCamp or Meetup near you, take a look at the new <strong><a href=\"https://events.wordpress.org/\">WordPress events page. </a></strong></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p>In <a href=\"https://dothewoo.io/woo-product-chat/\">Doo the Woo Product</a> podcast episode: <a href=\"https://dothewoo.io/gutenberg-present-to-beginnings/\">Gutenberg, the Beginning to the Present, </a>Tammie Lister and Jonathan Wold discuss block editor and WordPress. They cover State of the Word, upcoming changes and what it means to Woo and WordPress as a whole. Learn more about the progress on the WordPress way.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Robert DeVore</strong> posted <a href=\"https://robertdevore.com/boostbox-wordpress-popup-builder-for-the-core-editor/\">Introducing BoostBox: The 1st WordPress popup builder for the core editor</a> about his journey to push his newest plugin <a href=\"https://wordpress.org/plugins/boostbox/\"><strong>BoostBox</strong></a> over the finish line. It&#8217;s available via the WordPress repo. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>A user posted in the forum, that it wasn&#8217;t clear if he needed to recreate all the menus he used in the classic theme, again to display them on the block theme. The answer is no; however, it&#8217;s not as obvious where to find the menu item to make a classic menu available to the block theme navigation block. Here are the instructions and a video. <a href=\"https://gutenbergtimes.com/quick-tip-how-to-use-a-classic-menu-in-the-navigation-block-of-a-block-theme/\"><strong>Quick Tip: How to use a classic menu in the navigation block of a block theme</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Ana Segota</strong>, of Anariel Design, published a new Woo Theme, <a href=\"https://woo.com/products/fuel/\">Fuel</a>, meant for food related businesses. It entails plenty of patterns and color options to style the site of a food store. </p>\n\n\n\n<a href=\"https://woo.com/products/fuel/\"><img width=\"652\" height=\"489\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/01/fuel-screens.webp?resize=652%2C489&ssl=1\" alt=\"\" class=\"wp-image-27076\" /></a>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><a href=\"https://twitter.com/wordcandy_co\"><strong>John Hughes</strong></a> found four methods on <a href=\"https://www.codeinwp.com/blog/wordpress-sticky-header/\">How to Create a Sticky Header in WordPress</a> and in his post he walks you through all of them. Hughes also explains some consideration and best practices for using Sticky headers in the first place.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Pascal Birchler</strong>, core contributor sponsored by Google, and Core Co-release lead for WordPress 6.5 experimented with media handling in Gutenberg and WordPress. He centralized all his experiments in the plugin <a href=\"https://github.com/swissspidy/media-experiments\"><strong>Media Experiments</strong></a> that available on GitHub. </p>\n\n\n\n<p><strong>Nathan Wrigley</strong> had Birchler on as a guest on the WPTavern Jukebox podcast. <a href=\"https://wptavern.com/podcast/105-pascal-birchler-on-revolutionizing-image-and-video-processing-within-wordpress\"><strong>#105 – Pascal Birchler on Revolutionizing Image and Video Processing Within WordPress</strong></a>, where they discussed the power of WebAssembly, the future potential for moving desktop activities to the web, and Birchler’s innovative work in image and video processing.</p>\n\n\n\n<p>The list of features of the plugin is spectacular, yet all experimental, more proof-of-concept rather than production ready. For some of them, you&#8217;ll find short videos on how they work: </p>\n\n\n\n<ul>\n<li><a href=\"https://github.com/swissspidy/media-experiments?tab=readme-ov-file#automatic-poster-generation\">Automatic Poster Generation</a></li>\n\n\n\n<li><a href=\"https://github.com/swissspidy/media-experiments?tab=readme-ov-file#preview-image-generation-for-pdfs\">Preview image generation for PDFs</a></li>\n\n\n\n<li><a href=\"https://github.com/swissspidy/media-experiments?tab=readme-ov-file#converting-gifs-to-videos\">Converting GIFs to Videos</a></li>\n\n\n\n<li><a href=\"https://github.com/swissspidy/media-experiments?tab=readme-ov-file#video-muting\">Video Muting</a></li>\n\n\n\n<li><a href=\"https://github.com/swissspidy/media-experiments?tab=readme-ov-file#self-recording\">Self Recording</a></li>\n\n\n\n<li><a href=\"https://github.com/swissspidy/media-experiments?tab=readme-ov-file#optimize-existing-media\">Optimize Existing Media</a> </li>\n\n\n\n<li><a href=\"https://github.com/swissspidy/media-experiments?tab=readme-ov-file#upload-from-another-device\">Upload from another device</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p>After the revamp of the Theme Handbook to include making block themes, <strong>Justin Tadlock</strong> posted about the project and what will be next:  <strong><a href=\"https://make.wordpress.org/themes/2024/01/11/new-block-focused-theme-handbook-docs-and-whats-coming-in-2024/\">New Block-Focused Theme Handbook Docs and What’s Coming in 2024</a>. </strong></p>\n\n\n\n<p>If you haven&#8217;t explored the Theme Handbook lately, the team create five new chapters in 2023:</p>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/themes/getting-started/\">Getting Started</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/themes/core-concepts/\">Core Concepts</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/themes/global-settings-and-styles/\">Global Settings and Styles (theme.json)</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/themes/templates/\">Templates</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/themes/features/\">Features</a></li>\n</ul>\n\n\n\n<p>For 2024, the team is also onboarding new contributors, to do the heavy lifting of creating the Advanced Topics for Themes. </p>\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2022&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test, and Meta team from Jan. 2021 on. Updated by yours truly. <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\"><em>The index 2020 is here</em></a></p>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor.</h2>\n\n\n\n<p><strong>Nathan Schneider</strong> posted a tutorial on <a href=\"https://developer.woo.com/2024/01/17/getting-to-know-woo-extending-the-new-product-editor-with-react/\"><strong>Extending the New Product Editor with&nbsp;React</strong></a> on the Woo Developer Blog and covered how to create two blocks that enforce minimum and maximum quantity on text inputs.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Brian Coords</strong> shared his <a href=\"https://www.briancoords.com/thoughts-on-version-control-for-block-themes/\"><strong>Thoughts on Version Control for Block Themes</strong></a> and what he thinks could work and make his life as a developer easier.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><a href=\"https://youtu.be/zSU-JOGDcGs\"><strong>The recording of the latest Developer Hours</strong></a> is now available. <strong>Nick Diego</strong> and <strong>Ryan Welcher </strong>walked attendees through the <a href=\"https://developer.wordpress.org/block-editor/getting-started/tutorial/\">official Getting Started tutorial of the Block Editor Handbook</a> and explained every step of the journey. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/mattyza\">Matt Cohen</a></strong>, engineer lead at Woo Marketplace, published <a href=\"https://matty.blog/building-a-terms-list-block-for-wordpress/\"><strong>how he built  a terms list block for WordPress</strong></a>. He shared his research and approach, as well as his code on GitHub. you learn how to add a custom control to select taxonomies, and his lesson&#8217;s learned. </p>\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<p class=\"has-text-align-right has-small-font-size\"><em>Questions? Suggestions? Ideas? Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or send me a message on WordPress Slack or Twitter @bph</em>. </p>\n\n\n\n<p class=\"has-text-align-right has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p>Featured Image: Industrial Storage Space CC0 licensed photo by Makarand G. Mane from the WordPress Photo Directory.</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too, and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 20 Jan 2024 10:20:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"WordCamp Central: Thanks for sponsoring global WordPress community events across the globe, Bluehost!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://central.wordcamp.org/?p=5109960\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:124:\"https://central.wordcamp.org/news/2024/01/thanks-for-sponsoring-global-wordpress-community-events-across-the-globe-bluehost/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1215:\"<p>We can&#8217;t thank <a href=\"https://www.bluehost.com/\">Bluehost</a> enough for renewing their support as a global sponsor for the <a href=\"https://central.wordcamp.org/sponsor-multiple-wordcamps/\">global WordPress community</a> in 2024! Their support of WordPress community events at our Gold level worldwide goes a really long way. They support WordPress communities all over the world!</p>\n\n\n<div class=\"wp-block-image\">\n<a href=\"https://central.wordcamp.org/files/2019/02/Bluehost-Transparent_HighRes.png\"><img width=\"833\" height=\"220\" src=\"https://central.wordcamp.org/files/2019/02/Bluehost-Transparent_HighRes.png\" alt=\"Bluehost logo\" class=\"wp-image-3096744\" /></a>Bluehost logo</div>\n\n\n<p><a href=\"https://www.bluehost.com/\">Bluehost</a> has been a WordPress partner since 2005 and powers over 1 million WordPress sites worldwide. Their objective is to help customers, whether novice or pro, create a thriving online presence at an affordable price. With a team of in-house tech experts available 24/7, Bluehost dedicates time and resources to providing the best support and services in the industry. Join millions of other site owners and see what Bluehost can do for you and your online presence.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 19 Jan 2024 15:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Isotta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"Akismet: Forum Spam: How to Permanently Stop Spam Bot Registrations\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://akismet.com/?p=283701\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"https://akismet.com/blog/forum-spam/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:24853:\"<p>Creating a forum for your organization can be an excellent way to build a community around your product or service. And the information provided in a forum can help customers resolve issues on their own —&nbsp;reducing customer service costs and improving satisfaction. But if you’re not careful, forum spam can detract from the entire experience for members and reflect poorly on your brand.</p>\n\n\n<p>Fortunately, there are tools you can use to stop forum spam. When you leverage this kind of software, your customers won’t have to sift through pesky fake comments and posts to find what they’re looking for. They won’t be directed off&#8209;site for malicious purposes, and you’ll be able to maintain a more professional&nbsp;environment.</p>\n\n<p>This article will start by discussing forum spam and all its variations. Then, it will outline the negative effects of spam and why certain anti&#8209;spam techniques fail to block it. Finally, it will show you how <a href=\"https://akismet.com/enterprise/\">Akismet’s enterprise anti&#8209;spam services</a> can stop spam registrations on your&nbsp;website.</p>\n\n\n<span id=\"more-283701\"></span>\n\n\n<h2 class=\"wp-block-heading\">What is forum&nbsp;spam?</h2>\n\n\n<p>Whether you run a small business or a global enterprise, creating a forum is an effective way to connect with your customers. They provide people with a space to discuss (and potentially resolve) their doubts and issues. And a forum can even lighten the load on your customer support team.&nbsp;</p>\n\n\n<p>The only problem is that forums can become a den for&nbsp;spammers.</p>\n\n<p>By definition, web spam is any sort of unwanted message shared with a large number of people online. This can appear in email inboxes, the comments section of a blog post or YouTube video, a contact form, and, of course, a&nbsp;forum.</p>\n\n\n<img width=\"1448\" height=\"566\" src=\"https://akismet455732288.files.wordpress.com/2024/01/image-2.png\" alt=\"example of a spam comment\" class=\"wp-image-283703\" />\n\n\n\n<p>Typically, forum spam is generated by bots with a particular goal in mind. For instance, a forum spammer may want to promote a certain product to the members. This is usually quite obvious, as they clutter the forum with messages spouting the benefits of whatever they’re selling.&nbsp;</p>\n\n\n\n<p>Other times, spam can be harder to spot. These cases can be even more dangerous, as instances can contain hidden links to malicious sites.&nbsp;</p>\n\n\n<p>There are several different types of forum spam, like content spam, profile spam, signature spam, and private messages. We’ll cover these later in the&nbsp;post.</p>\n\n<p>If a forum doesn’t have a moderator or anti&#8209;spam software in place, spam can get out of hand quickly. And even if it does have a moderator, sifting through huge volumes of spam can be a poor use of&nbsp;time.</p>\n\n<h2 class=\"wp-block-heading\">What are the motivations behind forum&nbsp;spam?</h2>\n\n<p>You might be wondering why spam happens. Here are some common goals of&nbsp;spammers:</p>\n\n\n<ul>\n<li><strong>Promote a product or service</strong>. Forum spammers tend to promote unsavory products and services like gambling sites or unregulated weight loss pills.&nbsp;</li>\n\n\n<li><strong>Harvest personal data</strong>. Often, spam comments will contain links to malware. If a visitor clicks on the link, hackers may be able to gain access to their personal&nbsp;data.</li>\n\n<li><strong>Conduct a phishing scam</strong>: Malicious actors may try to lure unsuspecting victims into phishing scams by pretending to be legitimate companies. They may link to websites that look like a real corporation and then ask users to verify account information. However, that info is just sent to a&nbsp;cybercriminal.</li>\n\n<li><strong>Boost search engine rankings</strong>. If your domain has a decent amount of traffic, spammers may want to post links in your forum that point back to their website. This way, they can generate backlinks and trick Google into thinking they’ve been endorsed by your site. This could improve their rankings in search&nbsp;results.</li></ul>\n\n\n<p>These are some of the most common motivations for posting forum spam. Unfortunately, spam is always evolving, so it’s important to be wary of any suspicious activity on your&nbsp;forum.</p>\n\n<h2 class=\"wp-block-heading\">What are the main types of forum&nbsp;spam?</h2>\n\n<p>To stop spam, you’ll need to understand its various formats. Here are the four most common types of&nbsp;spam:</p>\n\n<h3 class=\"wp-block-heading\">1. Content&nbsp;spam</h3>\n\n\n<p>Content spam refers to anything that’s off-topic or irrelevant to the page that it appears on. Forums are usually centered around a niche subject, so this type of spam should be easy to spot.&nbsp;</p>\n\n\n\n<p>Content spam is usually employed to promote a product or service and can contain links to another website.&nbsp;</p>\n\n\n<h3 class=\"wp-block-heading\">2. Profile&nbsp;spam</h3>\n\n<p>To participate in an online forum, members will likely need to create a profile or an account. Forum spammers can use these profiles to spread spam without anyone&nbsp;noticing.</p>\n\n<p>A spam account can embed hidden links into its profile. The most common example is a link in the username. But spammers might also include a link in the bio section of the&nbsp;profile.</p>\n\n<p>Each time a forum spammer posts a message or someone views their profile, this link will be visible to members. But unless someone clicks on it, no one would know it’s&nbsp;there.</p>\n\n<p>This type of forum spam is commonly used in an attempt to trick search engines or promote a&nbsp;product.</p>\n\n<h3 class=\"wp-block-heading\">3. Signature&nbsp;spam</h3>\n\n\n<p>Signature spam is a type of profile spam. Instead of hiding links in usernames and profiles, spammers include them in their signatures.&nbsp;</p>\n\n\n\n<p>That means that they embed a link each time they comment or post. The rest of their comment might be completely legitimate —&nbsp;and thus their work is less likely to be detected. This is another way to manipulate search engines for higher rankings.</p>\n\n\n<h3 class=\"wp-block-heading\">4. Private message&nbsp;spam</h3>\n\n<p>As the name suggests, private message spam is sent to members of a forum. Considering that these messages don’t impact search engine rankings, this type of spam almost always has an intention of direct harm to your forum&nbsp;members.</p>\n\n<p>With private messaging, forum spammers can promote products, harvest personal data through malware in links, or set up phishing scams. This can be particularly dangerous because moderators are unable to see or stop this spam. It’s up to forum members to flag&nbsp;it.</p>\n\n<h2 class=\"wp-block-heading\">What are the consequences of spam on a&nbsp;forum?</h2>\n\n\n<p>This section will discuss the consequences of spam on a forum. These apply to both enterprises and small businesses.&nbsp;</p>\n\n\n<h3 class=\"wp-block-heading\">1. A degraded user&nbsp;experience</h3>\n\n<p>Online forums are intended to create a dedicated space on the internet for a specific community. Forum members can post questions and raise concerns, or simply start a conversation around a certain topic that they find interesting or&nbsp;important.</p>\n\n<p>In many cases, online forums can provide additional value to customers in the form of educational content. But if a forum is cluttered with spam, its members will likely have a hard time sifting through its posts. It will be up to them to figure out which comments are genuine and which ones are&nbsp;spam.</p>\n\n<p>This will lead to a degraded user experience. It could even prompt members to abandon your&nbsp;forum.</p>\n\n<h3 class=\"wp-block-heading\">2. Damaged forum&nbsp;reputation</h3>\n\n<p>If a forum becomes overrun by spam, most members will assume that there aren’t any moderators to manage it. They might also think that the business or enterprise behind the forum hasn’t invested in any security measures to prevent forum spam and protect&nbsp;visitors.</p>\n\n<p>These perceptions can damage your reputation. Plus, it might prompt some people to look for other, more credible online&nbsp;communities.</p>\n\n<h3 class=\"wp-block-heading\">3. SEO&nbsp;implications</h3>\n\n<p>Search engine bots are always implementing new ways to spot untrustworthy web pages. This is because Google (and other search sites) want to provide internet users with the best experience&nbsp;possible.</p>\n\n\n<p>If your forum is littered with content that spammers are posting to manipulate their rankings, or links to malware and untrustworthy sites, there’s a good chance that search engines will catch on.&nbsp;</p>\n\n\n\n<p>Since software like <a href=\"https://developers.google.com/search/docs/crawling-indexing/googlebot\" target=\"_blank\" rel=\"noreferrer noopener\">Googlebot</a> can’t tell who is attempting to manipulate it, it could end up penalizing your forum, rather than the perpetrators using it to do harm.&nbsp;</p>\n\n\n<p>This means forum spammers can hurt your website’s search engine rankings while attempting to boost their own. Your web pages may be removed from search results until you can prove their legitimacy. This will involve removing spam links and asking Google to <a href=\"https://developers.google.com/search/docs/crawling-indexing/ask-google-to-recrawl\">recrawl your&nbsp;site</a>.</p>\n\n<h3 class=\"wp-block-heading\">4. Security threats like malware and phishing&nbsp;links</h3>\n\n<p>Some of the more nefarious types of spam include malware and phishing attempts. These can have serious consequences for your business and&nbsp;customers.</p>\n\n\n<p>That’s because this type of spam puts sensitive data at risk. Spammers can gain access to personal information like names, email addresses, and phone numbers. As a result, affected individuals will receive spammy messages through email or SMS, or their data may be sold off.&nbsp;</p>\n\n\n<h3 class=\"wp-block-heading\">5. Time and resource&nbsp;wastage</h3>\n\n\n<p>When your forum is plagued with spam, you’ll end up wasting resources on eliminating it.&nbsp;</p>\n\n\n\n<p>For instance, if you employ someone to <a href=\"https://akismet.com/blog/how-to-stop-comment-spam-in-wordpress/\">moderate and block spam comments</a> as part of their daily work routine, they may be spending too much time on these messages. That means less time to focus on more important tasks, like answering customer queries.&nbsp;</p>\n\n\n\n<p>Similarly, any spammer is consuming your website’s server resources. Depending on the level of spam you’re dealing with, this could result in lots of wasted server space.&nbsp;</p>\n\n\n<p>The costs associated with hosting for enterprise organizations can get out of hand quickly. Working with efficiency in mind and proactively protecting resources is important. And for small businesses with a modest hosting plan, large volumes of spam could even impact site&nbsp;performance.</p>\n\n<h2 class=\"wp-block-heading\">Common characteristics of spambot&nbsp;registrations</h2>\n\n<p>Having an understanding of the different types of forum spam can help you identify spam more easily. Still, it’s always better to stop spam before it can infiltrate your&nbsp;forum.</p>\n\n<p>Here are some of the common characteristics of spambot&nbsp;registrations:</p>\n\n<h3 class=\"wp-block-heading\">1. Generic&nbsp;usernames</h3>\n\n\n<p>Spambots aren’t very creative. So, one way to spot them is by looking out for generic usernames.&nbsp;</p>\n\n\n<p>These include usernames like “lucky_guy” or “shy_gal”. Of course, spambots can also incorporate fake generic names into their&nbsp;handles.</p>\n\n<h3 class=\"wp-block-heading\">2. Suspicious email&nbsp;domains</h3>\n\n\n<p>Some of the most common email domains are gmail.com, yahoo.com, and outlook.com. They are all associated with reputable email providers.&nbsp;</p>\n\n\n\n<p>A suspicious or unfamiliar email domain could indicate a forum spammer. Spam accounts are more likely to use these email providers as they may not meet the security requirements to create a legitimate address.&nbsp;</p>\n\n\n<h3 class=\"wp-block-heading\">3. IP addresses associated with&nbsp;spam</h3>\n\n<p>If you suspect that a forum spammer has infiltrated your online community, you can look into the IP address associated with that spam account. This can help you confirm or deny the legitimacy of the&nbsp;account.</p>\n\n<p>You’ll have to look at the server logs and <a href=\"https://akismet.com/blog/how-to-block-a-specific-ip-address-from-a-wordpress-website/\">find the IP address</a> associated with the spammy comment. Note that you won’t be able to do this with private message spam, as you’ll need access to the comment or&nbsp;post.</p>\n\n\n<img width=\"1264\" height=\"502\" src=\"https://akismet455732288.files.wordpress.com/2024/01/image-3.png\" alt=\"finding a spammy IP address\" class=\"wp-image-283704\" />\n\n\n<h2 class=\"wp-block-heading\">Common actions of forum&nbsp;spammers</h2>\n\n\n<p>This section will outline some of the most common actions by forum spammers. Hopefully, this will help you identify them more easily.&nbsp;</p>\n\n\n<h3 class=\"wp-block-heading\">1. Replying to old/inactive&nbsp;threads</h3>\n\n<p>If a forum spammer wants to utilize your website’s authority to boost their search engine rankings, they’ll often reply to old and inactive&nbsp;threads.</p>\n\n<p>That’s because older forum threads will have received more traffic and better rankings in search results. If your forum has been active for several years, these actions should be easy to&nbsp;spot.</p>\n\n<h3 class=\"wp-block-heading\">2. Leaving minimal replies with links&nbsp;included</h3>\n\n\n<p>Since a spammer has no intention of actually contributing to your online community, they tend to leave short replies with a link included.&nbsp;</p>\n\n\n\n<p>While they may offer a brief comment, this is likely something generic that has been programmed into the spambot’s capabilities. For instance, you might get something like “great content!” or “love this!”.&nbsp;</p>\n\n\n<h3 class=\"wp-block-heading\">3. Placing a link and website description in their&nbsp;profile</h3>\n\n<p>Profile spam is very common on online forums. You’ll often see a spammer place a link and website description in their profile. In this scenario, the spammer is likely trying to promote a product or manipulate search&nbsp;engines.</p>\n\n<h3 class=\"wp-block-heading\">4. Using misleading topic&nbsp;titles</h3>\n\n\n<p>If a member uses a topic title that seems relevant to the forum, but then talks about something different in the thread, this is a major red flag.&nbsp;</p>\n\n\n<p>Essentially, this type of spam is trying to lure members into clicking on a thread by suggesting that it will contain valuable information for them. Once they’ve clicked on the thread, forum members will likely find promotional or otherwise spammy&nbsp;content.</p>\n\n<h3 class=\"wp-block-heading\">5. Posting off&#8209;topic&nbsp;comments</h3>\n\n<p>Another clear giveaway is off&#8209;topic comments. Similar to misleading topic titles (but more blatant), off&#8209;topic comments are explicitly pushing the spammer&#8217;s agenda without even pretending to contribute to the&nbsp;forum.</p>\n\n<h3 class=\"wp-block-heading\">6. Using a website name as their&nbsp;username</h3>\n\n<p>Many forum spammers use a website as their username. This could be a spammy marketing tactic, plain and simple. It could also include a link, which would have <a href=\"https://akismet.com/blog/eliminating-spam-is-good-seo/\">bigger implications for search engine&nbsp;optimization</a>.</p>\n\n<h3 class=\"wp-block-heading\">7. Posting in a different language than the&nbsp;topic</h3>\n\n<p>The great thing about the internet is that people have access to forums in almost every country and every language. People often tend to congregate on forums with like&#8209;minded individuals as well as those with similar backgrounds, so while it’s definitely not a guarantee, a new user that posts in a language rarely used by other members of the forum can signal that they’re not there for anything&nbsp;good.</p>\n\n<h2 class=\"wp-block-heading\">Common anti&#8209;spam techniques (and why they fail to&nbsp;impress)</h2>\n\n<p>Forum spam can be a serious problem, and common anti&#8209;spam techniques might not always be efficient in spotting it. This section will discuss some of the reasons why these approaches&nbsp;fail.</p>\n\n\n<h3 class=\"wp-block-heading\">1. CAPTCHAs&nbsp;</h3>\n\n\n<p>One of the most common anti&#8209;spam methods involves CAPTCHAs. This is particularly common for online forms (like contact forms) and <a href=\"https://akismet.com/blog/how-to-stop-user-spam-registrations-in-wordpress/\">user registration&nbsp;forms</a>.</p>\n\n\n<img width=\"1600\" height=\"423\" src=\"https://akismet455732288.files.wordpress.com/2024/01/image-4.png\" alt=\"example of a CAPTCHA where the user types two words\" class=\"wp-image-283705\" />\n\n\n\n<p>A CAPTCHA presents a challenge or puzzle that spambots should be unable to complete. The theory is that it will prevent them from submitting content, but CAPTCHAs have several limitations.&nbsp;</p>\n\n\n<p>First of all, they’re not 100 percent effective, since <a href=\"https://akismet.com/blog/do-captcha-and-recaptcha-protect-wordpress-sites-from-bots/\">many bots can bypass CAPTCHAs</a>. Plus, they’re not the most accessible anti&#8209;spam tactic, as they can alienate people who have varying&nbsp;impairments.</p>\n\n\n<p>In the past, CAPTCHAs were pretty straightforward. For example, you would have had to interpret some blurry letters and numbers.&nbsp;</p>\n\n\n<p>But CAPTCHAs have become more difficult, even for authentic users who are likely to become pretty frustrated after the first or second failed attempt. These real people might even end up abandoning your site&nbsp;altogether.</p>\n\n\n<p>Newer versions&nbsp;ask users to do things like “find all the images with stoplights.” But they’re just as annoying for humans and still not very effective against robots.&nbsp;</p>\n\n\n\n<p>And even the latest option —&nbsp;reCAPTCHA v3 — seems like an improvement for users, since there’s no visible test required to gain access, but it comes with some serious downsides.&nbsp;</p>\n\n\n\n<p>For example, it provides Google with a lot of data that many are concerned violates the privacy of users. It can deter good bots like search engine crawlers. Finally, and perhaps the most annoying, real users can be flagged as spam without any way to prove their legitimacy.&nbsp;</p>\n\n\n<h3 class=\"wp-block-heading\">2. Question&#8209;based&nbsp;challenges</h3>\n\n<p>Question&#8209;based challenges are another common anti&#8209;spam tactic. Although they aren’t as ubiquitous as CAPTCHAs and reCAPTCHAs, they come with the same&nbsp;limitations.</p>\n\n<p>They can create an obstacle for individuals with different abilities. If they become frustrated enough, they could give up on the challenge. As a result, you could end up losing conversions (or, in this context, new forum&nbsp;members).</p>\n\n\n<h3 class=\"wp-block-heading\">3. Email verification&nbsp;</h3>\n\n\n\n<p>Email verification is another popular way to prevent spambots from infiltrating websites. It’s a bit more user-friendly than a CAPTCHA, but still creates an additional step in the registration process.&nbsp;</p>\n\n\n<p>Since getting conversions is hard enough, this tactic isn’t ideal. You’ll want to avoid any friction and streamline the signup process as much as&nbsp;possible.</p>\n\n<h2 class=\"wp-block-heading\">Akismet: The #1 tool to stop forum spam&nbsp;registrations</h2>\n\n\n<p>So how can you eliminate forum spam without deterring real users? This section will introduce you to an efficient anti-spam tool: Akismet.&nbsp;</p>\n\n\n<h3 class=\"wp-block-heading\">What is&nbsp;Akismet?</h3>\n\n\n<p>Akismet is an automated anti-spam tool that uses advanced AI technology to identify spam without any input from users. It works in the background and has an incredible 99.99% accuracy rate. There are no annoying puzzles to solve, no questions to answer, and no spam in your forums.&nbsp;</p>\n\n\n<p>Whether you run a small business or work at a large company, <a href=\"https://akismet.com/\">Akismet</a> is by far the easiest and most effective way to stop forum&nbsp;spam.</p>\n\n\n<img width=\"1600\" height=\"820\" src=\"https://akismet455732288.files.wordpress.com/2024/01/image-5.png\" alt=\"Akismet homepage with the text \" />\n\n\n<p>While it’s known throughout the WordPress community for its considered to be the <a href=\"https://akismet.com/blog/best-anti-spam-wordpress-plugins-compared/\">best anti&#8209;spam plugin</a> that’s easy to install, it also supports other platforms like Joomla! and Drupal. Developers can even build it into any application thanks to Akismet’s flexible&nbsp;API.</p>\n\n\n<p>When you sign up for an Akismet plan, you’ll be protected from comment and form spam, including spambot registrations and comments on forums.&nbsp;</p>\n\n\n<p>At the time of writing, Akismet has protected more than 100 million websites and blocked over 500 billion instances of&nbsp;spam.</p>\n\n\n<p>The value is immediately evident —&nbsp;it’s proven to boost conversions by an average of 3.6% when replacing CAPTCHA. That’s an instant boost in website performance!&nbsp;</p>\n\n\n<h3 class=\"wp-block-heading\">How Akismet&nbsp;works</h3>\n\n<p><a href=\"https://akismet.com/features/\">Akismet</a> is software that you can install on your website. If you have a WordPress website, all you have to do is purchase a plan, and then install and activate the plugin through your&nbsp;dashboard.</p>\n\n\n<p>Depending on your web hosting plan, the free version of the tool may come pre-installed on your website. Non-commercial WordPress sites can use it completely for free.&nbsp;</p>\n\n\n<p>Businesses and other professional organizations can quickly find the ideal plan for them and the elimination of spam and improved user experience will immediately make it&nbsp;worthwhile.</p>\n\n<p>For major organizations, the good news is that Akismet offers custom <a href=\"https://akismet.com/enterprise/\">enterprise plans</a>. In fact, with over 100 million users, it’s the go&#8209;to choice for <a href=\"https://akismet.com/blog/convertkit-customerstory/\">businesses like ConvertKit</a> that use Akismet to boost the performance of their platform by protecting their wide network of business customers from&nbsp;spam.</p>\n\n\n<img width=\"1600\" height=\"1002\" src=\"https://akismet455732288.files.wordpress.com/2024/01/image-6.png\" alt=\"ConverKit homepage\" class=\"wp-image-283707\" />\n\n\n\n<p>Once Akismet is set up, it uses AI filtering and a robust spam database to identify and block spam. Plus, it operates on the cloud, so these processes won’t impact your website’s performance.&nbsp;</p>\n\n\n<p>If you’re using WordPress, Akismet integrates seamlessly with some of the most popular plugins, like <a href=\"https://wordpress.org/plugins/jetpack/\" target=\"_blank\" rel=\"noreferrer noopener\">Jetpack</a> and <a href=\"https://wordpress.org/plugins/formidable/\" target=\"_blank\" rel=\"noreferrer noopener\">Formidable&nbsp;Forms</a>.</p>\n\n<h3 class=\"wp-block-heading\">The benefits of&nbsp;Akismet</h3>\n\n<p>Here are some of the main benefits of using Akismet to stop forum&nbsp;spam:</p>\n\n\n<ul><li>Real&#8209;time, AI&#8209;powered&nbsp;filtering</li>\n\n<li>99.99 percent spam detection&nbsp;accuracy</li>\n\n<li>&#8220;Set it and forget it&#8221;&nbsp;configuration</li>\n\n<li>Compatibility with multiple&nbsp;platforms</li>\n\n<li>No added friction to the user&nbsp;experience</li></ul>\n\n\n<p>In a nutshell, Akismet is powerful software that can stop spam in its tracks. It’s highly effective, easy to configure, and works on multiple platforms. Plus, Akismet stands out from other anti&#8209;spam solutions because it doesn’t add any obstacles for legitimate site&nbsp;visitors.</p>\n\n<p>A seamless anti&#8209;spam solution can greatly improve the effectiveness of your forums. When it comes to contact forms, Akismet can help <a href=\"https://akismet.com/blog/form-conversion-rate/\">increase your conversion rates</a>,&nbsp;too!</p>\n\n<h2 class=\"wp-block-heading\">How to get started with Akismet&nbsp;today</h2>\n\n<p>If you’re currently running a forum or want to start one, you’ll need a strategy to prevent spam. Otherwise, your members could be driven away in annoyance. Plus, if your forum is plagued with spam, it could lead to a drop in your site’s search engine&nbsp;rankings.</p>\n\n<p>That’s why your forum needs an <a href=\"https://akismet.com/enterprise/\">enterprise solution like Akismet</a>. This powerful software uses AI filtering, cloud storage, and seamless integrations to block 99.99% of spam without impacting the user experience or your site’s&nbsp;performance.</p>\n\n<p>Are you ready to stop forum spam? <a href=\"https://akismet.com/talk-to-sales/\">Reach out to the Akismet team&nbsp;today</a>!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 19 Jan 2024 14:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Jen Swisher\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"WordCamp Central: Thanks to Woo for sponsoring community events worldwide\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://central.wordcamp.org/?p=5109963\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"https://central.wordcamp.org/news/2024/01/thanks-to-woo-for-sponsoring-community-events-worldwide/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1012:\"<p>We couldn’t be happier to welcome Woo to the <a href=\"https://central.wordcamp.org/sponsor-multiple-wordcamps/\">WordPress global community sponsorship program</a> in 2024! This year, they’re sponsoring at the Gold level in all regions, supporting official WordPress community events across the globe.</p>\n\n\n<div class=\"wp-block-image\">\n<a href=\"https://central.wordcamp.org/files/2024/01/Woo-logo-color.png\"><img width=\"1024\" height=\"704\" src=\"https://central.wordcamp.org/files/2024/01/Woo-logo-color-1024x704.png\" alt=\"Woo logo 2024\" class=\"wp-image-5129983\" /></a>WooCommerce logo</div>\n\n\n<p><a href=\"https://woo.com/\">Woo</a> is the leading open-source ecommerce platform, powering 31.4% of the top million online stores.* Built on WordPress, Woo empowers anyone, anywhere, to sell anything with truly unlimited extensibility, flexibility, and control over how they build and evolve their business.</p>\n\n\n\n<p>* StoreLeads, <a href=\"https://storeleads.app/reports\">StoreLeads.app, January 2024</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 18 Jan 2024 15:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Isotta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"Do The Woo Community: AI, Accessibility, Security and Privacy in 2024 with Robbie and Robert\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=78883\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://dothewoo.io/woo-agencychat-look-at-2024/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:415:\"<p>Hosts Robbie Adair and Robert Jacobi discuss their predictions for 2024, focusing on the acronym ASP: Accessibility, Security, and Privacy</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/woo-agencychat-look-at-2024/\">AI, Accessibility, Security and Privacy in 2024 with Robbie and Robert</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 18 Jan 2024 10:39:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"Akismet: Version 5.3.1 of the Akismet WordPress plugin is ready to download\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://akismet.com/?p=283692\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"https://akismet.com/blog/version-5-3-1-of-the-akismet-wordpress-plugin-is-ready-to-download/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1004:\"<p>Version 5.3.1 of <a href=\"http://wordpress.org/plugins/akismet/\">the Akismet plugin for WordPress</a> is now&nbsp;available.</p>\n\n<p>In this release, we&#8217;ve added a quick link to get to your <a href=\"https://akismet.com/account/\">Akismet.com account overview</a>. This enables you to see summary of activity across all sites using your API key, and manage your Akismet&nbsp;subscription.</p>\n\n\n<img width=\"1024\" height=\"320\" src=\"https://akismet455732288.files.wordpress.com/2024/01/screenshot-2024-01-16-at-14.41.58.png?w=1024\" alt=\"\" class=\"wp-image-283696\" />\n\n\n<p>There are also a number of bug fixes and improvements and we recommend upgrading if you&#8217;re using an earlier version of the&nbsp;plugin.</p>\n\n<p>To upgrade, visit the Updates page of your WordPress dashboard and follow the instructions. If you need to download the plugin zip file directly, links to all versions are available in <a href=\"http://wordpress.org/plugins/akismet/\">the WordPress plugins&nbsp;directory</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 18 Jan 2024 00:36:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Chris Rosser 🏔\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"WordCamp Central: Automattic sponsors WordPress community events across the globe\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://central.wordcamp.org/?p=5109965\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"https://central.wordcamp.org/news/2024/01/automattic-sponsors-wordpress-community-events-across-the-globe/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2763:\"<p>We&#8217;d like to welcome <a href=\"https://automattic.com/about/\">Automattic</a> to the 2024 Global Sponsorship program! By sponsoring at the Gold level across the globe, Automattic helps make local community events better for WordPress enthusiasts and easier to organize for our wonderful group of hardworking volunteers.</p>\n\n\n<div class=\"wp-block-image\">\n<a href=\"https://central.wordcamp.org/files/2023/03/automattic-logotype-color.png\"><img width=\"1024\" height=\"341\" src=\"https://central.wordcamp.org/files/2023/03/automattic-logotype-color-1024x341.png\" alt=\"Automattic logo\" class=\"wp-image-3163599\" /></a>Automattic logo</div>\n\n\n<p>At <a href=\"https://automattic.com/about/\" target=\"_blank\" rel=\"noreferrer noopener\">Automattic</a>, <em>we are</em> passionate about making <em>the web</em> a better place.</p>\n\n\n\n<p>We are the people behind <a href=\"https://wordpress.com/\">WordPress.com</a>, <a href=\"https://woocommerce.com/\">WooCommerce</a>, <a href=\"https://jetpack.com/\">Jetpack</a>, <a href=\"https://wpvip.com/\">WordPress VIP</a>, <a href=\"https://simplenote.com/\">Simplenote</a>, <a href=\"https://longreads.com/\">Longreads</a>, <a href=\"http://wpscan.com/\">WPScan</a>, <a href=\"https://akismet.com/\">Akismet</a>, <a href=\"https://en.gravatar.com/\">Gravatar</a>, <a href=\"https://crowdsignal.com/\">Crowdsignal</a>, <a href=\"https://cloudup.com/\">Cloudup</a>, <a href=\"https://www.tumblr.com/\">Tumblr</a>, <a href=\"https://dayoneapp.com/\">Day One</a>, <a href=\"https://www.pocketcasts.com/\">Pocket Casts</a>, and more. We believe in making the web a better place.</p>\n\n\n\n<p><a href=\"https://distributed.blog/\">We’re a distributed company</a> with 2,007 Automatticians in 97 countries speaking 123 different languages. We’re committed to <a href=\"https://automattic.com/diversity-and-inclusion/\">diversity, equity, and inclusion</a>, and our common goal is to democratize publishing and commerce so that anyone with a story can tell it, and anyone with a product can sell it, regardless of income, gender, politics, language, or where they live in the world.</p>\n\n\n\n<p><a href=\"https://github.com/Automattic\">We believe in Open Source</a> and the vast majority of our work is available under the GPL.</p>\n\n\n\n<p>We strive to live by the <a href=\"https://automattic.com/creed/\">Automattic Creed</a>.</p>\n\n\n\n<p>Automattic is a <a href=\"https://mostlovedworkplace.com/companies/automattic-inc/\">Most Loved Company</a> and <a href=\"https://disabilityconfident.campaign.gov.uk/\">Disability Confident Committed</a>. (Here’s <a href=\"https://happinessengineer.blog/2022/09/08/happiness-for-everyone-working-with-a-disability-at-automattic/\">what that might mean for you</a>.) Come <a href=\"https://automattic.com/work-with-us/\">work with us</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 17 Jan 2024 15:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Isotta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"WPTavern: #106 – Anil Gupta on the Challenges Posed by Multi Collaboration in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=152488\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"https://wptavern.com/podcast/106-anil-gupta-on-the-challenges-posed-by-multi-collaboration-in-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:52438:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, the challenges posed by multi collaboration in WordPress.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you could do that by searching for WP Tavern in your podcast player of choice. Or by going to WPTavern.com forward slash feed forward slash podcast, and you can use that URL in most podcast players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you, and hopefully get you, or your idea featured on the show. Head to WPTavern.com forward slash contact forward slash jukebox, and use the form there.</p>\n\n\n\n<p>So on the podcast today, we have Anil Gupta. Anil is the CEO and co-founder of Multidots, Multicollab, and DotStore. His companies serve a wide range of customers, from large publishers and news companies to WordPress users.</p>\n\n\n\n<p>Of specific interest to this episode of the podcast is Multicollab, which offers a WordPress plugin that allows for Google docs style collaboration, including commenting, suggestions, and real time editing.</p>\n\n\n\n<p>When Google docs was first brought to the market, it was a pretty big deal. Perhaps not the first to offer a real time collaborative interface, it was certainly the first to gain widespread adoption.</p>\n\n\n\n<p>Fast-forward to today, and it&#8217;s more or less inconceivable that you&#8217;d create documents which were not editable by multiple people at the same time. Most modern online software ships with this built in. The extraordinary became the norm and the expectation.</p>\n\n\n\n<p>But what&#8217;s about WordPress? As the largest CMS, WordPress still lacks this functionality, but hopefully not for long.</p>\n\n\n\n<p>Phase three of the Gutenberg project, the phase that we&#8217;re in at the moment, aims to make it possible for many users to amend content at the same time. The beguiling simplicity of the Google docs interface makes it seem like this would be a trivial feature to add into WordPress, but this is not the case. Unlike proprietary software, in which the vendor owns and manages the whole stack, WordPress is used by many different people, in many different ways. They might have a shared server, or a range of plugins, and this all complicates the picture.</p>\n\n\n\n<p>Anil talks about how his team decided to tackle this problem for their own plugin, and he explains some of the hurdles that they&#8217;ve experienced along the way. They&#8217;ve taken a cautious approach, developing different features one at a time, working through the technical challenges with commenting before moving on to real time editing.</p>\n\n\n\n<p>Anil paints a picture of a bright future for WordPress, once this new feature set is completed. But it&#8217;s also interesting to see how many challenges the developers will need to overcome before it can be shipped in a future WordPress update.</p>\n\n\n\n<p>If you&#8217;re interested in finding out about the future of editing content in WordPress, this episode is for you.</p>\n\n\n\n<p>If you want to find out more, you can find all of the links in the show notes by heading to WPTavern.com forward slash podcast.</p>\n\n\n\n<p>And so without further delay, I bring you Anil Gupta.</p>\n\n\n\n<p>I am joined on the podcast today by Anil Gupta. Hello Anil.</p>\n\n\n\n<p>[00:03:56] <strong>Anil Gupta:</strong> Hey Nathan, how are you?</p>\n\n\n\n<p>[00:03:58] <strong>Nathan Wrigley:</strong> Yeah, great. It is an absolute pleasure to have you on the podcast. Anil and I have spoken on various occasions before, but we&#8217;ve never had a one-to-one conversation, certainly not about this subject. But we&#8217;re going to be talking today about phase three of the Gutenberg project, and in particular, about the ability to collaborate on documents inside of WordPress. How that might come about. What some of the technical barriers might be.</p>\n\n\n\n<p>Now in order for Anil to be a credible person on this podcast, it&#8217;s probably a good idea to give him the opportunity to introduce himself, and let him talk briefly about the projects that he&#8217;s working on, or worked on which overlap what we&#8217;re going to talk about.</p>\n\n\n\n<p>So Anil, this is just an opportunity really to give your bio, so that our audience know that you know what you&#8217;re talking about. So over to you.</p>\n\n\n\n<p>[00:04:42] <strong>Anil Gupta:</strong> Absolutely. So I&#8217;m a CEO and co-founder of Multidots, Multicollab and Dotstore. So these three brands serve very different group of customers. Multidots is more like our WordPress agency side of the business, where we help large publishers, news and media companies for their WordPress migration. So whatever CMS they&#8217;re using, we help them to migrate to WordPress.</p>\n\n\n\n<p>Our second brand Multicollab, which is a WordPress plugin, a Google Doc style collaboration, that doesn&#8217;t exist at this moment in WordPress. But with this plugin, you can use commenting, suggestions and real time editing. And that&#8217;s one of the topics that we are going to talk about today.</p>\n\n\n\n<p>And the third brand is called Dotstore, which serves small e-commerce business owners. So if you have a WooCommerce store, we provide bunch of different WooCommerce plugins that helps you to get more sales and better performance, and all those good stuff.</p>\n\n\n\n<p>Apart from these three brands, I also have a podcast called Peaceful Growth, where we talk about some of the strategies on how to grow in life and business, in a more peaceful and balanced way.</p>\n\n\n\n<p>[00:05:43] <strong>Nathan Wrigley:</strong> Well, thank you so much. That&#8217;s great. So now we know all about you, well, not all about you, but some things about you. Let&#8217;s get into the subject at hand, which is going to be multi collaboration inside of WordPress. And I think really, to begin with, let&#8217;s imagine in the conversation that we&#8217;re going to have, that we are just creating posts and pages. Let&#8217;s leave it at that for now, because that will mean that the conversation is easier to understand. And I guess I&#8217;m just going to hand it over to you to ask why we need this kind of feature inside of WordPress.</p>\n\n\n\n<p>And just before you begin answering that, I&#8217;ll say, if you&#8217;ve never used Google Docs or Office 365, then it may be that you don&#8217;t even know what we&#8217;re talking about. So this is the ability for a variety of people to log into something at the same time, the same document, and be editing it synchronously. So if you were to edit something, I would see your edits the moment that you made them, and in that way we can collaborate.</p>\n\n\n\n<p>It is still a mystery to me how this actually happens on the backend, but it certainly isn&#8217;t a part of WordPress. At the moment if somebody&#8217;s editing something, you are locked out, if it&#8217;s not you. And you have to wait until they&#8217;re finished, and that might even mean a phone call or an email to tell them, are you finished yet? And this all seems a little bit Victorian, you might say. It&#8217;s really from a different era, now that everybody&#8217;s got collaborative editing. But, why do we need it in WordPress? What&#8217;s wrong with what we&#8217;ve got right now?</p>\n\n\n\n<p>[00:07:04] <strong>Anil Gupta:</strong> Good question. I would say there are multiple reasons, as well as benefits, of collaboration. But let&#8217;s start with the reasons. Traditionally if we go back, when WordPress was launched 18, 20 years ago, the sole purpose of the WordPress was to provide a platform where content creators, publishers, or bloggers, they can create the content easily and quickly, right? And it solved the purpose.</p>\n\n\n\n<p>But, in the last 10 years we have observed that anything that we do digitally now, it&#8217;s not a single or solo creation. You collaborate, we collaborate with others in regards to creating and producing stuff. Now, if you look at the content publishing, content creation applications, I think Google Docs or Microsoft Word, or any application for that sake, you know, if you look, they kind of like already saw this need, as the internet bandwidth and infrastructure got better. The need to collaborate together and create content together, actually increased, right?</p>\n\n\n\n<p>So 10 years ago, when Google Doc and all other content creation app, they already kind of started working on adding the collaboration as a part of their content creation platform. And in last five years, all the modern content creation platform, whether it&#8217;s Canva or Notion, they kind of all also have started introducing the collaboration.</p>\n\n\n\n<p>And unfortunately, WordPress doesn&#8217;t have collaboration. And why we need a collaboration, you know, the one reason I see is like, now we are not creating the content alone. You know, like even if you are a blogger, you have at least someone you know, that you would like to share your piece of content before you publish it. And then they will share some of the ideas like, okay, you know we should add some graphics here. And just that collaborative communication.</p>\n\n\n\n<p>And now, yes, there are other apps that we use, maybe Slack, Zoom, Loom. Like a lot of different other communication apps that we might be using, in order to achieve this feature. But because all other content creation apps has all these features inbuilt, now it has become an expectation for anyone who is either using WordPress or switching to WordPress, that I would have the same collaborative tools that I was using in my previous content creation apps.</p>\n\n\n\n<p>Last thing I would say is since pandemic, you know, that like earlier a lot of people were kind of like working from the same office, so they will be more collaborating over the floor, and just like, you know, or the tea and coffee conversation. Now, as we all are virtual, working from remote places and all that. So then it&#8217;s not real time, where like, you know, two people can be available. The time zone differences, and a lot of things actually creates that space, where the need for async communication has also been increased. And that is where also, if we have all the collaboration features in the WordPress, that will be helpful.</p>\n\n\n\n<p>[00:09:54] <strong>Nathan Wrigley:</strong> Yeah, it&#8217;s interesting because I am of a certain age, and I started using WordPress at a time when, well, not necessarily WordPress, but I started using CMSs at a time where there was absolutely no expectation that anything was collaborative. And so I&#8217;m kind of okay with it. It&#8217;s not perfect, I would love for collaboration to be in there, but I&#8217;m used to it, and this is just how WordPress works. I understand that if somebody&#8217;s editing something, I have to wait a little bit.</p>\n\n\n\n<p>But I&#8217;m thinking in particular about my children, and the fact that they&#8217;ve been brought up in an era where this is the bare minimum of what a document workflow would be like. You begin creating it, you put a title in, and then maybe even the next step, rather than writing the content, is to click the share icon, wherever that may be, and to get your fellow collaborators in.</p>\n\n\n\n<p>So I know, for example, that schools throughout the UK are using all the different suites that you mentioned, to enable them to hand homework in. And their staff can edit things, and modify things, and correct their work and all of that. And it&#8217;s just the bare essentials. And so somebody like me, it&#8217;s fine. I&#8217;m used to it. But the next generation, the people that are growing up, the people who are, let&#8217;s say, I don&#8217;t know, 20 or below, there&#8217;s no way that it&#8217;s acceptable to not have collaborative editing. It&#8217;s just too strange, alien. And if that&#8217;s the case, it will probably not be used.</p>\n\n\n\n<p>You know, you log into WordPress for the first time, see it cannot do that, and then think, well, I&#8217;ll go to somewhere that can. And as we know, WordPress is in a competitive landscape. We&#8217;ve got the SaaS apps out there, the Wixs and the Squarespaces, and I don&#8217;t actually know if they can do these features.</p>\n\n\n\n<p>[00:11:36] <strong>Anil Gupta:</strong> I think Wix does, yeah.</p>\n\n\n\n<p>[00:11:37] <strong>Nathan Wrigley:</strong> Right, okay. So we think that some of them do, and the fact that they&#8217;ve got their own architecture, you know, they own all of the infrastructure, and they can put the resources into place for that. It&#8217;s probably more straightforward to them to do that. So that leads us to the next thing really, which is, when we&#8217;re talking about this, are you able to just flesh out the landscape a little bit?</p>\n\n\n\n<p>Do you have any insight into what specifically is in the proposal for sharing within WordPress? Because Google Docs, you share a doc. Google spreadsheets, you share a spreadsheet, and it&#8217;s fairly constrained. We&#8217;d be sharing something, which can be filled up with a myriad of different things, little blocks. You know, it might be a paragraph block, or a YouTube block, or a image block, or goodness knows what array of blocks you may put in. Do you have some insight into exactly what&#8217;s inside the spec for Gutenberg phase three, this collaborative era?</p>\n\n\n\n<p>[00:12:30] <strong>Anil Gupta:</strong> Yeah. So Matías, lead architecture of Gutenberg, he kind of shared a full roadmap of what we can expect in phase three, which is a collaboration phase of Gutenberg. It has workflows. So the one thing is, as soon as you have this, all the collaboration features, you know, we need to also control the workflow. Like who will approve, who will publish, because multiple people are on the document. You know, where we want to control, or design a workflow in a way so that, if somebody&#8217;s still drafting, someone else doesn&#8217;t just publish it accidentally, right? So there are like a lot of, I would say, some workflows.</p>\n\n\n\n<p>And then second I would say, which is their async communication. So async is where multiple people can update, contribute to a piece of content, without need of being online. All the changes are synced. And then, it also has some inline commenting. So we can provide some, select any piece of content, a block, a text, table or image, and leave some comments that like, hey, I don&#8217;t like this image. Can we change that? Or, what do you think? Like, ask someone else&#8217;s opinion.</p>\n\n\n\n<p>And then, specifically talking about the phase three, I think they also have the whole admin panel. So I think they&#8217;re working on the admin panel. I&#8217;m not sure if directly related to collaboration, but as a part of the phase three, they are working on revamping the admin interface.</p>\n\n\n\n<p>If we look at the focus only on the collaboration, I would say async communication, inline commenting, and some level of workflows. You know, those are the three big things that I see will be there in phase three.</p>\n\n\n\n<p>[00:14:00] <strong>Nathan Wrigley:</strong> Yeah, there&#8217;s an awful lot packaged into that, isn&#8217;t there? Just as you were speaking there, a whole myriad of things were coming into my head. And I should probably rewind and say, if this is achieved, it will be in a vanilla version of WordPress. I know that you have a solution where you can add a plugin, and we&#8217;ll come to that later. You can talk about some of the hurdles that you&#8217;ve had to overcome.</p>\n\n\n\n<p>But in a vanilla version of WordPress, everybody will have this functionality, should it be achieved. And at the moment, in a vanilla version of WordPress, the publishing flow is really, pretty straightforward. You log in, and you basically click publish. But you&#8217;ve just introduced a whole raft of different things.</p>\n\n\n\n<p>So workflows, let&#8217;s take that. You know, if you&#8217;ve got seven people, eight people, a hundred, who knows. Any number of people who are editing in there, there may be a myriad of different permissions. This person is able to do this, and this person is able to do that. But finally, only these three people can publish things.</p>\n\n\n\n<p>So we need to come up with a visual way of surfacing that inside the UI so that, I don&#8217;t know, if six people have been in, and they&#8217;ve edited this, is everything that they&#8217;ve done okay? Can we just have a quick scan through it? None of that exists, really, at the moment. Third party solutions can bring that to bear, but none of that really exists.</p>\n\n\n\n<p>The whole async thing, well, that&#8217;s removed entirely at the moment, because you just click either update or, you know, you click publish, and whatever you&#8217;ve got on the page or the post is what is saved. And it&#8217;s as simple as that. Where, you&#8217;re saying that maybe if somebody, I don&#8217;t know, it goes offline temporarily. We have to have some way to keep their content, so that when they come back online, it somehow gets synced.</p>\n\n\n\n<p>And anybody that&#8217;s been involved in building or developing realises, you know, if things get outta sync pretty quickly, it&#8217;s a hot mess. And trying to untangle, well, when did that happen? Who put that in, and when did they do it? That&#8217;s going to be interesting.</p>\n\n\n\n<p>And then yes, of course, the whole inline commenting thing. You forget, don&#8217;t you? If you don&#8217;t use the comments in a, let&#8217;s say a Google Doc again, you forget that there&#8217;s that whole interface, which doesn&#8217;t come to bear unless you use it, which enables you to give commentary on things. To say, I think you should modify this, this is fine. And you can tick things off, and it&#8217;s almost like a little task management system.</p>\n\n\n\n<p>And then it sends out a slew of emails to say, oh, somebody&#8217;s edited this, that, and the other thing. And, you know, it makes decisions about how many emails to send out based upon the rapidity of the changes going on. So there really, really is a lot in there that needs to be, first of all, figured out, and then made visible to us in a way which is intuitive, and that the next generation can understand without having to think too hard. That&#8217;s a lot, isn&#8217;t it?</p>\n\n\n\n<p>[00:16:42] <strong>Anil Gupta:</strong> It is, yeah. And I think, all these little things, if we keep it into account, like email notification that you mentioned, and if somebody&#8217;s already editing a document, there are some changes which are not approved, you know, whether we should be able to publish it or not. There are a lot of little things that we need to think about when we are creating this solution.</p>\n\n\n\n<p>But most importantly, people who used to use WordPress, you know, the way as we talked about, you know, you go on a post and start drafting the content, and select some blocks here and there, and then you go ahead and publish it. So now when multiple people are collaborating, yeah, you need to pay attention to all those different things.</p>\n\n\n\n<p>Permissions that you mentioned, yeah, I think that&#8217;s something that, even in our plugin, we are kind of getting a lot. That the default WordPress roles, we kind of think a little bit more about on that too, in regards to like, hey, I don&#8217;t want this person to approve any changes, you know. It should be this person. Though that person can edit anything, but they will not be able to accept any changes, or close the comments.</p>\n\n\n\n<p>So those are like a lot of little things that need to be there. And user experience, I think will be a very big thing that we need to pay attention to as well, so that we don&#8217;t overwhelm the people who love WordPress, simplicity of the WordPress, and when they see all this stuff, is like, why? What&#8217;s going on?</p>\n\n\n\n<p>[00:17:55] <strong>Nathan Wrigley:</strong> I do wonder on what level the granularity of permissions works. So, is it all done by the role-based system? So, you know, if you have a certain role, you can go in and edit any post or any page. Or, would it be nice to have it on a more granular level? So, okay, although this person has this particular role, which would preclude them from editing this, I want to allow them to edit this one special thing, because it&#8217;s right in their wheelhouse. So, okay, even though they&#8217;ve got this role, I want them to adopt a different role, just for this one post.</p>\n\n\n\n<p>And then maybe even delving deeper inside the post or the page itself. What about the ability to just edit certain blocks? So paragraph blocks, yes, go for it. But the YouTube block, no, no, no, that&#8217;s not for you to be editing. Or the images, no, you can&#8217;t do that. You know what I mean? You can get really granular. And I guess it&#8217;s a question of how granular we want that to be, and how do you surface that in a way which is easy to understand?</p>\n\n\n\n<p>And then you mentioned also, the visual cues that you&#8217;re getting inside of these third party solutions, like Google Docs. You can really see what somebody is doing. So you get this little icon, which is within the document, it kind of stays out the way a little bit. You know, it&#8217;s a very thin, little couple of pixels wide icon with a color. But you can see, okay, that&#8217;s where somebody&#8217;s cursor is, and if they highlight a portion of text, because they want to delete it or something, you can see that that&#8217;s highlighted.</p>\n\n\n\n<p>In WordPress that might span several blocks. Whereas in a Google Doc it&#8217;s just, it&#8217;s all one thing so it doesn&#8217;t really matter. But it may be that it highlights, you know, you highlight two paragraph blocks and a heading block, then you&#8217;re going to delete those. How does that all get done? How does it get saved? How can you revert changes that are made? Boy, there really is a lot going on in here.</p>\n\n\n\n<p>[00:19:34] <strong>Anil Gupta:</strong> It&#8217;s a massive technical problem that we need to solve, in order to provide this feature, as well as offer that in a way so that it still is helpful. You know, to help them to create and published content faster, not slowing them down.</p>\n\n\n\n<p>[00:19:47] <strong>Nathan Wrigley:</strong> The thing about this is, you can&#8217;t really release something that isn&#8217;t working perfectly, in the scenario that it&#8217;s been created for. I don&#8217;t know, we tackle, user permissions first. That has to be perfect before it&#8217;s released. It can&#8217;t be kind of, okay, just test this out a little bit and see how it goes.</p>\n\n\n\n<p>It has to be bulletproof, the moment it ships into WordPress Core. And I think that some of the things that came into Gutenberg, and went out of Gutenberg, and got changed in Gutenberg, that was more or less okay, because it didn&#8217;t interrupt the publishing workflow. It just, maybe things surfaced on the front end slightly differently. Or there was a block that was suddenly now available, which wasn&#8217;t available there before. And all of that was okay. But if we&#8217;ve suddenly got things which mean, well, no I can&#8217;t publish anymore, that&#8217;s not working for me. Oh, okay, that&#8217;s not so good.</p>\n\n\n\n<p>So in the background, what are you thinking ought to be in view here? You know, are you thinking that it should just be core blocks at the beginning, the blocks which WordPress ships with? Should they be the things that are tackled? Should it be attached to just posts and pages and custom post types, leave all of that. Templates, leave all of that. Patterns, leave all of that. Do you have any intuition as to how deep it should go at the beginning, to make it even feasible to get off the ground?</p>\n\n\n\n<p>[00:21:00] <strong>Anil Gupta:</strong> Yeah, so I think that&#8217;s a really good question. The reason is, as we talked about, like collaboration is a massive problem. And you can&#8217;t try to change everything in one go, you know. So you need to take a different part of the collaboration, and slowly build it in a way so that, yeah, you don&#8217;t basically put the whole house down, right?</p>\n\n\n\n<p>I&#8217;m not sure what&#8217;s the WordPress Core&#8217;s approach is, but when we started working on Multicollab, our approach was, let&#8217;s focus on the one feature at that time. So what we did is, we first launched only inline commenting, so no real time editing, so we don&#8217;t have to worry about the permissions and all that. No real time editing, just inline commenting.</p>\n\n\n\n<p>So in any piece of content, you can select it, whether it&#8217;s a blog, whether it&#8217;s media, whether it&#8217;s a text. You select it, and it&#8217;ll give you little comment box, where you can add a comment like, hey, I need some feedback on this, or changes here. And you can also mention anyone who is a WordPress user. So you type in at, then you can select a user, and they will be notified, and they can see and come back to the WordPress post. And they will see like, oh, somebody wants my feedback and opinion on that, and they can reply there.</p>\n\n\n\n<p>So that was the first thing we launched. And we perfected that inline commenting almost for like a two years. So we focused on that, to make sure that works. And what you mentioned, one of the big challenge with the WordPress is, everyone has themes, plugins, and blocks, right? So, what sort of blocks are they using in Gutenberg setup, or what sort of plugins are they using?</p>\n\n\n\n<p>Like Yoast SEO also manipulates the page editing interface and workflow. So that&#8217;s why we decided like, alright, we&#8217;ll just start with the inline commenting. We slowly increased it. We still have a compatibility metrics where we continue to tell them like, hey, at this moment, this 20, 25, or 30, or 60, however many blocks are like, this is what it supports.</p>\n\n\n\n<p>And then we slowly started focusing on more popular plugins, and their blocks. So then, slowly, we are increasing the compatibility to more blocks. But that&#8217;s something that it&#8217;s very hard to do it in a day one.</p>\n\n\n\n<p>[00:22:59] <strong>Nathan Wrigley:</strong> Do you mind if I just interrupt there? So, that&#8217;s really interesting. So, did you have to take each of the Core blocks one at a time, and provide some engineering in the background that made it so that that block was available to be editable in a Multicollab setup? So you had to do the paragraph block, and then the heading block and then, okay, aspects of the group block, which might break something else, we had to deal with that.</p>\n\n\n\n<p>So you had to do that first. And then, because all the third party vendors who&#8217;ve got the blocks and the block suites and, you know, there&#8217;s a lot of those now. You&#8217;re having to tackle those because they don&#8217;t necessarily work. So immediately my head is this multiplying problem of, how do we reign that back in? How do we get it so that everything is engineered, so that it will be collaborative? So let me just ask that question again. Did you have to do the blocks one at a time, is basically what I&#8217;m asking?</p>\n\n\n\n<p>[00:23:51] <strong>Anil Gupta:</strong> So the approach that we took, first, we actually, instead of blocks, we were focusing on the type of content. So whether it&#8217;s a text, whether it&#8217;s media, you know, or whether it&#8217;s a dynamic content. Dynamic content is, you know, where you are not typing it in, but it&#8217;s just pulling in from, let&#8217;s say, from the database, and pulling in like featured post, right? Or let&#8217;s say testimonials. So you don&#8217;t type in and it&#8217;s already coming in from somewhere else like, you know, and then you just curating that.</p>\n\n\n\n<p>So we kind of started that like, okay, how should we actually treat a text? And it doesn&#8217;t matter whether it&#8217;s a custom block, native block, or someone else&#8217;s block. As long as there is a text in that, how we should treat that. If there is a media, how we should treat that. We kind of started that. And that was our phase one. So it doesn&#8217;t matter what block you have, as long as you have text media and like couple of things, it will work.</p>\n\n\n\n<p>Later on, once we achieved that, the second phase was how we make sure that we don&#8217;t have to edit anything in the code, but still our inline commenting works for whatever the blocks are. Our developer observed that, if blocks are custom blocks, are designed and developed based on following the Gutenberg&#8217;s guideline then our plugin was working. But if they don&#8217;t follow the Gutenberg guideline, if you just kind of, you know, do on your own thing, that&#8217;s where our inline commenting, and some of the things that we were doing was not functioning.</p>\n\n\n\n<p>So now in our phase three. So right now we have, as long as your Gutenberg blocks is following, custom blocks, they&#8217;re following Gutenberg guideline, doesn&#8217;t matter what kind of blocks you have, it will work. And we also did an approach where, if for some reason your block is very complex, then instead of the content inside the block, you can highlight the entire block.</p>\n\n\n\n<p>So that&#8217;s where we started with like, okay, we can&#8217;t actually do much about what is in the block, but you can still give a comment on entire block. It&#8217;s working, like most of the blocks where we doesn&#8217;t support, you can still select the entire block, and leave a comment on the block. Like, hey, there&#8217;s something needs to look in there. But they will not be able to select a particular text, or image inside the block and highlight that.</p>\n\n\n\n<p>In our phase three, that is where we are working on. Doesn&#8217;t matter what blocks you have, but how we can manipulate the HTML DOM model. So it&#8217;s called Document Object Model, right? So the entire page is basically a DOM structure. So now we are working on how we can use the DOM JavaScript and HTML manipulation, so that you don&#8217;t need to worry about any block compatibility, it will automatically work with all the blocks. That&#8217;s our phase three.</p>\n\n\n\n<p>[00:26:20] <strong>Nathan Wrigley:</strong> It does sound like there is going to be a lot of work for the Core WordPress team, to tackle this from some of the experiences that you&#8217;ve just highlighted. It is very much an iterative approach. And I guess time will tell how they decide to tackle that.</p>\n\n\n\n<p>Do you have any intuition on the, backend I guess is the wrong word. But there are some people who are able to afford really complicated server setups and, you know, they&#8217;ve got powerful hosting and all of that. And you kind of get the impression that a lot of this is going to be calling back and forth to the server, constantly. Because if you imagine that there&#8217;s seven people editing a document at once, that&#8217;s seven bits of information that needs to be flying, more or less in real time, the entire time.</p>\n\n\n\n<p>Whilst that might be possible to have, if you&#8217;ve got an expensive hosting set up, which is configured for this. Do you have any intuitions that if you&#8217;re on more affordable hosting, like a shared host and you&#8217;ve just got a basic plan, do you see this becoming a problem, because of the amount of data that&#8217;s going to be flying back and forth, and the power of that computer, acting as a server? What do you think?</p>\n\n\n\n<p>[00:27:21] <strong>Anil Gupta:</strong> So when it comes to collaboration, and as we talked about, inline commenting, suggestions, like any edits that you make becomes suggestion, and then the real time editing. So I feel like these three are the big pillars of collaboration. Now when we launched Multicollab, you know, we launched with inline commenting, and then we launched suggestion mode, and now recently we launched the real time editing. The third piece of the collaboration.</p>\n\n\n\n<p>First two piece, inline commenting and suggestion mode. So that&#8217;s something that we tested, and we found that it doesn&#8217;t require any fancy server configuration. Whatever server or hosting that you&#8217;re using right now, that will be sufficient. Because in that we are not using any peer to peer connection, because we haven&#8217;t introduced the real time editing yet. As long as you&#8217;re using those two features for the collaboration, you&#8217;ll be good with pretty much whatever server you have right now.</p>\n\n\n\n<p>But the moment you introduce real time editing, that is where the server and the whole performance thing actually becomes very critical. And that&#8217;s where the challenge with the WordPress is, that all other content creation apps, and the platform, they are cloud. They&#8217;re hosted in cloud, so they have a control on the computing power, and the cloud infrastructure. They can scale the cloud infrastructure because everyone sign in and access the same cloud. One other way, they don&#8217;t go and take a piece of source code and install and use it on their own server, right?</p>\n\n\n\n<p>So for that, especially this real time editing, where multiple users simultaneously can edit, and all those things that we talked about. That you highlight the cursor where other users are in the post, and if they make any changes, the changes also sync with the other people who are editing, or working on right now.</p>\n\n\n\n<p>That is where a server comes into the picture, and our team actually put together a server requirement. Like, what&#8217;s the minimum level of server configuration that we need in order for real time editing to work? And that is actually a challenge that we are still working on, and finding a way to see that, what are those major hosting companies, like managed hosting, the big hosting companies. And if their current server infrastructure meets the realtime editing or not.</p>\n\n\n\n<p>And that&#8217;s why we launched the realtime editing, at this moment. But it&#8217;s still on a beta and it&#8217;s by default off. One way we are handling this problem, is we are giving them an option like, hey, if you want to use the realtime editing, it requires certain level of server performance and power. If you have it, then here is the instruction that you can follow, and then you can use the real time editing. If you don&#8217;t have it, then you can use our server. So we have created our own server, you know, a massive server where all these async communication happens. The data is encrypted and all of that, but yes, we are giving the choice that, hey, if your server doesn&#8217;t support it, then you can use our server. So it&#8217;s kind of like cloud, so we have created our own little cloud, which they can use for this async communication.</p>\n\n\n\n<p>[00:30:19] <strong>Nathan Wrigley:</strong> So, is that a fairly seamless experience? So firstly, that answer is fascinating. So there is a roadblock, there is a server configuration, at least in your experience, which renders the whole enterprise of synchronous editing painful, impossible, perhaps. And if you are prepared to read the documentation, and get yourself onto a server which you have determined is suitable, then it&#8217;ll work. Otherwise, here&#8217;s a button for you to press.</p>\n\n\n\n<p>Is it as straightforward as that? You just sort of click a button and you are taking over that heavy lifting on the server. But it&#8217;s purely just for those sync transactions. It&#8217;s not for anything else. It&#8217;s not for keeping the content of the post, it&#8217;s just the bits and pieces that are firing to do the synchronous work, right?</p>\n\n\n\n<p>[00:31:00] <strong>Anil Gupta:</strong> That&#8217;s very true, yeah. So the way we have done is, right now, if you download multi collab, it&#8217;s default, set it to our server, because we want to have them try it and test it. And then they can change it like, no, I don&#8217;t want to use your server, I want to, let&#8217;s say, configure my own server. Then you just turn that feature off, and you can take over.</p>\n\n\n\n<p>But if you want to use our server, you don&#8217;t have to do anything. It&#8217;s just built in, and it&#8217;s already all the server variables, and everything we have already put into the plugin. So when you go, you just turn on the real time editing, and you can start using the real time editing without making any changes in your server.</p>\n\n\n\n<p>[00:31:35] <strong>Nathan Wrigley:</strong> It&#8217;s kind of an interesting idea because, on the one hand, it creates a marketplace for people such as yourself to offer that service. You know, if you want to have synchronous editing for a hundred people, and for it to be absolutely bulletproof, here&#8217;s a plugin which connects to a service, which will give you the horsepower in order to do that.</p>\n\n\n\n<p>But at the same time, the way that it&#8217;s been described, phase three feels like the enterprise is to get this working for everybody, out of the box. And from what you are saying, obviously, you know, maybe technology will improve, and browser capabilities will improve, and all sorts of things will improve. Maybe this will be possible.</p>\n\n\n\n<p>But it does feel like the offering is, this is going to be available to everybody. And it would be strange for a Core feature like that to have some kind of paywall attached to it. Now, I know that we&#8217;ve got examples throughout the ecosystem of obviously extra things that you can add in. But if it&#8217;s going to be available in Core, it seems odd to then be saying, well actually, your version of Core on that server isn&#8217;t going to cut it. I&#8217;m sorry, you&#8217;re going to have to part with some money.</p>\n\n\n\n<p>That feels almost like straying away from what the promise of it is. Do you understand what I&#8217;m trying to say? It feels odd to offer something in Core, which then you have to pay for because your server doesn&#8217;t live up to it. But then again, that&#8217;s just the way it might have to be, I suppose.</p>\n\n\n\n<p>[00:32:57] <strong>Anil Gupta:</strong> Yeah. I think that&#8217;s where I&#8217;m also curious to see how WordPress Core is going to address this problem. Because, based on our research, for last one and a half year we have been working on async and real time editing. We tried WebSocket, WebRTC, pretty much like bunch of different, all of the protocols, we tested it out.</p>\n\n\n\n<p>And one thing that we are seeing repeatedly is that, yeah, the server plays a very, very big role, hosting, specifically plays a big role. And the WebSocket needs to be enabled, and also depending on how many requests, and all of that. So there are like a lot of things that needs to be happen, before even you can turn on and use the real time editing.</p>\n\n\n\n<p>And if WordPress Core is targeting that it will work seamlessly out of the box as you install the plugin. And especially like, you know, if you don&#8217;t have all this WebRTC, WebSocket, or whatever the server infrastructure is required. It&#8217;s a big question for me, how they&#8217;re going to tackle that problem, because at this moment we don&#8217;t have a solution.</p>\n\n\n\n<p>And that&#8217;s why we created this. Like we bought this massive server computing power so that it can support that. The people who are using our plugin, they&#8217;re paying for that services, and they&#8217;re aware about it. But WordPress Core, I think the goal is to kind of like have that for free, so that you can use and install it. And I&#8217;m not sure how they&#8217;re going to solve this problem.</p>\n\n\n\n<p>[00:34:13] <strong>Nathan Wrigley:</strong> Yeah and, what does graceful failure look like in that scenario? So if a modest server can cope with one or two people, what happens when you reach the limit of that? So you&#8217;ve added in another five people, and suddenly everything&#8217;s under strain, it&#8217;s no longer working. How do you inform, or how do you encourage the user to do things differently?</p>\n\n\n\n<p>Because the last thing you want to do is lock people out of the editor, or something goes wrong in the editor, and it all becomes a problem, I can no longer publish things. Three of us are locked out, and now we can no longer get back in, or we couldn&#8217;t collaborate in the way that we thought we could. It was working better yesterday than it&#8217;s working today. Those kind of things.</p>\n\n\n\n<p>And that seems an almost insurmountable technical challenge to at the moment anyway. We&#8217;re recording this at the end of 2023. It seems like an almost insurmountable challenge to be able to do that and provide it for everybody out of the box, even on the most straightforward, modest hosting package. So, yeah, I guess only time will tell.</p>\n\n\n\n<p>Are there any other things that you&#8217;ve had to tackle, trying to get this done, that you would like to share? Is there any technical challenges that you&#8217;ve faced, or quirky experiences that you&#8217;ve had and things that you didn&#8217;t anticipate on the road that you now look back and think, oh, oh boy, I wish we&#8217;d thought of that in advance.</p>\n\n\n\n<p>[00:35:32] <strong>Anil Gupta:</strong> Yeah, I think the big piece, what I see is the inline commenting, suggestion, and real time editing like beside this server configuration for the real time editing. I think one is, it&#8217;s whole new learning curve. You know, so let&#8217;s say when you&#8217;re using the WordPress and now when you introduce all these features, there is a learning curve for the content creators.</p>\n\n\n\n<p>It&#8217;s not a technical challenge, but I think it&#8217;s more like adaptation challenge. And one thing that I think we did good and it was a decision, like a very deliberate decision that we want to keep the interface as close to Google Doc. Because Google Doc, I believe, is something that has already set a bar, you know. So when people are very familiar with like how to use the share button, how to invite someone, and leave the inline commenting. And if you kind of like try to introduce completely new interface for the collaboration, then that will also be a big learning curve.</p>\n\n\n\n<p>So that&#8217;s kind of like feedback that we got initially, when we try to be a little bit more innovative, like, let&#8217;s try to, you know, provide the best collaboration interface. It didn&#8217;t go well. We were like no, we want Google Doc. We want Google Doc style and that kind of like become our roadmap.. So if you are using MultiCollab right now, using the share button, the sidebar activities, inline commenting, suggestion mode, pretty much like all those features works very similar to how you use the Google Doc.</p>\n\n\n\n<p>So you will not see that big difference when you come to WordPress, that you will feel like it&#8217;s Google doc style interface. And challenge for us was to build that on the top of Gutenberg. I think that was a big, both technical, as well as a UI and user experience challenge.</p>\n\n\n\n<p>[00:37:13] <strong>Nathan Wrigley:</strong> Given that this is coming down the road and, let&#8217;s imagine a future where everything works and the team that are behind this managed to pull everything off, and it&#8217;s absolutely perfectly working and everything&#8217;s fine. How did you decide that you wanted to get into this business?</p>\n\n\n\n<p>Because before we hit record, I asked you that question. I said, did you decide to have this business knowing that it was coming into Core? And if that&#8217;s the case, why did you do that? Because it seems almost like you&#8217;re setting yourself up to have a business which is going to be replaced by something that&#8217;s free.</p>\n\n\n\n<p>But you&#8217;ve got intuitions around that. I guess it&#8217;s around what you can package, which may exceed what the endeavor of Core is. We&#8217;ve been assuming that it would try to do everything all at once for everybody, and of course that may not be the case. It may be a very, a slim implementation. So just talk us through that. How anxious are you about phase three eating your company&#8217;s lunch?</p>\n\n\n\n<p>[00:38:11] <strong>Anil Gupta:</strong> So when we started working on MultiCollab, I already was aware the phase three was already announced. They already mentioned that we are going to focus on collaboration. So it wasn&#8217;t a surprise in the beginning. The way I saw that as an opportunity, I feel like even where we know that when WordPress Core built or design anything, they try to focus on the 48% of the web. You know, it&#8217;s like a lot of small, medium businesses, bloggers. So basically they have to kind of like put it to together, something that&#8217;s targeting for a very wide audience.</p>\n\n\n\n<p>On the other side, we focus, a lot of our features, like real time editing, inline commenting, these are all free, so you don&#8217;t have to pay for using those features. There are some pro level features while custom roles and permissions is concerned, Slack integration. So some of our publishers who use collaboration, they also like integrate that with their Slack and some enterprise tools they use.</p>\n\n\n\n<p>So that&#8217;s where we see an opportunity that we can provide the tailored, custom solutions, to this 20, 30% of the pro users who wants things a little bit differently and more customizations.</p>\n\n\n\n<p>Also by design, you know, the WordPress Core is going to be slow because, you know, everything they have to build, they have to do. It&#8217;s a massive force. And on the other side, like we have only one thing, this is the only project that we have. We don&#8217;t have like bunch of other phases that we have to worry about. So, that&#8217;s something that we, in last two years, we had made a new release every month. You know, so every month we have a new release, fix a bunch of different things, improve different things.</p>\n\n\n\n<p>So I think that turn around is something that we were able to do much faster than probably WordPress Core can do. And the support is something that I feel like that is the only focus that we have. And I think we have seen that again and again in the WordPress and all other economy where, we have so many page builders, right?</p>\n\n\n\n<p>Like still they&#8217;re thriving, despite Gutenberg is free. It&#8217;s in built and all that, but still, Elementor. And same goes for the bunch of other features like commenting for example. There are like bunch of different commenting solutions because what WordPress offer, post commenting is not enough, or not the way other people wants it.</p>\n\n\n\n<p>[00:40:20] <strong>Nathan Wrigley:</strong> Yeah, I think it&#8217;s really interesting, and my guess is that the conversation in the WordPress space for the next 18 months at least will be highly focused on this topic. And the fact that people are talking about it, and the fact that you&#8217;ve already done a lot of work inside that space. Actually, when I think about it a little bit more, maybe it puts you in a kind of a pole position to have those conversations.</p>\n\n\n\n<p>And also you can build on top of what Core produces. And it may be that there&#8217;s parts of the code that you&#8217;ve already written that can be removed or replaced by what&#8217;s in Core, and you can build on top of that. So yeah, that&#8217;s an interesting approach, and WordPress&#8217; history does show that, doesn&#8217;t it?</p>\n\n\n\n<p>And the page builder example is perfect. There isn&#8217;t just space for one. The audience inside the WordPress community is so vast that you can have myriad different solutions to the same problem. And although WordPress might be tackling collaboration in some form, it may be that other people wish to have a different form of collaboration, or an extended feature set in the collaboration space. So yeah, that&#8217;s a nice answer and it, certainly implies that you&#8217;ll be around for the foreseeable future.</p>\n\n\n\n<p>Anil, before we wrap it up, I just want to give you an opportunity to tell us where people can find you if they want to reach out to you, where would be the best place to do that?</p>\n\n\n\n<p>[00:41:41] <strong>Anil Gupta:</strong> For me personally, I have a newsletter slash blog, where I write a lot about different things that I&#8217;m experimenting, and talk a lot about my businesses and podcast and all that. So that place would be my blog, that is anilg.substack.com. But for MultiCollab, it&#8217;s very simple, we have actually very good advantage if you search for WordPress collaboration or just multi collab, you&#8217;ll see a lot of resources that we have published and our website comes because we don&#8217;t have a competition at this moment.</p>\n\n\n\n<p>[00:42:10] <strong>Nathan Wrigley:</strong> Google is your best friend, and probably will be for the foreseeable future. So Anil, thank you so much for sharing your insights into multi collaboration in the WordPress space. We&#8217;ll see how this all develops, but thank you so much for chatting to me today, I really appreciate it.</p>\n\n\n\n<p>[00:42:24] <strong>Anil Gupta:</strong> Thanks for having me. And uh, yeah, it was a blast.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://anilg.substack.com/\">Anil Gupta</a>.</p>\n\n\n\n<p>Anil is the CEO and co-founder of <a href=\"https://www.multidots.com/\">Multidots</a>, <a href=\"https://www.multicollab.com/\">Multicollab</a>, and <a href=\"https://www.thedotstore.com/\">DotStore</a>. His companies serve a wide range of customers, from large publishers and news companies to WordPress users.</p>\n\n\n\n<p>Of specific interest to this episode of the podcast is Multicollab, which offers a WordPress plugin that allows for Google Doc-style collaboration, including commenting, suggestions, and real-time editing.</p>\n\n\n\n<p>When Google Docs was first brought to the market, it was a pretty big deal. Perhaps not the first to offer a real time collaborative interface, it was certainly the first to gain widespread adoption. Fast forward to today and it’s more or less inconceivable that you’d create documents which were not editable by multiple people at the same time. Most modern online software ships with this built in. The extraordinary became the norm, and the expectation.</p>\n\n\n\n<p>By what about WordPress? As the largest CMS, WordPress still lacks this functionality, but hopefully not for long. Phase 3 of the Gutenberg project, the phase that we are in at the moment, aims to make it possible for many users to amend content at the same time.</p>\n\n\n\n<p>The beguiling simplicity of the Google Docs interface makes it seem that this would be a trivial feature to add into WordPress, but this is not the case. Unlike proprietary software in which the vendor owns and manages the whole stack, WordPress is used by many different people, in many different ways. They might have a shared server, or a range of plugins, and this all complicates the picture.</p>\n\n\n\n<p>Anil talks about how his team decided to tackle this problem for their own plugin, and he explains some of the hurdles they’ve experienced along the way. They’ve taken a cautious approach, developing different features one at a time, working through the technical challenges with commenting, before moving onto real time editing.</p>\n\n\n\n<p>Anil paints a picture of a bright future for WordPress, once this new feature set is completed, but it’s also interesting to see how many challenges the developers will need to overcome before it can be shipped in a future WordPress update.</p>\n\n\n\n<p>If you’re interested in finding out about the future of editing content in WordPress, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p><a href=\"https://www.peacefulgrowth.com/\">Peaceful Growth podcast</a></p>\n\n\n\n<p><a href=\"https://anilg.substack.com/\">Anil&#8217;s blog</a></p>\n\n\n\n<p><a href=\"https://www.multidots.com/\">Multidots</a></p>\n\n\n\n<p><a href=\"https://www.multicollab.com/\">Multicollab</a></p>\n\n\n\n<p><a href=\"https://www.thedotstore.com/\">DotStore</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 17 Jan 2024 15:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"Do The Woo Community: Gutenberg, the Beginning to the Present with Tammie and Jonathan\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=78854\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://dothewoo.io/gutenberg-present-to-beginnings/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:371:\"<p>Hosts Jonathan and Tammie reflect on their experiences with the Gutenberg project in WordPress. </p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/gutenberg-present-to-beginnings/\">Gutenberg, the Beginning to the Present with Tammie and Jonathan</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 17 Jan 2024 09:23:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"HeroPress: With WordPress Another Life Is Possible – Con WordPress otra vida es posible\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=6397\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:152:\"https://heropress.com/essays/with-wordpress-another-life-is-possible/#utm_source=rss&utm_medium=rss&utm_campaign=with-wordpress-another-life-is-possible\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:19748:\"<img width=\"1024\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/2024/01/011624.webp\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: I came for the software and stayed for the people.\" /><p><a href=\"https://heropress.com/feed/#espanol\">Este ensayo también está disponible en español.</a></p>\n\n\n\n<p>December 11, 2023, Palacio Neptuno (Madrid). I am sitting, surrounded by many people, we are all looking towards a stage with a screen that reads &#8220;State of the Word 2023&#8221;. I look at the clock, it reads 16:05, and two thoughts come to my mind: the first one is &#8220;It seems that Matt is late&#8221;; the second one is caused by having seen the date that read &#8220;11 Dec&#8221;, my brain wants to remind me something&#8230; &#8220;Holy moly! It was 15 years ago today that I read my doctoral thesis in neuroscience&#8221;.</p>\n\n\n\n<p>I hope this resource of starting &#8220;in media res&#8221; has caught your attention and you have some interest in knowing how I got there.</p>\n\n\n\n<h2 class=\"kt-adv-heading6397_494ea8-e7 wp-block-kadence-advancedheading\"><strong>My life before WordPress</strong></h2>\n\n\n\n<p>I have always been a curious person and a career in biology seemed like a good candidate where I could apply that trait. During my college years I got pretty good grades that allowed me to apply for a fellowship to develop a doctoral thesis.&nbsp;</p>\n\n\n\n<p>During the years I spent on that thesis, among other things, I became an expert in the molecular mechanisms involved in programmed cell death in cerebral ischemia. You didn&#8217;t think you were going to read that combination of words in a post related to WordPress, did you? And I didn&#8217;t want to use more technical words like &#8220;apoptosis&#8221;, which is the &#8220;cool&#8221; way we scientists refer to programmed cell death.</p>\n\n\n\n<p>After submitting the thesis (yes, indeed, on December 11, 2008, I like you to keep your attention) I continued researching neurodegenerative diseases in several postdocs. My trajectory was not aiming for Nobel (nor was it my intention), but I was &#8220;progressing adequately&#8221; within the &#8220;scientific career&#8221;.</p>\n\n\n\n<p>So what happened, Nahuai?&nbsp;</p>\n\n\n\n<p>What went wrong to make you stop practicing as a scientist and start building websites with WordPress?</p>\n\n\n\n<h2 class=\"kt-adv-heading6397_b4c5cc-21 wp-block-kadence-advancedheading\"><strong>Looking for a kinder lifestyle</strong></h2>\n\n\n\n<p>What happened is that I had an unpleasant work experience in the postdoc I was doing in a research center in Italy (back in 2014).</p>\n\n\n\n<p>The reason is not as important as the reflection it forced me to make. I realized that, although I loved doing research, the researcher&#8217;s lifestyle was not aligned with how I wanted to live.&nbsp;</p>\n\n\n\n<p>Thus began another investigation, one in which I intended to find a job that would allow me to have more freedom of schedule and location.</p>\n\n\n\n<h2 class=\"kt-adv-heading6397_7be7c0-c5 wp-block-kadence-advancedheading\"><strong>Finding WordPress</strong></h2>\n\n\n\n<p>You can imagine that the start of that new research, which meant putting aside around 15 years of training as a neuroscientist, was not easy.</p>\n\n\n\n<p>The general concept was to be a freelance and work on something online. Indeed, it was very general, but it fulfilled the requirements to achieve the freedom I was looking for. Luckily, WordPress came fairly early into the equation (in the same 2014) and I immediately felt comfortable with the tool.</p>\n\n\n\n<p>I started training myself in the CMS. I created a technology website and a travel website to apply what I was learning. I did part of this process while I was still working as a scientist and another with unemployment benefits and the support of my partner.</p>\n\n\n\n<p>Years later, when I felt able to create websites for clients and I managed to shake off the &#8220;imposter syndrome&#8221;, I started to offer my services on my personal website (created with WordPress, logically). The first clients were &#8220;friends, fools and family&#8221; and then I started to get clients thanks to the articles about WordPress and photography that I wrote in my blog.</p>\n\n\n\n<h2 class=\"kt-adv-heading6397_8c1ba5-d6 wp-block-kadence-advancedheading\"><strong>Discovering the community (&#8220;the secret ingredient&#8221; of WordPress)</strong></h2>\n\n\n\n<p>When I was in Italy I started following WordPress news, mainly through podcasts, and I was surprised to hear how many events were taking place in Spain. So, as soon as I returned to Spain I started attending Meetups in and around Barcelona.</p>\n\n\n\n<p>That was followed by several WordCamps around the peninsula and by the time I realized it I was totally in love with the community. I soon realized that it was the &#8220;secret ingredient&#8221; behind the popularity of WordPress.</p>\n\n\n\n<p>Taking advantage of the &#8220;falling in love phase&#8221;, I started participating in the community by giving talks, volunteering and later creating a WordPress Meetup in Terrassa, the city where I live now, and where I will soon celebrate 5 years as an organizer.&nbsp;</p>\n\n\n\n<p>At WordCamp Barcelona 2018 I met Esther Solà, a web developer I was following online (because she had a fantastic blog about WordPress) and we quickly made friends. A few months later we launched the podcast <a href=\"https://freelandev.com/\">Freelandev</a>, where we have been telling for almost 5 years how we make a living as WordPress developers (and many more things). The podcast served as an incubator to launch another common project, <a href=\"https://osompress.com/\">OsomPress</a>, where we have been creating plugins and themes for WordPress for more than 3 years.</p>\n\n\n\n<p>Once I realized my love for the Spanish WordPress community, I also wanted to get to know the international community better (part of which I read and listened to), and that&#8217;s why I went to WordCamp Europe 2019 as a volunteer. The experience was so good that since then it&#8217;s an annual appointment that I don&#8217;t miss (conditions permitting).</p>\n\n\n\n<p>I could go on for hours writing about the goodness of the community, but if I had to sum it up, I would say that it has given me many intangible things, but others that are tangible:</p>\n\n\n\n<ul>\n<li>Friends (and good ones)</li>\n\n\n\n<li>A network of professionals to trust</li>\n\n\n\n<li>Clients</li>\n\n\n\n<li>The creation of a podcast</li>\n\n\n\n<li>The creation of a plugin and theme development company</li>\n\n\n\n<li>Aligning my work with my life purpose</li>\n</ul>\n\n\n\n<p>I think this sentiment, with personal variations, is shared by quite a few members of the WordPress community. There&#8217;s a phrase that gets repeated quite a bit, with different variations, but it goes something like &#8220;I came for the software and stayed for the people.&#8221;&nbsp;</p>\n\n\n\n<h2 class=\"kt-adv-heading6397_ec1e50-72 wp-block-kadence-advancedheading\"><strong>Towards a way of life more aligned with my principles</strong></h2>\n\n\n\n<p>Once I proved to myself that I could make a living as a freelance WordPress developer, I put the focus on how I could contribute to &#8220;a better world&#8221;, within my modest means, of course.</p>\n\n\n\n<p>On the one hand, I started to be more selective with the projects I accepted, prioritizing those that were going to have a positive impact, and on the other hand I started to create content about web sustainability.</p>\n\n\n\n<p>I owe the inspiration for the latter to <a href=\"https://wordpress.tv/2019/09/22/roberto-vazquez-desarrollo-sostenible/\">a talk by Roberto Vazquez at WordCamp Pontevedra 2019</a>, in which he talked about the environmental impact of websites. Another example of the &#8220;snowball&#8221; effect that comes driven by being part of the community.</p>\n\n\n\n<p>And speaking of snowballs. Thanks to meeting Hannah Smith at WordCamp Europe 2019, I discovered the Green Web Foundation fellowship I got last year. Thanks to it I was able to create the limited series podcast <a href=\"https://sustainwp.com/\">Sustain WP</a>, which is all about digital sustainability and WordPress, which allowed me to interview a lot of interesting people in the community.</p>\n\n\n\n<p>Hannah was also involved in the creation of the WordPress sustainability initiative which months later became the official Sustainability Team. If you&#8217;re interested in learning more about the process and what we&#8217;re doing on the team I invite you to listen to <a href=\"https://sustainwp.com/podcast/episode-7-wordpress-sustainability-team/\">the episode where we explain it in detail</a>.</p>\n\n\n\n<p>As a culmination of 2023, I was honored to be elected, along with 3 other fantastic colleagues, as a representative of the Sustainability Team.&nbsp;</p>\n\n\n\n<h2 class=\"kt-adv-heading6397_c911a5-a5 wp-block-kadence-advancedheading\"><strong>Disclaimer</strong></h2>\n\n\n\n<p>These types of articles are always difficult for me to write (I don&#8217;t do it often either). The intention is to inspire others, but I am also aware that we all start from different circumstances. In that sense, I feel privileged and can&#8217;t help but worry that the small personal &#8220;successes&#8221; I share will have the opposite effect to the one I&#8217;m looking for.</p>\n\n\n\n<p>Maybe it&#8217;s an unfounded fear and I&#8217;ve managed to convey my enthusiasm for life in general and the WordPress community in particular. Hopefully it inspires you to apply it in your own way.&nbsp;</p>\n\n\n\n<p>Whether I&#8217;ve achieved one thing or the other, I&#8217;ll be happy to read you in the comments. :)</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p></p>\n\n\n\n<h1 id=\"espanol\" class=\"kt-adv-heading6397_5884c3-b1 wp-block-kadence-advancedheading\">Con WordPress otra vida es posible</h1>\n\n\n\n<p>11 de diciembre de 2023, Palacio Neptuno (Madrid). Estoy sentado, rodeado de mucha gente, todos estamos mirando hacia un escenario con una pantalla donde se lee &#8220;State of the Word 2023&#8221;. Miro el reloj, marca las 16:05, y me vienen dos pensamientos a la cabeza: el primero es &#8220;Parece que Matt llega tarde&#8221;; el segundo viene provocado por haber visto la fecha que indicaba &#8220;11 dic&#8221;,&nbsp; mi cerebro quiere recordarme algo&#8230; &#8220;¡Leche! Que hoy hace justo 15 años que leí mi tesis doctoral en neurociencia&#8221;.</p>\n\n\n\n<p>Espero que este recurso de empezar &#8220;in media res&#8221; haya captado tu atención y tengas cierto interés en saber cómo he llegado hasta ahí.</p>\n\n\n\n<h2 class=\"kt-adv-heading6397_fea921-46 wp-block-kadence-advancedheading\"><strong>Mi vida antes de WordPress</strong></h2>\n\n\n\n<p>Siempre he sido una persona curiosa y la carrera de biología me pareció una buena candidata donde poder aplicar ese rasgo. Durante los años de universidad obtuve calificaciones bastante buenas que me permitieron optar a una beca para desarrollar una tesis doctoral.&nbsp;</p>\n\n\n\n<p>Durante los años que dediqué a esa tesis, entre otras cosas, me convertí en un experto en los mecanismos moleculares implicados en la muerte celular programada en la isquemia cerebral. ¿A que no pensabas que ibas a leer esa combinación de palabras en un post relacionado con WordPress, eh? Y eso que no he querido usar palabras más técnicas como &#8220;apoptosis&#8221;, que es la forma &#8220;cool&#8221; con la que nos referimos los científicos a la muerte celular programada.</p>\n\n\n\n<p>Después de presentar la tesis (sí, efectivamente, el 11 de diciembre de 2008, me gusta que mantengas la atención) continué investigando enfermedades neurodegenerativas en varios postdocs. Mi trayectoria no apuntaba al Nobel (ni era mi intención), pero sí &#8220;progresaba adecuadamente&#8221; dentro de la &#8220;carrera científica&#8221;.</p>\n\n\n\n<p>Entonces ¿qué pasó, Nahuai?&nbsp;</p>\n\n\n\n<p>¿Qué se torció para que dejaras de ejercer como científico y empezaras a montar webs con WordPress?</p>\n\n\n\n<h2 class=\"kt-adv-heading6397_0ae430-d4 wp-block-kadence-advancedheading\"><strong>Buscando un modo de vida más amable</strong></h2>\n\n\n\n<p>Lo que ocurrió es que tuve una experiencia laboral desagradable en el postdoc que estaba realizando en un centro de investigación en Italia (allá por 2014).</p>\n\n\n\n<p>El motivo no es tan importante como lo es la reflexión que me obligó a realizar. Me di cuenta de que, aunque me encantaba investigar, el modo de vida del investigador no estaba alineado con cómo quería vivir.&nbsp;</p>\n\n\n\n<p>Así empezó otra investigación, una en la que pretendía encontrar un trabajo que me permitiera tener más libertad de horario y ubicación.</p>\n\n\n\n<h2 class=\"kt-adv-heading6397_e0c3be-03 wp-block-kadence-advancedheading\"><strong>Encontrando WordPress</strong></h2>\n\n\n\n<p>Te puedes imaginar que el comienzo de esa nueva investigación, que suponía dejar de lado unos 15 años de formación como neurocientífico, no fue fácil.</p>\n\n\n\n<p>El concepto general era hacerme freelance y trabajar en algo online. Efectivamente, era muy general, pero cumplía los requisitos para ganar esa libertad que buscaba. Por suerte, WordPress apareció bastante pronto en la ecuación (el mismo 2014) y en seguida me sentí cómodo con la herramienta.</p>\n\n\n\n<p>Empecé a formarme en el CMS. Creé una web de tecnología y otra de viajes para aplicar lo que iba aprendiendo. Parte de este proceso lo hice mientras seguía trabajando como científico y otro con la prestación de desempleo y el apoyo de mi pareja.</p>\n\n\n\n<p>Años más tarde, cuando me sentí capaz de crear webs para clientes y conseguí sacudirme un poco el &#8220;síndrome del impostor&#8221;, empecé a ofrecer mis servicios en mi web personal (creada con WordPress, lógicamente). Los primeros clientes fueron &#8220;friends, fools and family&#8221; y después me empezaron a llegar clientes gracias a los artículos sobre WordPress y fotografía que escribía en mi blog.</p>\n\n\n\n<h2 class=\"kt-adv-heading6397_577274-80 wp-block-kadence-advancedheading\"><strong>Descubriendo la comunidad (&#8220;el ingrediente secreto&#8221; de WordPress)</strong></h2>\n\n\n\n<p>Cuando estaba en Italia empecé a seguir noticias sobre WordPress, principalmente a través de podcasts, y me sorprendía escuchar la cantidad de eventos que tenían lugar en España. Por eso, en cuanto regresé a España empecé a acudir a las Meetups de Barcelona y sus alrededores.</p>\n\n\n\n<p>A eso le siguieron varias WordCamps por la península y para cuando me quise dar cuenta ya estaba totalmente enamorado de la comunidad. Pronto me di cuenta de que era el &#8220;ingrediente secreto&#8221; detrás de la popularidad de WordPress.</p>\n\n\n\n<p>Aprovechando la &#8220;fase de enamoramiento&#8221;, empecé a participar en la comunidad dando ponencias, acudiendo como voluntario y más adelante creando la Meetup Terrassa, cuidad donde resido ahora, y donde pronto cumpliré 5 años como organizador.&nbsp;</p>\n\n\n\n<p>En la WordCamp Barcelona de 2018 conocí a Esther Solà, una desarrolladora web que seguía online (porque tenía un fantástico blog sobre WordPress) y rápidamente hicimos migas. Pocos meses después lanzamos el podcast <a href=\"https://freelandev.com/\">Freelandev</a>, en el que llevamos casi 5 años contando cómo nos ganamos la vida como desarrolladores WordPress (y muchas más cosas). El podcast sirvió de incubadora para sacar otro proyecto común, <a href=\"https://osompress.com/\">OsomPress</a>, donde creamos plugins y temas para WordPress desde hace más de 3 años.</p>\n\n\n\n<p>Una vez constatado mi amor por la comunidad española de WordPress, quise conocer mejor también a la comunidad internacional (parte de la cual leía y escuchaba), y por eso fui a la WordCamp Europe 2019 como voluntario. La experiencia fue tan buena que desde entonces es una cita anual que no me pierdo (siempre que las condiciones lo permitan).</p>\n\n\n\n<p>Podría, seguir durante horas escribiendo sobre las bondades de la comunidad, pero&nbsp;si tuviera que resumirlo diría que me ha aportado muchas cosas intangibles, pero otras que sí lo son:</p>\n\n\n\n<ul>\n<li>Amigos (y de los buenos)</li>\n\n\n\n<li>Una red de profesionales en los que confiar</li>\n\n\n\n<li>Clientes</li>\n\n\n\n<li>La creación de un podcast</li>\n\n\n\n<li>La creación de un empresa de desarrollo de plugins y temas</li>\n\n\n\n<li>Alinear mi trabajo con mi propósito vital</li>\n</ul>\n\n\n\n<p>Creo que este sentimiento, con variaciones personales, lo comparten bastantes miembros de la comunidad de WordPress. Hay una frase que se repite bastante, con distintas variaciones, pero dice algo así como &#8220;Llegué por el software y me quedé por la gente&#8221;.&nbsp;</p>\n\n\n\n<h2 class=\"kt-adv-heading6397_dcbc41-c7 wp-block-kadence-advancedheading\"><strong>Hacia un modo de vida más alineado con mis principios</strong></h2>\n\n\n\n<p>Una vez que me demostré a mí mismo que podía ganarme la vida como desarrollador WordPress freelance, puse el foco en cómo podía contribuir a &#8220;un mundo mejor&#8221;, dentro de mis modestas posibilidades, claro.</p>\n\n\n\n<p>Por un lado, empecé a ser más selectivo con los proyectos que aceptaba, priorizando los que iban a tener un impacto positivo, y por otro empecé a crear contenido sobre sostenibilidad web.</p>\n\n\n\n<p>La inspiración de esto último se lo debo a <a href=\"https://wordpress.tv/2019/09/22/roberto-vazquez-desarrollo-sostenible/\">una charla de Roberto Vazquez en la WordCamp de Pontevedra 2019</a>, en la que habló del impacto medioambiental de las páginas web. Otro ejemplo del efecto &#8220;bola de nieve&#8221; que viene impulsada por ser parte de la comunidad.</p>\n\n\n\n<p>Y hablando de bolas de nieve. Gracias a haber conocido a Hannah Smith en la WordCamp Europe 2019, descubrí la beca de Green Web Foundation que obtuve el año pasado. Gracias a ella pude crear el podcast de serie limitada <a href=\"https://sustainwp.com/\">Sustain WP</a>, que trata sobre sostenibilidad digital y WordPress, el cual me permitió entrevistar a un montón de personas interesantes de la comunidad.</p>\n\n\n\n<p>Hannah también estuvo involucrada en la creación de la iniciativa de sostenibilidad de WordPress que meses más tarde se convirtió en el equipo oficial de sostenibilidad. Si estás interesado en conocer más sobre el proceso y lo que estamos haciendo en el equipo te invito a escuchar <a href=\"https://sustainwp.com/podcast/episode-7-wordpress-sustainability-team/\">el episodio donde lo explicamos con detalle.</a></p>\n\n\n\n<p>Como colofón de 2023, tuve el honor de ser elegido, junto a otros 3 fantásticos compañeros, como representante del equipo de sostenibilidad. &nbsp;</p>\n\n\n\n<h2 class=\"kt-adv-heading6397_ffe359-dd wp-block-kadence-advancedheading\"><strong>Disclaimer</strong></h2>\n\n\n\n<p>Este tipo de artículos siempre me resultan difíciles de escribir (tampoco lo hago a menudo). La intención es inspirar a otras personas, pero también soy consciente de que todos partimos de circunstancias distintas. En ese sentido, me siento un privilegiado y no puedo evitar preocuparme de que los pequeños &#8220;éxitos&#8221; personales que comparto tengan el efecto contrario al que busco.</p>\n\n\n\n<p>Igual es un temor infundado y he conseguido trasmitir mi entusiasmo por la vida en general y la comunidad WordPress en particular. Ojalá te inspire para aplicarlo a tu manera.&nbsp;</p>\n\n\n\n<p>Tanto si he conseguido una cosa como otra, estaré encantado de leerte en los comentarios. :)</p>\n<p>The post <a href=\"https://heropress.com/essays/with-wordpress-another-life-is-possible/\">With WordPress Another Life Is Possible &#8211; Con WordPress otra vida es posible</a> appeared first on <a href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 17 Jan 2024 08:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nahuai Badiola\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"BuddyPress: BuddyPress 12.1.1 Maintenance &amp; Security release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=332779\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://buddypress.org/2024/01/buddypress-12-1-1-maintenance-security-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2603:\"<p><a href=\"https://downloads.wordpress.org/plugin/buddypress.12.1.1.zip\">BuddyPress 12.1.1</a> is now available. This is a security and maintenance release. <strong>Please update your BuddyPress as soon as possible</strong>.</p>\n\n\n\n<p>The 12.1.1 release addresses the following minor security issue:</p>\n\n\n\n<ul>\n<li>Using the Cover Image group&#8217;s REST API Endpoints, it was possible to a non member of private/hidden group to get the corresponding group Cover Image URL. Discovered by <a href=\"https://au.linkedin.com/in/colin-xu-31a547134\" target=\"_blank\" rel=\"noreferrer noopener\">Colin Xu</a>.</li>\n</ul>\n\n\n\n<p>This vulnerability was reported privately to the BuddyPress team, in accordance with&nbsp;<a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">WordPress’s security policies</a>. Our thanks to the reporter for practicing coordinated disclosure.</p>\n\n\n\n<p>BuddyPress 12.1.1 also fixes 10 bugs. For complete details, visit the <a href=\"https://codex.buddypress.org/releases/version-12.1.1/\">12.1.1 changelog</a>.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-horizontal is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-1 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link has-white-background-color has-text-color has-background no-border-radius wp-element-button\" href=\"https://downloads.wordpress.org/plugin/buddypress.12.1.1.zip\">Get BuddyPress 12.1.1</a></div>\n</div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p>You can get the latest version by clicking on the above button, downloading it from the&nbsp;<a href=\"https://wordpress.org/plugins/buddypress/\">WordPress.org plugin directory</a>&nbsp;or checking it out from our&nbsp;<a href=\"https://buddypress.trac.wordpress.org/browser/branches/11.0\">Subversion repository.</a></p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"many-thanks-to-11-1-0-contributors\">Many thanks to 12.1.1 contributors <span class=\"dashicons dashicons-heart\"></span></h2>\n\n\n\n<p> <a href=\"https://profiles.wordpress.org/sabernhardt\">sabernhardt</a>, <a href=\"https://profiles.wordpress.org/emaralive\">emaralive</a>, <a href=\"https://profiles.wordpress.org/shawfactor\">shawfactor</a>, <a href=\"https://profiles.wordpress.org/strategio\">strategio</a>, <a href=\"https://profiles.wordpress.org/vapvarun/\">vapvarun</a>, <a href=\"https://profiles.wordpress.org/perchenet\">perchenet</a> &amp; <a href=\"https://profiles.wordpress.org/imath/\">imath</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 16 Jan 2024 23:43:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mathieu Viet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"WordCamp Central: WPBeginner joins the WordPress global community sponsorship program in 2024\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://central.wordcamp.org/?p=5109967\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:118:\"https://central.wordcamp.org/news/2024/01/wpbeginner-joins-the-wordpress-global-community-sponsorship-program-in-2024/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3704:\"<p>Please join us in welcoming WPBeginner to the <a href=\"https://central.wordcamp.org/sponsor-multiple-wordcamps/\">2024 WordPress global community sponsorship program</a>! WPBeginner’s pledge to sponsor all official WordPress community events (WordCamps, Meetups, and more) all around the world provides support and stability to our hardworking crew of volunteer event organizers. Thanks for everything, WPBeginner!</p>\n\n\n<div class=\"wp-block-image\">\n<a href=\"https://central.wordcamp.org/files/2024/01/wpbeginner-logo-wpcentral.png\"><img width=\"900\" height=\"312\" src=\"https://central.wordcamp.org/files/2024/01/wpbeginner-logo-wpcentral.png\" alt=\"\" class=\"wp-image-5109968\" /></a>WPBeginner logo</div>\n\n\n<p>At <a href=\"https://www.wpbeginner.com/\">WPBeginner</a>, we provide cutting-edge, helpful WordPress tutorials that are easy to understand for small businesses, bloggers, and non-techy WordPress website owners. Since 2009, our <a href=\"https://videos.wpbeginner.com/\">free WordPress video courses</a> and tutorials are watched by over 56 millions WordPress users worldwide.</p>\n\n\n\n<p>Whether you&#8217;re looking to learn how to build a WordPress website, decide which WordPress plugins to pick, or just learn the WordPress best practices to grow your website, WPBeginner&#8217;s free resources can help:</p>\n\n\n\n<ul>\n<li><a href=\"https://www.wpbeginner.com/blog/\">WPBeginner Blog</a> – The central place for all our WordPress tutorials.</li>\n\n\n\n<li><a href=\"https://www.wpbeginner.com/solutions/\">WPBeginner Solution Center</a> – Detailed reviews of recommended WordPress plugins, tools, themes, agencies, and more curated by our WordPress experts.</li>\n\n\n\n<li><a href=\"https://www.wpbeginner.com/glossary/\">WPBeginner Dictionary</a> – WordPress lingo and terminology explained in plain english for non-techy users.</li>\n\n\n\n<li><a href=\"https://videos.wpbeginner.com/\">WPBeginner Videos</a> – Learn from our free WordPress video courses including <a href=\"https://videos.wpbeginner.com/courses/wordpress-101/\">WordPress 101</a>, <a href=\"https://videos.wpbeginner.com/courses/wordpress-seo-for-beginners/\">WordPress SEO for Beginners</a>, and hundreds more.</li>\n\n\n\n<li><a href=\"https://www.wpbeginner.com/deals/\">WPBeginner Deals</a> – Exclusive discounts on WordPress products and services for WPBeginner users.&nbsp;</li>\n\n\n\n<li><a href=\"https://www.wpbeginner.com/tools/\">WPBeginner Tools</a> &#8211; Free business tools created by the WPBeginner team for small business owners.</li>\n</ul>\n\n\n\n<p>Over the last 14 years working closely with WordPress users and listening to their feedback, we have also created some of the most popular WordPress plugins including <a href=\"https://wpforms.com/\">WPForms</a>, <a href=\"https://aioseo.com/\">AIOSEO</a> (All in One SEO for WordPress), <a href=\"https://optinmonster.com/\">OptinMonster</a>, <a href=\"https://www.monsterinsights.com/\">MonsterInsights</a>, and dozens more. Collectively over 25 million websites are using our free and <a href=\"https://www.wpbeginner.com/wordpress-plugins/\">premium WordPress plugins</a>.</p>\n\n\n\n<p>WPBeginner is part of the <a href=\"https://awesomemotive.com/\">Awesome Motive</a> family, and we&#8217;re on a mission to help small businesses grow &amp; compete with the big guys using the power of open source.&nbsp;</p>\n\n\n\n<p>If you&#8217;re a WordPress professional looking for a remote role, <a href=\"https://awesomemotive.com/careers/\">we&#8217;re hiring</a>. Come join our team.</p>\n\n\n\n<p>If you&#8217;re a WordPress product owner looking for an investment or selling your WordPress business, check out the <a href=\"https://www.wpbeginner.com/wpbeginner-growth-fund/\">WPBeginner Growth Fund</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 16 Jan 2024 15:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Isotta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"Do The Woo Community: The Future of SEO, Content and AI with Alex Moss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=78837\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://dothewoo.io/future-seo-content-ai/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:370:\"<p>Discover how AI SEO and content creation impacts the future of WordPress and WooCommerce with Dave Lockie and Alex Moss. </p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/future-seo-content-ai/\">The Future of SEO, Content and AI with Alex Moss</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 16 Jan 2024 09:46:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"WordCamp Central: GoDaddy sponsors WordPress community events worldwide\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://central.wordcamp.org/?p=5109971\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://central.wordcamp.org/news/2024/01/godaddy-sponsors-wordpress-community-events-worldwide/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3636:\"<p>What would we do without our sponsors? We&#8217;re so grateful to <a href=\"https://www.godaddy.com/pro?utm_source=wcglobal_2023_sponsorship&utm_medium=events&utm_campaign=en-us_events_prg_awa_partners_part_wcsponsordesc_001\">GoDaddy</a> for <a href=\"https://central.wordcamp.org/sponsor-multiple-wordcamps/\">sponsoring WordPress community events all around the globe</a> at the Gold level in 2024! GoDaddy&#8217;s support enhances local community events, such as WordPress meetup and WordCamps, improving the experience for WordPress enthusiasts and simplifying the organization process for our dedicated team of volunteers.</p>\n\n\n<div class=\"wp-block-image\">\n<a href=\"https://central.wordcamp.org/files/2023/02/Copy-of-gd-logo-480x360-1.png\"><img width=\"480\" height=\"360\" src=\"https://central.wordcamp.org/files/2023/02/Copy-of-gd-logo-480x360-1.png\" alt=\"GoDaddy logo global sponsorship \" class=\"wp-image-3160920\" /></a>GoDaddy logo</div>\n\n\n<p>At&nbsp;<a href=\"https://www.godaddy.com/pro?utm_source=wcglobal_2023_sponsorship&utm_medium=events&utm_campaign=en-us_events_prg_awa_partners_part_wcsponsordesc_001\">GoDaddy</a>, our&nbsp;mission&nbsp;is&nbsp;to empower&nbsp;a&nbsp;worldwide community of&nbsp;entrepreneurs&nbsp;by giving them all the help and tools they need to grow online&nbsp;— including a simpler, safer WordPress experience.&nbsp;</p>\n\n\n\n<p>We champion&nbsp;our&nbsp;Makers of the Web&nbsp;by delivering&nbsp;a suite of WordPress solutions that enable fast and easy setup and then&nbsp;enables users&nbsp;to&nbsp;harness all the power of the world’s most popular CMS.&nbsp;</p>\n\n\n\n<p>The <a href=\"https://community.godaddy.com/s/group/0F93t000000I7EfCAK/godaddy-pro?utm_source=wcglobal_2023_sponsorship&utm_medium=events&utm_campaign=en-us_events_prg_awa_partners_part_wcsponsordesc_001\">GoDaddy Pro Community</a> was built by and for website designers and developers.&nbsp;Whether you’re new to web design or growing your existing business, you’ll find free tools, products, education, and expert support to help you more efficiently create and maintain beautiful sites — and wow clients.</p>\n\n\n\n<p>We provide a&nbsp;<a href=\"https://www.godaddy.com/hosting/wordpress-hosting?utm_source=wcglobal_2023_sponsorship&utm_medium=events&utm_campaign=en-us_events_prg_awa_partners_part_wcsponsordesc_001\">Managed WordPress experience</a> that is as easy as it is effective. The latest version of WordPress comes pre-installed with exclusive themes, plugins, and tools to get you up and running quickly, with automated backups, updates, and malware removal so our Pros can spend less time on monotonous maintenance, and more time building their businesses.GoDaddy Pro works tirelessly to foster an active, nurturing community, with initiatives including the sponsorship of WordCamps globally, weekly <a href=\"https://events.godaddy.com/godaddy-pro-online?utm_source=wcglobal_2023_sponsorship&utm_medium=events&utm_campaign=en-us_events_prg_awa_partners_part_wcsponsordesc_001\">GoDaddy Pro Meetups</a>, our free <a href=\"https://www.godaddy.com/pro/academy?utm_source=wcglobal_2023_sponsorship&utm_medium=events&utm_campaign=en-us_events_prg_awa_partners_part_wcsponsordesc_001\">GoDaddy Pro Academy</a> courses, and our <a href=\"https://community.godaddy.com/s/group/0F93t000000I7EfCAK/godaddy-pro?utm_source=wcglobal_2023_sponsorship&utm_medium=events&utm_campaign=en-us_events_prg_awa_partners_part_wcsponsordesc_001\">GoDaddy Pro Discussions Group</a>. We’re proud to be a partner of the WordPress community and look forward to witnessing all the individual greatness that our efforts help support.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 15 Jan 2024 15:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Isotta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"Gutenberg Times: Quick Tip: How to use a classic menu in the navigation block of a block theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=27030\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"https://gutenbergtimes.com/quick-tip-how-to-use-a-classic-menu-in-the-navigation-block-of-a-block-theme/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1883:\"<p>There was a question in the forums, if one needs to rebuild all the menus when switching from a classic theme to a block theme. In other words, how can you add an existing menu to the Navigation block. </p>\n\n\n\n<p>If there is only one classic menu, it will be displayed in the navigation block. But if there are multiple classic menus on the site, it doesn&#8217;t automatically convert it to a navigation block. In that case, it takes a manual step after you switched the theme, but you don&#8217;t have to recreate the menus. </p>\n\n\n\n<p>Here are the steps to follow along with a separate test environment. </p>\n\n\n\n<ul>\n<li>Open a new website via <a href=\"https://playground.wordpress.net/?theme=twentytwentyone\">WordPress Playground and included the Twenty-Twenty-One Theme. </a></li>\n\n\n\n<li><a href=\"https://codex.wordpress.org/Theme_Unit_Test\" target=\"_blank\" rel=\"noreferrer noopener\">Imported the theme test data file</a>&nbsp;(more specifically,&nbsp;<a href=\"https://raw.githubusercontent.com/WPTT/theme-unit-test/master/themeunittestdata.wordpress.xml\" target=\"_blank\" rel=\"noreferrer noopener\">this</a>)</li>\n\n\n\n<li>Set Display Location of imported menu to Primary Menu to ensure Twenty Twenty One has a menu on top of the landing page</li>\n\n\n\n<li>Switch to Twenty Twenty-Four</li>\n\n\n\n<li>The menu disappeared, only the social link menu showed. </li>\n</ul>\n\n\n\n<p>Now the steps on how to get the classic menu back into the template? </p>\n\n\n\n<ul>\n<li>Click on the Template header, </li>\n\n\n\n<li>Click on the Navigation block</li>\n\n\n\n<li>The sidebar with the setting for the navigation block should open. </li>\n\n\n\n<li>Use the 3-dot menu to select the classic menu &#8220;All pages&#8221; </li>\n\n\n\n<li>Click on the Save button. </li>\n</ul>\n\n\n\n<p>And here is the video of the whole process: </p>\n\n\n\n\n\n\n\n<p><em>Thank you to JuanMa Garrido for the testing instructions. </em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 15 Jan 2024 12:13:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:122:\"Gutenberg Times: Call for testing WordPress 6.5, page builders yes or no, Data Liberation and more — Weekend Edition 280\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=26964\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:127:\"https://gutenbergtimes.com/call-for-testing-wordpress-6-5-page-builders-yes-or-no-data-liberation-and-more-weekend-edition-280/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:13922:\"<p>Howdy, </p>\n\n\n\n<p>We are 31 days away from WordPress 6.5 Beta 1, the version that closes the new version for new features. In so far it&#8217;s early, lots of work can still go into the next major upgrade. On the other hand, we are only three Gutenberg plugin versions away from WordPress beta 1.  Gutenberg 17.5 RC is available for testing. If you have some time, it would be wonderful if you can use <strong>Anne McCarthy</strong>&#8216;s instructions to take <a href=\"https://make.wordpress.org/test/2024/01/13/early-opportunities-to-test-wordpress-6-5/\">early opportunities to test WordPress 6.5</a>. If you would rather not set up a local test site, you can also use the <a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\">Gutenberg Nightly via WordPress playground</a> for your early test. </p>\n\n\n\n<p>Munich is again powered by snow and it freezing once more. Hubby and I are getting used to it; somewhat. Definitely longing for warmer weather. </p>\n\n\n\n<p>I hope you stay warm and have a joyful weekend! </p>\n\n\n\n<p>Yours, 💕<br /><em>Birgit</em></p>\n\n\n\n<p>PS: If you intend to go to WordCamp Asia, I again <a href=\"https://calendly.com/pauli-haack/wcasia\"><strong>opened up my calendar so we can schedule a 1:1 meeting</strong></a>, to chat about your products, what you need to be successful as a developer or how to contribute to WordPress or just catch up on life. And if you are not going to make it to WordCamp Asia, we can always get together at WordCamp Europe in June. 🤗</p>\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-word-press-release-information\">Developing Gutenberg and WordPress</a></li><li><a href=\"https://gutenbergtimes.com/feed/#1-p\">Page builders discussions</a></li><li><a href=\"https://gutenbergtimes.com/feed/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a></li><li><a href=\"https://gutenbergtimes.com/feed/#2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </a></li></ul></div>\n</div></div>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p>WordPress co-founder, <strong>Matt Mullenweg</strong>, elaborated on the WordPress blog the <a href=\"https://wordpress.org/news/2024/01/data-liberation-in-2024/\"><strong>Data Liberation in 2024</strong></a> project, he announced during State of the Word in Madrid. &#8220;Migrating your site to WordPress, or exporting all your content from WordPress, should be possible in one click. I want WordPress’ export format to become the lingua franca of CMSs, whether coming to WordPress or moving within WordPress. &#8220;, he wrote. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Justin Tadlock</strong> has again compiles the list of changes in Core and Gutenberg in <a href=\"https://developer.wordpress.org/news/2024/01/10/whats-new-for-developers-january-2024/\"><strong>What’s new for developers? (January 2024)</strong></a>. &#8220;It’s a new year and time for exciting new things happening in the WordPress world. Catch the latest monthly roundup aimed at extenders.&#8221; he wrote. It&#8217;s a list of updates interesting for plugin, and theme authors as well as freelance and agency developers. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"has-accent-color has-light-background-background-color has-text-color has-background has-link-color wp-elements-b21294d93d10468b5f9c6136fdd74073\">🎙️ Latest episode:  <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-94-state-of-the-word-gutenberg-17-2-17-3-and-17-4-wordpress-6-5-migrating-from-classic-theme-to-block-theme/\">Gutenberg Changelog #94 – State of the Word, Gutenberg 17.2, 17.3 and 17.4, WordPress 6.5, Migrating from Classic Theme to Block Theme</a> with Sarah Norris</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Joen Asmussen</strong>, summarize the work of the WordPress design team in his post: <a href=\"https://make.wordpress.org/design/2024/01/02/design-share-dec-1-dec-29/\"><strong>Design Share: Dec 1-Dec 29</strong></a>. The team worked on</p>\n\n\n\n<ul>\n<li>WP.org Data Liberation</li>\n\n\n\n<li>WP.org: Learning Pathways</li>\n\n\n\n<li>Thumbnail design</li>\n\n\n\n<li>Missing Fonts</li>\n\n\n\n<li>Safari Text-Selection Fix</li>\n\n\n\n<li>Responsive tables for Openverse’s source page</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"1-p\">Page builders discussions</h2>\n\n\n\n<p><strong><a href=\"https://twitter.com/karks88\">Eric Karkovack</a></strong> wondered in his post <strong><a href=\"https://thewpminute.com/can-gutenberg-and-wordpress-page-builders-coexist/\">Can Gutenberg and WordPress Page Builders Coexist?</a></strong> </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/mattmedeiros\">Matt Medeiros</a></strong> asks: <a href=\"https://thewpminute.com/is-2024-the-year-of-page-builders/\"><strong>Is 2024 the Year of Page Builders?</strong></a> on the WPMinute episode 198. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his post, <a href=\"https://geary.co/wordpress-block-editor-first-look/\"><strong>I Tried Building a Layout With the WordPress Block Editor And it Didn’t Go Very Well,</strong></a> <strong><a href=\"https://twitter.com/thekevingeary\">Kevin Geary</a></strong> walks us through his learnings, trying the site editor for the first time. </p>\n\n\n\n<p>On YouTube, <a href=\"https://geary.co/wordpress-block-editor-first-look/#comment-593\"><strong>Anne McCarth</strong>y</a> and <a href=\"https://geary.co/wordpress-block-editor-first-look/#comment-590\"><strong>Riad Benguella</strong></a>, Gutenberg Core Developer,  chimed in with additional links and information</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Using Geary&#8217;s video and post as inspiration, <strong>Brian Coords</strong> walks us through how he would solve the layout problem Geary struggled with. <a href=\"https://www.youtube.com/watch?v=xCWUaLc7gvM&t=5s\">Building an example layout in Gutenberg (response video)</a>. He covers this &#8220;demo layout using core blocks and a few lines of CSS (via register_block_style). Along the way, I discuss alignments and widths in Gutenberg, semantic elements, flex box tools for layout, custom CSS, and whether the block editor is a &#8220;page builder&#8221;.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p><strong>Jamie Marsland</strong>, PootlePress, created a tutorial to help Beginners understand  the core concept around  WordPress Block Themes:  <a href=\"https://www.pootlepress.com/2024/01/mastering-wordpress-block-themes-3-key-principles-for-beginners/\"><strong>Three Key Principles for Beginners</strong></a>. &#8220;WordPress block themes revolutionize the way websites are built and designed, simplifying the process down to three core elements: <strong>Blocks Templates and Styles</strong>.&#8221; he wrote. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p>For the WordPress themes team, Justin Tadlock updated the community of contributors on <strong><a href=\"https://make.wordpress.org/themes/2024/01/11/new-block-focused-theme-handbook-docs-and-whats-coming-in-2024/\">New Block-Focused Theme Handbook Docs and What’s Coming in 2024</a>.</strong> After the revamp of the theme handbook, and publishing five new chapters, with eight still in draft. The next steps are the documentation of Patterns, Advanced topics and Classic Themes. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Jacob Martella</strong> has some sound advice when you are on the quest of Converting<a href=\"https://crosswindsframework.com/blog/2023/12/18/converting-your-website-to-the-block-editor/\"><strong> Your Website to the Block Editor</strong></a>. &#8220;The biggest thing is that the site editor gives you so much control over how your website looks. You can customize the fonts and colors, change how your header and footer look and edit any template you want right from your dashboard. You don’t need to know CSS or PHP or have to worry about editing any files to do it&#8221; he wrote. </p>\n\n\n\n\n<p><strong> <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2022&#8221;</a> </strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test, and Meta team from Jan. 2021 on. Updated by yours truly.  <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\"><em>The index 2020 is here</em></a></p>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p>Reminder! You are invited to the January <strong>Developers Hours for January 16th, 2024 at 15:00 UTC (10 am EDT)</strong> to <strong><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/298191982/\">Build your first WordPress block</a></strong>. In this online event, you’ll be on a walk-through <a href=\"https://developer.wordpress.org/block-editor/getting-started/tutorial/\">the new tutorial in the Block editor handbook</a>, and you will also learn more about the<a href=\"https://github.com/WordPress/block-development-examples\"> block development examples</a> on GitHub.</p>\n\n\n\n<a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/298191982/\"><img width=\"600\" height=\"338\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/01/build-your-first-block.webp?resize=600%2C338&ssl=1\" alt=\"\" class=\"wp-image-26925\" /></a>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>The page in the Block Editor Handbook experienced a rewrite: &#8220;<a href=\"https://developer.wordpress.org/block-editor/getting-started/fundamentals/static-dynamic-rendering/\"><strong>Static or Dynamic rendering of a block</strong></a>&#8221; With the help of diagrams and new code examples, developers learn the main differences, advantages, and disadvantages of each approach of block development.</p>\n\n\n\n<img width=\"652\" height=\"379\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/01/static-rendering.webp?resize=652%2C379&ssl=1\" alt=\"\" class=\"wp-image-27006\" />\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Ryan Welcher</strong> released a new version  of his <a href=\"https://wordpress.org/plugins/advanced-query-loop/\"><strong>Advance Query Loop</strong></a> plugin. Now ACF developer will see their meta keys in the auto-complete list for Post Meta queries. </p>\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<p class=\"has-text-align-right has-small-font-size\"><em>Questions? Suggestions? Ideas? Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or send me a message on WordPress Slack or Twitter @bph</em>. </p>\n\n\n\n<p class=\"has-text-align-right has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p>Featured Image: Building blocks game. Free public domain CC0 image.</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too, and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 13 Jan 2024 13:00:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"WordPress.org blog: Data Liberation in 2024\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=16736\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/news/2024/01/data-liberation-in-2024/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2883:\"<p>Imagine a more open web where people can switch between any platform of their choosing. A web where being locked into a system is a thing of the past. This is the web I’ve always wanted to see. That’s why I announced a new initiative called <a href=\"https://wordpress.org/data-liberation/\" target=\"_blank\" rel=\"noreferrer noopener\">Data Liberation</a> for 2024. Migrating your site to WordPress, or exporting all your content from WordPress, should be possible in one click. I want WordPress’ export format to become the lingua franca of CMSes, whether coming to WordPress or moving within WordPress. </p>\n\n\n\n<p>I often hear about folks across the WordPress community duplicating efforts when creating scripts and workflows to move users to WordPress. Imagine if we shared those resources instead and built community-owned plugins that anyone could use! </p>\n\n\n\n<p>But it should be more than plugins; workflows, tutorials, and helper scripts should be shared, too. I want this resource to have space to include moving from social networks, moving from a page builder to core blocks, switching from classic to blocks, and improving WordPress current canonical plugins for importing. </p>\n\n\n\n<h2 class=\"wp-block-heading\">You can help!</h2>\n\n\n\n<p>Of course, the heart of any open source project is the community that shows up to build it. My hope is that this marks the start of a new contribution pathway, separate from core teams, that allows folks to contribute what they’ve learned and what they’ve created to help others move to WordPress. I expect this emphasis on migration will also influence future development, both in core and with recommended community or canonical plugins.</p>\n\n\n\n<p>There are a few things that I think will be key to making this project a success:</p>\n\n\n\n<ul>\n<li>A dedicated landing page on WordPress.org following a WordPress.org/and/[platform-name] format.</li>\n\n\n\n<li>A forum used for non-review user feedback and general discussion.</li>\n\n\n\n<li>A dedicated Slack channel.</li>\n\n\n\n<li>Moderation within hours rather than days.</li>\n\n\n\n<li>Listed on <a href=\"https://github.com/WordPress\">WordPress GitHub</a> with syncing for individual commits to SVN for history in both places.</li>\n</ul>\n\n\n\n<p>By complementing the community’s existing efforts—the <a href=\"https://wordpress.org/five-for-the-future/\">Five for the Future program</a>, the <a href=\"https://learn.wordpress.org/\">Learn WordPress initiative</a>, a focus on internationalization, etc.—my hope is that this will help even more people see themselves in the WordPress project, providing fresh momentum for <a href=\"https://events.wordpress.org/\">WordCamps and meetups</a>. </p>\n\n\n\n<p>It’s never been more crucial to champion openness on the web. Bringing focused attention to improved portability will untether users and increase their freedom like never before.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 12 Jan 2024 16:58:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:11:\"\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"HeroPress: Foundational Pillars From Tokyo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://heropress.com/?p=6380\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:129:\"https://heropress.com/foundational-pillars-from-tokyo/#utm_source=rss&utm_medium=rss&utm_campaign=foundational-pillars-from-tokyo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:11551:\"<img width=\"1024\" height=\"768\" src=\"https://heropress.com/wp-content/uploads/2024/01/90465a09dc845c615.66816362-1024x768.jpeg\" class=\"attachment-large size-large wp-post-image\" alt=\"Floral delight with a scenic snowy Annapurna panorama\" /><div class=\"kb-row-layout-wrap kb-row-layout-id6380_650854-0a alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top kb-theme-content-width\">\n\n<div class=\"wp-block-kadence-column kadence-column6380_445699-93 inner-column-1\"><div class=\"kt-inside-inner-col\">\n<h2 class=\"kt-adv-heading6380_f58919-63 wp-block-kadence-advancedheading\"><a href=\"https://nomad.blog/2023/12/26/what-parts-of-wordpress-would-you-like-to-explore-more-if-you-could/\">What parts of WordPress would you like to explore more if you could?</a></h2>\n\n\n\n\n\n<div class=\"wp-block-image is-style-default\">\n<a href=\"https://nomad.blog/2023/12/26/what-parts-of-wordpress-would-you-like-to-explore-more-if-you-could/\"><img width=\"300\" height=\"199\" src=\"https://heropress.com/wp-content/uploads/2024/01/pexels-photo-296324-300x199.jpeg\" alt=\"Old time lightbulb\" class=\"wp-image-6382\" /></a></div>\n\n\n\n<p>HeroPresser <a href=\"https://heropress.com/contributors/anne-mccarthy/\">Anne McCarthy</a> wrote an excellent <a href=\"https://nomad.blog/2023/12/26/what-parts-of-wordpress-would-you-like-to-explore-more-if-you-could/\">article</a> pointing out how much is different in WordPress these days, and asks the question above.</p>\n\n\n\n<p>What&#8217;s your answer?</p>\n</div></div>\n\n</div></div>\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-6380_e8718e-f3\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n<div class=\"kb-row-layout-wrap kb-row-layout-id6380_82bd3f-6e alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top kb-theme-content-width\">\n\n<div class=\"wp-block-kadence-column kadence-column6380_f9eb45-43 inner-column-1\"><div class=\"kt-inside-inner-col\">\n<h2 class=\"kt-adv-heading6380_656922-69 wp-block-kadence-advancedheading\"><a href=\"https://heropress.com/\">HeroPress.com</a> &#8211; <a href=\"https://heropress.com/essays/reflecting-on-my-3-foundational-pillars/\">Reflecting on My 3 Foundational Pillars</a></h2>\n\n\n\n\n\n<div class=\"wp-block-image is-style-default\">\n<a href=\"https://heropress.com/essays/reflecting-on-my-3-foundational-pillars/\"><img width=\"300\" height=\"300\" src=\"https://heropress.com/wp-content/uploads/2023/01/Destiny-Fox-Kanno-scaled-1-300x300.jpg\" alt=\"Destiny Kanno\" class=\"wp-image-5035\" /></a></div>\n\n\n\n<p>Destiny Kanno is from Tokyo, Japan, and works in Education about WordPress.</p>\n\n\n\n<p><em>As a Community Education Manager I work to break down perceived barriers for folks who want to contribute to the Make WordPress Training Team’s goals, and work as a close partner with the Training Team Representatives and members to empower them to excel in their leadership, goals, and strategy.</em></p>\n\n\n\n<p>Destiny&#8217;s essay is <a href=\"https://heropress.com/essays/reflecting-on-my-3-foundational-pillars/\">available</a> on <a href=\"https://heropress.com\">HeroPress.com</a>.</p>\n</div></div>\n\n</div></div>\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-6380_ed362f-f9\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n<div class=\"kb-row-layout-wrap kb-row-layout-id6380_9e53fd-e2 alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top kb-theme-content-width\">\n\n<div class=\"wp-block-kadence-column kadence-column6380_1b8a39-b9 inner-column-1\"><div class=\"kt-inside-inner-col\">\n<h2 class=\"kt-adv-heading6380_108792-6f wp-block-kadence-advancedheading\"><a href=\"https://wppodcasts.com\">WP Podcasts</a></h2>\n\n\n\n\n\n\n<a href=\"https://wppodcasts.com\"><img src=\"https://heropressnetwork.com/wp-content/uploads/2024/01/pocket_casts_single_315.png\" alt=\"Pocket Casts image\" class=\"wp-image-4316\" /></a>\n\n\n\n\n<p>There were <em>twenty-three</em> WordPress podcast episodes released this week!</p>\n\n\n\n<ul>\n<li><a href=\"https://potencia.pro/274-como-mejorar-la-seguridad-de-wordpress-con-cloudflare/#new_tab\">Potencia Pro 274: Cómo mejorar la seguridad de WordPress con CloudFlare</a> from <a href=\"https://wppodcasts.com/podcast/potencia-pro-wordpress-y-cozas/\">Potencia Pro, WordPress y cozas</a></li>\n\n\n\n<li><a href=\"https://dothewoo.io/make-wordpress-happy/#new_tab\">Make. WordPress. Happy.</a> from <a href=\"https://wppodcasts.com/podcast/do-the-woo-a-woocommerce-podcast/\">Do the Woo &#8211; A WooCommerce Podcast</a></li>\n\n\n\n<li><a href=\"https://share.transistor.fm/s/94234c51#new_tab\">3 Predictions for WordPress in 2024</a> from <a href=\"https://wppodcasts.com/podcast/the-wp-minute/\">The WP Minute</a></li>\n\n\n\n<li><a href=\"https://accessibilitycraft.com/048#new_tab\">$2 Million Settlement Against Web Developer for Failing to Deliver Accessible Website | Surely Sparkling Rose</a> from <a href=\"https://wppodcasts.com/podcast/accessibility-craft/\">Accessibility Craft</a></li>\n\n\n\n<li><a href=\"https://wpbuilds.com/2024/01/11/356-whats-the-state-of-teams-in-the-wordpress-space/#new_tab\">356 – What’s the state of teams in the WordPress space?</a> from <a href=\"https://wppodcasts.com/podcast/wp-builds/\">WP Builds</a></li>\n\n\n\n<li><a href=\"https://share.transistor.fm/s/64cca4dd#new_tab\">Is 2024 the Year of Page Builders?</a> from <a href=\"https://wppodcasts.com/podcast/the-wp-minute/\">The WP Minute</a></li>\n</ul>\n\n\n\n<p>There are new episodes every single day, so be sure to stop by <a href=\"https://wppodcasts.com\">WPPodcasts.com</a> and search for things that interest you!</p>\n</div></div>\n\n</div></div>\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-6380_1b11d4-1a\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n<div class=\"kb-row-layout-wrap kb-row-layout-id6380_053b78-6f alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top kb-theme-content-width\">\n\n<div class=\"wp-block-kadence-column kadence-column6380_7faa55-92 inner-column-1\"><div class=\"kt-inside-inner-col\">\n<h2 id=\"wpphotos\" class=\"kt-adv-heading6380_59bee3-ee wp-block-kadence-advancedheading\"><a href=\"https://wordpress.org/photos\">WP Photos</a></h2>\n\n\n\n<p>Here are some of the great photos submitted to the <a href=\"https://wordpress.org/photos\">WPPhotos</a> project this week!</p>\n\n\n\n\n<a href=\"https://heropress.com/wp-content/uploads/2024/01/35865a105148eab35.43520179-scaled.jpg\"><img width=\"1024\" height=\"683\" src=\"https://heropress.com/wp-content/uploads/2024/01/35865a105148eab35.43520179-1024x683.jpg\" alt=\"Old house at nuwakot, an ancient house sits nestled in the middle of rolling hills, its timeworn facade telling tales of years gone by. Surrounded by nature\'s embrace, the old structure exudes a quiet charm, standing as a silent witness to the passage of time.\" class=\"wp-image-6383\" /></a><a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/35865a1051/\">photo</a> by <a href=\"https://wordpress.org/photos/author/theanupambista/\">Anupam Bista</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.\n\n\n\n<a href=\"https://heropress.com/wp-content/uploads/2024/01/48965a0bad9c44bc9.64532989-scaled.jpg\"><img width=\"683\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/2024/01/48965a0bad9c44bc9.64532989-683x1024.jpg\" alt=\"Green leafs\" class=\"wp-image-6384\" /></a><a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/48965a0bad/\">photo</a> by <a href=\"https://wordpress.org/photos/author/sharankrishna/\">Sharankrishna VP</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.\n\n\n\n<a href=\"https://wordpress.org/photos/photo/63065a0d26/\"><img width=\"1024\" height=\"768\" src=\"https://heropress.com/wp-content/uploads/2024/01/63065a0d2692a7860.59169135-1024x768.jpg\" alt=\"Crocodile in royal chitwan national park, Nepal\" class=\"wp-image-6385\" /></a><a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/63065a0d26/\">photo</a> by <a href=\"https://wordpress.org/photos/author/keshavsamarpan/\">keshavsamarpan</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.\n\n\n\n<a href=\"https://wordpress.org/photos/photo/91765a001e/\"><img width=\"1024\" height=\"768\" src=\"https://heropress.com/wp-content/uploads/2024/01/91765a001ef1ac553.14603097-1024x768.jpeg\" alt=\"A wide angle shot from the very top of Panathenaic Stadium in Athens, Greece.\" class=\"wp-image-6386\" /></a><a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/91765a001e/\">photo</a> by <a href=\"https://wordpress.org/photos/author/desrosj/\">Jonathan Desrosiers</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.\n\n\n\n<a href=\"https://heropress.com/wp-content/uploads/2024/01/97659fc0c4dac781.13250590-scaled.jpeg\"><img width=\"1024\" height=\"803\" src=\"https://heropress.com/wp-content/uploads/2024/01/97659fc0c4dac781.13250590-1024x803.jpeg\" alt=\"Black dog napping in the morning sun with snowy mountains as a backdrop!\" class=\"wp-image-6387\" /></a><a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/97659fc0c4/\">photo</a> by <a href=\"https://wordpress.org/photos/author/bhuwanroka/\">Bhuwan Bdr. Rokaha</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.\n\n\n\n<a href=\"https://wordpress.org/photos/photo/894659fd7e/\"><img width=\"683\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/2024/01/894659fd7e22ee227.42435147-683x1024.jpg\" alt=\"Beautiful yellow blossom\" class=\"wp-image-6388\" /></a><a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/894659fd7e/\">photo</a> by <a href=\"https://wordpress.org/photos/author/sharankrishna/\">Sharankrishna VP</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.\n\n\n\n\n<p>Be sure to check out the <a href=\"https://wordpress.org/photos/\">hundreds of other great photos</a>!</p>\n</div></div>\n\n</div></div>\n\n\n<p></p>\n\n\n\n<p>The header photo for this post is a <a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/90465a09dc/\">photo</a> by <a href=\"https://wordpress.org/photos/author/bhuwanroka/\">Bhuwan Bdr. Rokaha</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.</p>\n\n\n\n\n\n\n<p>That&#8217;s it for this week! If you&#8217;d like to get this post in your email every week, <a href=\"https://heropressnetwork.com/newsletter\">make sure you sign up</a>!</p>\n\n<p>The post <a href=\"https://heropress.com/foundational-pillars-from-tokyo/\">Foundational Pillars From Tokyo</a> appeared first on <a href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 12 Jan 2024 16:39:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Matt: Forty!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=110348\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://ma.tt/2024/01/forty/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5122:\"<p>Birthdays are so great because they&#8217;re about generosity.</p>\n\n\n\n<p>The act of giving, helping, is so generative.</p>\n\n\n\n<p>It&#8217;s what we can all do for ourselves and each other.</p>\n\n\n\n<p>But accepting is really hard, too! Gosh! Let it in.</p>\n\n\n\n<p>Sometimes we don&#8217;t let the gifts in.</p>\n\n\n\n<p>Approaching forty has felt impossibly light and heavy at the same time for me.</p>\n\n\n\n<p>It&#8217;s so cool to be typing this into something <strong>we made together</strong>. I want you to <em>really</em> think about that. Ponder the enormity of all that came before that allowed you to be here today, and I want you to get a little bit excited, in that sacred hidden part of your heart that yearns for more.</p>\n\n\n\n<p>Let&#8217;s keep doing that. And let&#8217;s make it better and share it so everyone can enjoy it. We make the world.</p>\n\n\n\n<p>I&#8217;ve been enjoying <a href=\"https://ma.tt/2024/01/birthday-gift/\">so much all the posts coming in for the birthday gift</a>. I&#8217;m reading them as fast as I can.</p>\n\n\n\n<p>Specifically, my failure mode is I share too much. I&#8217;m too generous. I like to err on the side of open. <em>Here&#8217;s some amazing code I wrote that you have a legal license to use however you like</em>. If you ask those closest to me how I mess up, it&#8217;s that I over-extend myself and try to do too much.</p>\n\n\n\n<p>I&#8217;ve never shared this publicly, but when the Bay Lights wasn&#8217;t going to make it the first time, I mortgaged my apartment and used that money to get it over the line. My personal finances were messy for years after that. I think a lot about being <a href=\"https://www.thefouragreements.com/the-first-agreement-be-impeccable-with-your-word/\">impeccable with my word</a>. </p>\n\n\n\n<p>I want people <a href=\"https://crowdfundr.com/TheBayLights360\">to give the smallest $10 donation to the Bay Lights</a> and encourage others to do the same so that we can all share in feeling that together, we can build things. And every time you see the light or bridge or think of San Francisco, you&#8217;ll think of that sacred hidden part of your heart that yearns for more, wants to leave everything better than you found it.</p>\n\n\n\n<p>Add some light.</p>\n\n\n\n<p>Let the gift in.</p>\n\n\n\n<p>This is the part where the sounds come in and you hear <em>it&#8217;s the remix</em>.</p>\n\n\n\n<p>I find myself returning, again and again, to the <a href=\"https://automattic.com/creed/\">Automattic Creed</a>, especially the first line:</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>I will never stop learning. I won’t just work on things that are assigned to me. I know there’s no such thing as a status quo. I will build our business sustainably through passionate and loyal customers. I will never pass up an opportunity to help out a colleague, and I’ll remember the days before I knew everything. I am more motivated by impact than money, and I know that Open Source is one of the most powerful ideas of our generation. I will communicate as much as possible, because it’s the oxygen of a distributed company. I am in a marathon, not a sprint, and no matter how far away the goal is, the only way to get there is by putting one foot in front of another every day. Given time, there is no problem that’s&nbsp;insurmountable.</p>\n</blockquote>\n\n\n\n<p>I&#8217;m having the most amazing day reading everything that people are sharing. I want to re-share the quote I shared on <a href=\"https://tim.blog/2023/12/29/matt-mullenweg-2/\">Tim&#8217;s podcast</a> from Will Durant: </p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>Health lies in action, and so it graces youth. To be busy is the secret of grace, and half the secret of content. Let us ask the gods not for possessions, but for things to do; happiness is in making things rather than in consuming them.</p>\n</blockquote>\n\n\n\n<p>All birthday posts: <a href=\"https://ma.tt/2003/01/bday/\">19</a>, <a href=\"https://ma.tt/2004/01/so-im-20/\">20</a>, <a href=\"https://ma.tt/2005/01/hot-barely-legal-matt/\">21</a>, <a href=\"https://ma.tt/2006/01/matt-22/\">22</a>, <a href=\"https://ma.tt/2007/01/twenty-three/\">23</a>, <a href=\"https://ma.tt/2008/01/twenty-four/\">24</a>, <a href=\"https://ma.tt/2009/01/twenty-five/\">25</a>, <a href=\"https://ma.tt/2010/01/twenty-six/\">26</a>, <a href=\"https://ma.tt/2011/01/twenty-seven/\">27</a>, <a href=\"https://ma.tt/2012/01/twenty-eight/\">28</a>, <a href=\"https://ma.tt/2013/01/twenty-nine/\">29</a>, <a href=\"https://ma.tt/2014/01/matt-3-0/\">30</a>, <a href=\"https://ma.tt/2015/01/thirty-one/\">31</a>, <a href=\"https://ma.tt/2016/01/thirty-two/\">32</a>, <a href=\"https://ma.tt/2017/01/thirty-three/\">33</a>, <a href=\"https://ma.tt/2018/01/thirty-four/\">34</a>, <a href=\"https://ma.tt/2019/01/thirty-five/\">35</a>, <a href=\"https://ma.tt/2020/01/thirty-six/\">36</a>, <a href=\"https://ma.tt/2021/01/thirty-seven/\">37</a>, <a href=\"https://ma.tt/2022/01/thirty-eight/\">38</a>, <a href=\"https://ma.tt/2023/01/thirty-nine/\">39</a>, <a href=\"https://ma.tt/2024/01/forty/\">40</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 11 Jan 2024 21:57:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"Do The Woo Community: Share Your Do the Woo Experience with a Guest Post on the BobWP Blog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=78794\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://dothewoo.io/share-your-do-the-woo-experience-with-a-guest-post-on-the-bobwp-blog/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:438:\"<p>If you have been a past sponsor, guest or guest host on our shows, consider a follow-up guest blog post on BobWP.com blog.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/share-your-do-the-woo-experience-with-a-guest-post-on-the-bobwp-blog/\">Share Your Do the Woo Experience with a Guest Post on the BobWP Blog</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 11 Jan 2024 10:28:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"Akismet: The Top Six CAPTCHA Alternatives That Won’t Frustrate Users\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://akismet.com/?p=283673\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://akismet.com/blog/the-top-six-captcha-alternatives-that-wont-frustrate-users/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:16458:\"<p>You know the drill. You’re super excited about a new purchase, commenting on a thrilling discussion in a forum, or providing feedback to an organization. You spend your time completing forms, writing thoughtful comments, or customizing your order only to find yourself trying to “check all the boxes with a stoplight in them” before actually submitting your&nbsp;information.</p>\n\n<p>Everyone hates CAPTCHA puzzles, yet businesses continue to use them to filter out spam. Today, we’re going to explore the six best alternatives to CAPTCHA, all of which can protect you from spam activities without frustrating your prospects and customers. Finally, we’ll show you how <a href=\"https://akismet.com/features/\">Akismet</a> uses machine learning to get progressively smarter about permanent spam&nbsp;removal.</p>\n\n\n<span id=\"more-283673\"></span>\n\n\n<h2 class=\"wp-block-heading\">The downsides of CAPTCHA and why alternatives are&nbsp;needed</h2>\n\n<p>For years, users have been patient with CAPTCHA, which was one of the first solutions that helped pave the way to spam&#8209;free websites. It stands for “Completely Automated Public Turing test to tell Computers and Humans Apart.” But like all solutions, there’s always room for improvement, and in today’s day and age, we need to find a better way to fight&nbsp;spam.</p>\n\n<p>First, CAPTCHA puzzles are problematic for those with visual impairments, requiring not only the ability to see the CAPTCHA challenge but often to decipher extremely nuanced details within the images. Tests that require the user to type a string of characters can be difficult for dyslexic individuals, and some may be unfamiliar with cultural icons or graphics in visual&nbsp;ones.</p>\n\n\n<p>Second, with so many technologies focused on enhancing user experience, frustrations like the inability to solve a CAPTCHA puzzle will stand out more, negatively affecting your conversion and engagement rates. Typically, CAPTCHA puzzles can take ten seconds or more to solve and interrupt your user at a critical point in their engagement journey — right before they check out, submit a comment, or request more information.&nbsp;</p>\n\n\n\n<p>One <a href=\"https://moz.com/blog/captchas-affect-on-conversion-rates\" target=\"_blank\" rel=\"noreferrer noopener\">study by SEO software company, Moz</a>, found that many users abandon forms when they encounter a CAPTCHA —&nbsp;resulting in an overall conversion rate drop of three percent. Another <a href=\"https://web.stanford.edu/~jurafsky/burszstein_2010_captcha.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">study by Stanford</a> found that only 71 percent of users even attempt to solve a CAPTCHA before abandoning the page altogether.</p>\n\n\n\n<p>If that’s not enough, a CAPTCHA may incorrectly identify a real human being as a bot, blocking further interaction with a site, while allowing more sophisticated, advanced bots through.&nbsp;</p>\n\n\n<p>Researchers at the University of California in Irvine recently conducted <a href=\"https://arxiv.org/abs/2307.12108\" target=\"_blank\" rel=\"noreferrer noopener\">a study testing both humans and bots</a> on popular CAPTCHA puzzles. The study found that bots solved distorted&#8209;text CAPTCHA tests almost perfectly in less than a second, while human beings had an accuracy rate of between 50 percent and 84 percent, spending up to 15 seconds per&nbsp;puzzle.</p>\n\n<p>Finally, it takes some significant computing power for CAPTCHAs to work properly, slowing down load times for web pages and adding to user&nbsp;frustration.</p>\n\n<p>Unfortunately, efforts to improve CAPTCHA puzzles are still lacking. Audio versions were supposed to be a solid solution, but <a href=\"https://ieeexplore.ieee.org/document/5504799\" target=\"_blank\" rel=\"noreferrer noopener\">analysis</a> shows that they’re more time intensive and significantly more difficult for certain users depending on their native language. <a href=\"https://web.stanford.edu/~jurafsky/burszstein_2010_captcha.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">Another study</a> noted a 50 percent failure rate with audio&nbsp;options.</p>\n\n\n<p>Forcing people to complete any kind of test is simply not the best option if you want to maximize engagement and conversions.&nbsp;</p>\n\n\n<h2 class=\"wp-block-heading\">What to look for in bot and spam&nbsp;protection</h2>\n\n<p>Before jumping into the six alternatives to CAPTCHA puzzles, here are some key things you’ll want to look for when choosing your bot&#8209;detecting&nbsp;solution.</p>\n\n<p>First, you’ll want to be sure that your solution can successfully block bots and spam while allowing prospects and customers easy access to your site and offerings. Unfortunately, a static software solution won’t work, as bad actors are continuously trying to up their game with more sophisticated, human&#8209;like bots all the time. Be sure your selected alternative can stay ahead of the bot&nbsp;creators.</p>\n\n<p>Second, be sure your alternative is either much easier to complete, or, better yet, invisible to your prospects, customers, and visitors. Your goal is to reduce or eliminate friction to create a more positive overall user&nbsp;experience.</p>\n\n\n<p>Along the same lines, look for a cloud-based solution so that your page load times are unaffected by the bot-catching activities.&nbsp;</p>\n\n\n\n<p>Finally, you must ensure that your solution complies with global and local government data privacy rules and regulations. Remember that CAPTCHA alternatives cannot protect your site alone; instead, they must be one component of an <a href=\"https://jetpack.com/features/security/\" target=\"_blank\" rel=\"noreferrer noopener\">overall security program</a> to protect your site from malicious activity and threats.&nbsp;</p>\n\n\n<h2 class=\"wp-block-heading\">What are the best alternatives to&nbsp;CAPTCHA?</h2>\n\n<p>Fortunately, several alternatives to CAPTCHA are available on the market today, working to block spam effectively, without negatively affecting your user experience. Here are the top six to&nbsp;consider:</p>\n\n\n<img width=\"1600\" height=\"733\" src=\"https://akismet455732288.files.wordpress.com/2024/01/image.png\" alt=\"\" class=\"wp-image-283675\" />\n\n\n\n<h3 class=\"wp-block-heading\">1. <a href=\"https://akismet.com/\">Akismet</a></h3>\n\n\n<p>Founded in 2005, Akismet has been on a mission to rid the world of spam for nearly two decades. Its solution is different from CAPTCHA, primarily because it works completely in the background of a website and does not rely on user input to identify bot or spam attacks. As a result, it protects sites from unwanted bot activity without relying on prospects, customers, or visitors to prove they’re&nbsp;human.</p>\n\n<p>More than 100 million <a href=\"https://akismet.com/blog/convertkit-customerstory/\">customer websites</a> rely on Akismet, which has successfully removed more than 500 billion pieces of online spam from the web. Used by both WordPress sites and others, Akismet has generated one of the largest databases of spam activity in the&nbsp;world.</p>\n\n<p>In addition, the solution relies on advanced machine learning technology to continuously improve, staying ahead of the bad actors who are always looking for new ways to break through site&nbsp;protections.</p>\n\n<p>Self&#8209;hosted spam&#8209;fighting solutions can negatively affect the performance of the site itself, slowing down page load speeds. Akismet is a cloud&#8209;based solution, removing the operating activity from your site while delivering the protection you&nbsp;desire.</p>\n\n<h3 class=\"wp-block-heading\">2. A&nbsp;honeypot</h3>\n\n<p>A honeypot anti&#8209;spam trap is designed to trick harmful bots and spam generation programs into identifying themselves as spam. Like a real honeypot that attracts various people, animals, and insects, a honeypot anti&#8209;spam trap lures bots and spam programs with something that’s not visible to human&nbsp;beings.</p>\n\n<p>One of the most common honeypot anti&#8209;spam traps is to incorporate a field within the code that is not required or even seen by a human completing the real contact, order, or comment form. A bot, however, will scan that field and complete it, revealing its identity as a robot&nbsp;spammer.</p>\n\n<p>The honeypot then filters out and deletes that submission. While this method of spam detection can be effective for some basic bots, the honeypot anti&#8209;spam trap can be circumvented by more sophisticated spam&nbsp;efforts.</p>\n\n<h3 class=\"wp-block-heading\">3. Time&#8209;based form&nbsp;submissions</h3>\n\n<p>Another CAPTCHA alternative is time&#8209;based form submissions. The idea is that humans will take a certain amount of time to complete a form, submit an order, or write a comment, while bots typically submit spam responses much&nbsp;faster.</p>\n\n<p>Although time&#8209;based form submissions can work in theory to weed out the most basic bots, bad actors who are set on spam attacks can easily program a bot to slow down its activity. So companies that use this method are hoping that spammers targeting their site will be too unsophisticated to slow down their bot submissions and will just move on to other targets. This is, frankly, a fairly weak form of&nbsp;protection.</p>\n\n\n<img width=\"1600\" height=\"744\" src=\"https://akismet455732288.files.wordpress.com/2024/01/image-1.png\" alt=\"Google reCAPTCHA landing page\" class=\"wp-image-283677\" />\n\n\n<h3 class=\"wp-block-heading\">4. reCAPTCHA&nbsp;v3</h3>\n\n<p>reCAPTCHA v3 is a more advanced bot detection solution, helping site owners identify spam activity on their website and customize the level of protection to suit their risk&nbsp;tolerance.</p>\n\n\n<p>Like the other CAPTCHA alternatives, version three doesn’t rely on user interaction to make the bot or spam determination, but works in the background of a website. It uses adaptive risk analysis to alert site owners of suspicious behaviors and should be placed on multiple pages so that patterns of abusive activities are more accurate.&nbsp;</p>\n\n\n<p>While this sounds pretty lovely, there are a fair number of downsides to using reCAPTCHA v3. First, though it allows for more customized control by site owners, it also requires advanced setup and integration with Google’s API, which could be difficult for the average site&nbsp;owner.</p>\n\n<p>There’s some <a href=\"https://www.fastcompany.com/90369697/googles-new-recaptcha-has-a-dark-side\" target=\"_blank\" rel=\"noreferrer noopener\">pushback around privacy</a>, as it provides Google with <em>a lot</em> of data, and it can also prevent the functioning of certain positive bots, like SEO&nbsp;crawlers.</p>\n\n\n<p>And while it’s good at detecting spammers, it’s known to falsely label real user interactions as spam without providing recourse for these individuals.&nbsp;</p>\n\n\n<h3 class=\"wp-block-heading\">5. Reimagined CAPTCHA&nbsp;puzzles</h3>\n\n<p>With reducing friction is the number one reason businesses want to find a CAPTCHA alternative, there have been developments in simplifying the puzzles themselves. For example, instead of presenting blurry pictures and asking users to identify some random item in each of them, organizations have added a field at the end of their form asking for the solution to a simple math&nbsp;problem.</p>\n\n<p>Similar solutions require checking a box to indicate that visitors are human, using a slider bar before completing the submission, or playing a short drag&#8209;and&#8209;drop game to&nbsp;continue.</p>\n\n\n<p>All of these function very much like popular CAPTCHA puzzles, but may be less frustrating for the user. Unfortunately, more sophisticated bots may be able to find ways to complete these tasks as easily or better than human beings. And any barrier, even if it’s quick to get through, will deter some positive activity.&nbsp;</p>\n\n\n<h3 class=\"wp-block-heading\">6. General web security&nbsp;protections</h3>\n\n<p>If you run a site, you already know the importance of site security and probably have some general protections like <a href=\"https://jetpack.com/features/security/\" target=\"_blank\" rel=\"noreferrer noopener\">firewalls</a>, <a href=\"https://jetpack.com/features/security/secure-authentication/\" target=\"_blank\" rel=\"noreferrer noopener\">multifactor authentication</a>, and <a href=\"https://jetpack.com/upgrade/scan/\" target=\"_blank\" rel=\"noreferrer noopener\">malware detection</a> in place.&nbsp;</p>\n\n\n<p>While these can protect your site from a wide variety of cybersecurity threats and may prevent some spammy behavior in the process, they aren’t really designed to specifically address spam.&nbsp;</p>\n\n\n<p>It’s important for every website to find a solution for this specific problem to keep your comment sections, form submissions, and order process free from spam and bot&nbsp;activity.</p>\n\n<h2 class=\"wp-block-heading\">Why Akismet is the best CAPTCHA&nbsp;alternative</h2>\n\n<p>Whether you’re a WordPress user or rely on another website platform, Akismet is the best alternative to CAPTCHA. First and foremost, its ability to work completely behind the scenes means that your website visitors are released from the task of solving time&#8209;consuming, frustrating puzzles before completing an order, leaving a comment, or filling out a&nbsp;form.</p>\n\n<p>This fact alone means that you’ll improve your user experience, reduce friction in engaging with your organization, and increase conversions. All of those benefits ultimately lead to higher profits and long&#8209;term&nbsp;success.</p>\n\n<p>In addition, because Akismet has been on a mission to remove spam from the web for nearly 20 years, it has amassed a significant database of spam information and taken advantage of machine learning technology to stay ahead of spam creators. This experience and massive database means that Akismet is incredibly effective at identifying spam and is continuously improving its&nbsp;performance.</p>\n\n<p>With 99.9% accuracy, though, it’s already at the top of the&nbsp;game.</p>\n\n<p>Finally, Akismet doesn’t negatively affect the performance of your website because it operates in the cloud. This means that page load times don’t decrease, even as Akismet is busy protecting your organization from bot attacks and&nbsp;spam.</p>\n\n<p>To learn more about how <a href=\"https://akismet.com/enterprise/\">Akismet can protect your business</a>, reach out&nbsp;today.</p>\n\n<h2 class=\"wp-block-heading\">Frequently asked&nbsp;questions</h2>\n\n<h3 class=\"wp-block-heading\">What is&nbsp;CAPTCHA?</h3>\n\n<p>A CAPTCHA is a computer&#8209;generated test used to differentiate humans from bots. It became a popular way to block spam attacks automatically in the early 2000s. CAPTCHA tests may include checking a box, typing a series of characters, or solving a visual puzzle before comments, forms, or orders are&nbsp;submitted.</p>\n\n<h3 class=\"wp-block-heading\">Why is there a need to find alternatives to&nbsp;CAPTCHA?</h3>\n\n<p>CAPTCHA tasks can be extremely frustrating to users, especially when they’re difficult to solve or incorrectly identify a human as a bot. They create a poor user experience, reduce conversions, and can leave a negative brand impression. They also limit engagement with visually impaired&nbsp;visitors.</p>\n\n<h3 class=\"wp-block-heading\">Is it possible to stop spam without&nbsp;CAPTCHA?</h3>\n\n<p>Yes, fortunately, there are alternatives to fight spam effectively without using CAPTCHA puzzles. The most effective is <a href=\"https://akismet.com/pricing/\">Akismet</a>, which not only successfully removes and blocks spam from websites, but continuously improves its performance through machine&nbsp;learning.</p>\n\n<h3 class=\"wp-block-heading\">What is&nbsp;Akismet?</h3>\n\n<p>Akismet is a cloud&#8209;based, spam&#8209;fighting solution that works completely in the background to rid your site of malicious activity. It requires no interaction from your users, which means no added friction in your user experience. Akismet has successfully removed more than 500 billion pieces of spam from the&nbsp;web.</p>\n\n<h3 class=\"wp-block-heading\">Why is Akismet the best alternative to&nbsp;CAPTCHA?</h3>\n\n<p>Akismet is the best alternative to CAPTCHA because it successfully blocks spam by working behind the scenes, freeing your visitors from frustrating puzzles. With nearly two decades of experience, Akismet has one of the largest spam databases available and continues to improve its detection capabilities through machine learning&nbsp;technology.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 10 Jan 2024 15:16:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Jen Swisher\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"WPTavern: #105 – Pascal Birchler on Revolutionizing Image and Video Processing Within WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=152160\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"https://wptavern.com/podcast/105-pascal-birchler-on-revolutionizing-image-and-video-processing-within-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:45214:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, new ways to interact with your media within WordPress.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to WPTavern.com forward slash feed forward slash podcast, and you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you and hopefully get you, or your idea, featured on the show. Head to WPTavern.com forward slash contact forward slash jukebox, and use the form there.</p>\n\n\n\n<p>So on the podcast today, we have Pascal Birchler. Pascal is a longstanding WordPress community member, and Core committer, with a focus on internationalization, WP-CLI, and performance.</p>\n\n\n\n<p>He&#8217;s been working on a project for the past six months to enhance the media capabilities of the WordPress block editor. His work includes client side image optimization, image compression, video enhancements, and speech to text features such as subtitle generation.</p>\n\n\n\n<p>It&#8217;s unlike anything that I&#8217;ve ever seen, you upload media into the block editor and it&#8217;s manipulated right there inside the editor, by the browser, not by some remote server.</p>\n\n\n\n<p>This is all achieved by harnessing the power of WebAssembly, and we discover what Pascal has managed to achieve thus far, and how he thinks that there&#8217;s going to be so much more to come.</p>\n\n\n\n<p>We talk about how you can change images from legacy formats, like JPEG and GIF, into other, more modern formats, such as WebP and AVIF. Pascal explains how this is actually achieved, and why the new format so desirable. It&#8217;s all about reducing file sizes, server resource consumption, and the speed boost your site will gain as a result.</p>\n\n\n\n<p>We also get into the conversion of animated GIFs into videos, and creating videos with transcripts on the fly. And remember, this is all done in the block editor, with the browser itself as the workhorse.</p>\n\n\n\n<p>Pascal seems to be onto something here, and it&#8217;s really compelling listening to him argue that something like his plugin might be worthy of inclusion into WordPress Core at some point.</p>\n\n\n\n<p>He explained some other projects, which he&#8217;s been working on inspired by the high volume of feedback he received after releasing his plugin.</p>\n\n\n\n<p>If you&#8217;re interested in pushing the boundaries of user experience, performance optimization, and compliance with evolving web standards this episode is for you.</p>\n\n\n\n<p>If you want to find out more, you can find all of the links in the show notes by heading to WPTavern.com forward slash podcast, where you&#8217;ll find all the other episodes as well. And so without further delay, I bring you Pascal Birchler.</p>\n\n\n\n<p>I am joined on the podcast today by Pascal Birchler. Hello, Pascal.</p>\n\n\n\n<p>[00:03:42] <strong>Pascal Birchler:</strong> Hello. Hi there.</p>\n\n\n\n<p>[00:03:43] <strong>Nathan Wrigley:</strong> Very, very nice to have you with us. We&#8217;re going to talk today, well, I think it&#8217;s broadly, we&#8217;re going to be talking about images. But there&#8217;s an awful lot of different technologies that Pascal has been working on over the, well, I don&#8217;t know how long. But I&#8217;ve only recently caught sight of the projects that you&#8217;ve been working on.</p>\n\n\n\n<p>Pascal, just before we begin that, would you just tell us a little bit about yourself? Perhaps what your day job is, what your relationship is with WordPress, and so on. Just a little bio time really.</p>\n\n\n\n<p>[00:04:10] <strong>Pascal Birchler:</strong> Sure, yeah. So my name is Pascal, and I&#8217;ve been a WordPress community member for, I don&#8217;t know, 15 years now or so. So I&#8217;ve been doing a lot of contributions around internationalisation, so like anything multilingual. But recently also performance, and day-to-day, that&#8217;s really what I&#8217;m focusing on.</p>\n\n\n\n<p>So I started as a WordPress contributor. Then I joined Google, as part of a team that is trying to make the web faster, that includes making WordPress faster.</p>\n\n\n\n<p>[00:04:36] <strong>Nathan Wrigley:</strong> Yeah, the performance team have been doing great work over the last, well, I&#8217;m going to say about 18 months it feels like they&#8217;ve been in existence. But WordPress itself has been made significantly quicker, over the various iterations of the project recently.</p>\n\n\n\n<p>But I know that the browsers themselves have become better at doing an awful lot of things. And so I think what we&#8217;re going to talk about today will probably involve conversations around what the browsers can handle, and things like that.</p>\n\n\n\n<p>But it&#8217;s very rare, Pascal, that I watch something online to do with WordPress, or technology, and I am actually having to lift my jaw away from the floor. But a little video that Pascal posted onto Twitter, not that long ago, maybe 10 days ago or something like that, really did make my jaw hit the floor. Because you were showing things that you&#8217;ve been working on that I had never seen before.</p>\n\n\n\n<p>Not just that, I had no intuition that it was even possible. It&#8217;s going to make your WordPress life much better in the future, let&#8217;s hope.</p>\n\n\n\n<p>Do you want to tell us a little bit about the project that you&#8217;ve been working on? And then we&#8217;ll get into the weeds of all of the different things that it can do, and yeah, just tell us how long you&#8217;ve been working on it, and what it really does.</p>\n\n\n\n<p>[00:05:42] <strong>Pascal Birchler:</strong> Sure. Absolutely. First of all, that&#8217;s exactly the reaction that I hoped to get from people, as I&#8217;ve been working on this project, or these media experiments, how I would like to call them, for maybe half a year or so. Like I occasionally started working on it and didn&#8217;t stop, and start again.</p>\n\n\n\n<p>It&#8217;s basically a collection of things that enhance the media capabilities of WordPress, or specifically the block editor. Most of the things are around like client side image optimisation, image compression. But also anything related to videos or speech to text, like subtitle generation.</p>\n\n\n\n<p>[00:06:18] <strong>Nathan Wrigley:</strong> So you just swept it to one side, really, how impressive it is. But the key component there, that was so amazing to me, was the fact that it&#8217;s all done client side. So perhaps, dear listener, the best thing to do would be to pause this episode, go and search for it over on WP Tavern, and watch from the links, the two little Twitter videos that Pascal put together, and you&#8217;ll be in a much better position.</p>\n\n\n\n<p>But what you&#8217;re going to see is truly remarkable. So it&#8217;s block editor based, so you&#8217;re in the Gutenberg editor. I don&#8217;t know if it&#8217;ll work in any other scenario of WordPress, with page builders or what have you. But that&#8217;s the paradigm that we&#8217;re talking about.</p>\n\n\n\n<p>And Pascal is sitting there, and he decides that he wants to have an image which is currently a jpeg, and he doesn&#8217;t want it to be a jpeg. He wants to reduce the size of it, so that it consumes less resources on the server, but also can be served up to the end user. He wants to pass Core Web Vitals, because he&#8217;s a good Googler.</p>\n\n\n\n<p>And so he throws it into Gutenberg, and Gutenberg seemingly converts it. Now I&#8217;m obviously doing it injustice. Please tell me what&#8217;s happening, because I haven&#8217;t the faintest idea how you&#8217;ve achieved this. So you put an image directly onto the Gutenberg canvas, and it&#8217;s no longer a jpeg. It&#8217;s been converted in some way, in the background, disconnected from the internet. This could be on a computer, completely disconnected from the internet. So it&#8217;s happening in the browser. How is it happening?</p>\n\n\n\n<p>[00:07:40] <strong>Pascal Birchler:</strong> So first of all, browsers are extremely capable of doing image compression, or even image conversion. But they&#8217;re also a little bit limited in like to what extent they can do that. So to overcome those limits, I&#8217;m using a technology called WebAssembly. Which allows basically like regular software that you would otherwise install on a computer, and bring that to the browser.</p>\n\n\n\n<p>And in this case, this is an image processing library that I&#8217;m using. For example, I&#8217;m using the VIPS, or libvips image library. And using WebAssembly I can do all sorts of image rotation, thumbnail generation, directly in the browser. And then from there I will upload it to WordPress.</p>\n\n\n\n<p>[00:08:19] <strong>Nathan Wrigley:</strong> So is this, therefore a plugin, that you have pre-installed into the version of WordPress that you were using for the demo there. So this is a plugin that you&#8217;ve built, you&#8217;ve installed it, and I don&#8217;t if there are any settings in there. But even if you just activate it, as soon as you begin throwing images, there is the option to convert them to different formats, right out of the box. You don&#8217;t have to do anything else.</p>\n\n\n\n<p>[00:08:42] <strong>Pascal Birchler:</strong> Correct. It&#8217;s a plugin that I started. It works without any additional configuration, but of course, if you prefer not changing the image format, but just want to compress images. Or if you prefer, let&#8217;s say WebP or AVIF over jpeg, you can say so as well. And there are a few more settings that I added, but mostly for like testing and like, trying different things out.</p>\n\n\n\n<p>[00:09:04] <strong>Nathan Wrigley:</strong> Yeah. I mean, it&#8217;s a first run at this project, so maybe we&#8217;ll see some things in the future. We&#8217;re recording this at the end of 2023, so it&#8217;s still really hot off the press.</p>\n\n\n\n<p>But just to digress a little bit, and move away from the technology. Why have you done this? What is the purpose of it? Now I&#8217;m guessing that there&#8217;s maybe some sort of environmental impact here. There&#8217;s the cost of storage, and all of those kind of things. What&#8217;s the point? Why would you even want to convert images from one format to another? After all, it looks the same, broadly, once you&#8217;re viewing it. What&#8217;s the purpose?</p>\n\n\n\n<p>[00:09:36] <strong>Pascal Birchler:</strong> Doing this has many advantages. So one is that if you want to do this, but you&#8217;re limited in server resources, now this allows anyone to use this technology and compress their images. And compressing images, or using a different file format, as you say, has like good impact on file size. Which means less bandwidth used, has a nice side effect of like images loading faster on your website, which is great for passing all these Core Web Vitals.</p>\n\n\n\n<p>But it&#8217;s also a user experience benefit. Your visitors will see the images faster. And I think that&#8217;s the nice thing about this project, is that it has some performance aspects, but in the end it&#8217;s a lot about user experience.</p>\n\n\n\n<p>[00:10:18] <strong>Nathan Wrigley:</strong> So the modern versions of image formats, it may be that some of the listeners aren&#8217;t really familiar with those. I&#8217;m pretty sure that if you&#8217;ve been on the internet for any length of time, you&#8217;re familiar with jpegs, and pngs, and GIFs, or GIFs, however you wish to pronounce it. But you&#8217;re trying, well, in the video at least, you are converting them into an image format, which maybe people haven&#8217;t heard of before.</p>\n\n\n\n<p>It&#8217;s called AVIF, but also I think you mentioned WebP as well. I know it&#8217;s maybe not in your wheelhouse directly, but can you just give us an idea of what&#8217;s going on there? What kind of reduction could we have? Let&#8217;s say if we took a, I don&#8217;t know, a two megabyte jpeg and pushed it through to be an AVIF. Roughly speaking, and I know it&#8217;s dependent upon what is in the image, but broadly speaking, what kind of benefits can you get in terms of percentages that are cut away?</p>\n\n\n\n<p>[00:11:04] <strong>Pascal Birchler:</strong> Oh, that&#8217;s a great question. I think in my test video, I saw a reduction of like maybe 40% or so in file size.</p>\n\n\n\n<p>[00:11:11] <strong>Nathan Wrigley:</strong> Good grief. Right.</p>\n\n\n\n<p>[00:11:12] <strong>Pascal Birchler:</strong> And there was like no noticeable differences to the eye. But there are like quality settings that you can change. Depending on the level of quality that you like for your use case, you can get it even further down.</p>\n\n\n\n<p>[00:11:24] <strong>Nathan Wrigley:</strong> So really significant amounts of data. You know, if your website is image heavy, then doing this, and there&#8217;s no noticeable loss to the viewer. Perhaps there is some sort of degradation, if you were to expand it, and you were a professional photographer, who knows? But something in the region of a 40% decrease.</p>\n\n\n\n<p>Do you know if, at this point, so again we&#8217;re in December 2023. Is it possible for all browsers to be able to show these images back to us? So it&#8217;d be fabulous to be able to use AVIFs, but then obviously if a significant proportion of the internet out there can&#8217;t actually see them, because their browsers don&#8217;t support that, that would be troublesome. So do you have any inclination as to what the compatibility is with browsers, displaying WebPs and AVIFs?</p>\n\n\n\n<p>[00:12:08] <strong>Pascal Birchler:</strong> I think last I checked, WebP is supported by all browsers. So that includes Chrome, Firefox, Safari, Edge, and so on. And AVIF is not currently supported by default in Edge. All the other browsers support it. And in Edge, it needs to be enabled with a flag.</p>\n\n\n\n<p>[00:12:25] <strong>Nathan Wrigley:</strong> Oh, so there is support, it just merely isn&#8217;t enabled. So if you&#8217;re an Edge user, you can make it available.</p>\n\n\n\n<p>So really there&#8217;s no reason not to do this if pretty much every browser is able to support this, why wouldn&#8217;t you do this? And I guess the beauty of your system that you&#8217;ve built, is that there&#8217;s no, there&#8217;s literally no thing to do. You just put the image onto the page, or the post, or whatever it may be, in the same way that you would always do, and it just happens on the fly.</p>\n\n\n\n<p>Is there a little bit of a wait there? So let&#8217;s say, again, my image of two megabytes, something like that, jpeg uploaded. Is this happening more or less instantly in a typical modern computer, or do I have to sit there and twiddle my thumbs for a little while, as I might have done in the past if I was using a server side technology to do this?</p>\n\n\n\n<p>[00:13:13] <strong>Pascal Birchler:</strong> It&#8217;s pretty much instantly, but only because you don&#8217;t see what&#8217;s going on in the background. So when you drop the image in the editor, you can already see it, you can already, you know, add some gradients in the block editor, or continue writing your post. And in the background, the image is compressed, and all the thumbnails are being generated, and finally uploaded to WordPress. But you can already continue editing.</p>\n\n\n\n<p>[00:13:37] <strong>Nathan Wrigley:</strong> Okay. So really you can just carry on with your day, keep editing as normal, and in the background this will happen.</p>\n\n\n\n<p>So what&#8217;s the flow in terms of where this is getting saved? So, again, we&#8217;ll use my example, I&#8217;m using a jpeg. Will the jpeg be saved in the media library, ultimately, as well? Or will just the converted image get kept? Because I know that a lot of the other server side solutions, some commercial solutions and what have you, which compress images, they have loads of options and many of them are, for example, keep the original. We&#8217;ll convert it for you, we&#8217;ll compress it for you, but we&#8217;ll also keep the original. And it may not be that that&#8217;s what your plugin does. So how does it handle the original? Where does it put that?</p>\n\n\n\n<p>[00:14:15] <strong>Pascal Birchler:</strong> Right now it keeps uploading the original to WordPress, in case you want to restore that or use that for, I don&#8217;t know, downloads or something. But this can be made optional, because everyone has different needs. For example, photographers prefer to have the full size images available, just in case, maybe for their clients. But this can be turned off if you prefer to save resources.</p>\n\n\n\n<p>[00:14:37] <strong>Nathan Wrigley:</strong> Okay. So that, I guess, brings me to the next question. What are the settings that you have at the moment? So, you&#8217;ve mentioned that you know, you can keep the original, or delete the original, or what have you. Are you able to specify, okay, every time I upload a jpeg, turn it into an AVIF, every time I upload a WebP, turn it into an AVIF? Are there different settings in the backend there that I can configure, so that it just meets my exact requirements?</p>\n\n\n\n<p>[00:14:58] <strong>Pascal Birchler:</strong> You pretty much nailed it. Right now the setting is limited, like you can choose your preferred format, and it uses that. But the next step is to provide a setting per file type, so that you can really specify what you want to be for every type of file that you upload.</p>\n\n\n\n<p>The settings are really fine grained in that regard. I hope them to be fine grained. There are also more settings, for example, for thumbnail generation. You can choose whether the thumbnail should be generated on the server, or in the browser as well, which is the default.</p>\n\n\n\n<p>And the third option is to have the client side thumbnail generation, but make it smarter. So for example, if you have a photo of a person somewhere, right now WordPress just crops like these 150 by 150 thumbnails from the center of the image. But with the smart option, it will focus on the person&#8217;s face to be in the center, just so much more useful.</p>\n\n\n\n<p>[00:15:50] <strong>Nathan Wrigley:</strong> Wait, it makes a decision about what to crop, based upon the content of the picture. So it&#8217;s intelligent enough to know that there&#8217;s an object over here which is of significance, crop around that. That&#8217;s great.</p>\n\n\n\n<p>How would that work for other things? This is going to go off in a strange direction. Let&#8217;s say I had a, I don&#8217;t know, a cat or something like that in the picture, but there was nothing else. There was just this singular cat, and it was top right. Is it able to intuit that there&#8217;s an object in this picture which needs focus?</p>\n\n\n\n<p>[00:16:16] <strong>Pascal Birchler:</strong> Yeah, so the image library that I&#8217;m using tries to detect the most prominent object in a photo. So there could be an animal, or something else. Of course it&#8217;s not perfect when it&#8217;s, I don&#8217;t know, a photo of like a group of people or something, but it&#8217;s better than nothing.</p>\n\n\n\n<p>[00:16:30] <strong>Nathan Wrigley:</strong> Yeah, it has to make a decision about which person is more important in that picture. But again, just to emphasise, if you&#8217;re listening to this, we&#8217;re not talking about this data leaving your computer, getting crunched on somebody else&#8217;s machine, and then being sent back. This is all happening inside the browser, right before your eyes, or not before your eyes. It&#8217;s really just happening, and the result comes out before your eyes.</p>\n\n\n\n<p>You may not know the answer to this, I hope that you do. But, why do browsers have all of this technology baked into them? What&#8217;s the reason for that? I mean, I could guess what some of the reasons would be, but I&#8217;m interested to know if you&#8217;ve got more concrete data on that. Why would a browser ship with all of these image conversion, formatting options, all the other things you&#8217;ve described?</p>\n\n\n\n<p>[00:17:14] <strong>Pascal Birchler:</strong> Well, as I said, the browser does have some image formatting or conversion options, but they&#8217;re limited. That&#8217;s why I&#8217;m able to use external libraries, through Web Assembly. And the reason that Web Assembly is a thing is it just, it makes the web so much more powerful. It allows things like Photoshop to run on the web, which previously wasn&#8217;t possible. I think for the web to still matter in years to come, browsers and websites and web technologies need to evolve, support use cases like that.</p>\n\n\n\n<p>[00:17:41] <strong>Nathan Wrigley:</strong> Yeah, I have this intuition, I could be wrong. But I have this intuition that in a decade from now, more and more of the things that I&#8217;m still holding out on my computer at home, will have gone over to the browser. And it feels like video and images are still in the domain of the desktop computer often, just because of, well, the amount of data that has to fly around for a start.</p>\n\n\n\n<p>But also, if you&#8217;ve got an hour long video and you&#8217;re trying to edit little bits, it does seem that online solutions don&#8217;t quite make the grade yet boy, it&#8217;s changing quickly. And if we stare into our crystal ball, a year into the future, two years, five years, I feel that a lot of this will have been taken over by online tools.</p>\n\n\n\n<p>So we talked about the fact that you can upload an image, but it goes a lot further than that, because you can take a bunch of images. Now I don&#8217;t know how much you&#8217;ve battle tested this, whether or not you&#8217;ve put in 500, 1,000, 10,000 images. But in the example you used, I think you put three images in, and it did the same thing.</p>\n\n\n\n<p>So if you were a photographer, or you had a post that was heavy with images, this can all be done. You don&#8217;t have to do one at a time, wait for it to happen. It&#8217;ll just put them all into a queue, I&#8217;m guessing, and tackle them one at a time.</p>\n\n\n\n<p>[00:18:43] <strong>Pascal Birchler:</strong> That&#8217;s exactly right. Yeah, I have this sort of queuing system that I built. It can do multiple images at a time, or only one. That depends on a lot of factors. For example, like how many CPU cores that you have on your machine.</p>\n\n\n\n<p>The good thing is that everything happens in the background in so-called Web Workers. And these are separate threads from the main website, which means even if you throw more than one image at it, it will be separate from the main thread, so you&#8217;re not blocked from writing any more content. I don&#8217;t have 10,000 images on my computer to test it with, but maybe I should.</p>\n\n\n\n<p>[00:19:15] <strong>Nathan Wrigley:</strong> But it will cue them, and so we&#8217;re expecting it to work in the normal way. But certainly for a normal amount of images, it&#8217;s going to handle it correctly. Let&#8217;s say though, that I did throw 100 images at it, which is going to consume a little bit of time. I&#8217;m imagining, you know, there would be some human noticeable amount of time for that to happen.</p>\n\n\n\n<p>And then I was to stray away from that post. Close it down, for example, or go to a different screen inside a WordPress. Does the browser continue that operation? What is the connection? How is it bound? Does the post need to be open for all of this to happen? And also, what about just failure? If something fails to happen, do we get a notification to say, whoops, it didn&#8217;t do what it was anticipating to do?</p>\n\n\n\n<p>[00:19:55] <strong>Pascal Birchler:</strong> So yes, you definitely need to stay in the editor while the upload is in progress. There will be a warning if you try to navigate away. Of course, if this were like a single page application, where you&#8217;re not actually like changing origins, going to another website that could continue to upload. But for the upload to finish, you need to stay in the editor.</p>\n\n\n\n<p>If an upload errors, there will be notifications of course. Thanks to this queuing system, it&#8217;s even possible to change your mind and cancel uploads, if you prefer. For example, if you notice, oh dang, I uploaded wrong image. You don&#8217;t have to wait for the upload to finish to fix that mistake, so you can just cancel it.</p>\n\n\n\n<p>[00:20:29] <strong>Nathan Wrigley:</strong> Yeah, that&#8217;s great. Now, it&#8217;s not just images though, it will handle a whole load of other things. And there&#8217;s a couple that you demonstrate. The first one is something which is, obviously something that irritates you a little bit. Animated GIFs or GIFs, however you wish to pronounce them. You&#8217;d rather that they were made into videos, and so it will do that as well.</p>\n\n\n\n<p>If you were to throw an animated GIF into it, it will recycle that as an actual image, with a play and stop button, so that you&#8217;ve got some agency about what&#8217;s actually happening on the screen there. Again, so that&#8217;s presumably just for GIFs. I can&#8217;t think of any other image format off the top of my head, which has that animation possibility. But that will create a video of the same dimensions or, what&#8217;s it doing there?</p>\n\n\n\n<p>[00:21:11] <strong>Pascal Birchler:</strong> So yeah, animated GIFs or GIFs are painful. WebP also supports animation, but it&#8217;s not that common. But for animated GIFs, they&#8217;re really bad for, not just performance, but also user experience, because you can&#8217;t stop them. They just autoplay, they&#8217;re super heavy in file size usually. And if you, for example, prefer reduced motion, which is like a setting in most operating systems and browsers. A GIF won&#8217;t stop. But a video can be stopped, but it can also be preloaded, can have a poster image. So it&#8217;s just way better from a user experience.</p>\n\n\n\n<p>And the plugin converts GIF or GIF to a video with the same size. Creates a poster image as well. So if the video is stopped, or still being loaded, you will see a preview image as well. You can have either the controls to play, pause, or it just loops and autoplays, like a GIF. You don&#8217;t see the difference.</p>\n\n\n\n<p>[00:21:59] <strong>Nathan Wrigley:</strong> It&#8217;s what we need. Agency over animated GIFs, that&#8217;s for sure. And it just all happens seamlessly. But again, another jaw off the floor moment was when I saw that you were creating video content inside the post editor. So, you know, imagine, dear listener, that you are in a post, you&#8217;ve clicked add new post, and there you are.</p>\n\n\n\n<p>Shoot video from the webcam, or I&#8217;m guessing any camera that might be attached to the machine. Shoot it, save it into the media library inside the post. As if that wasn&#8217;t enough, also transcribe it in real time. Now, I don&#8217;t know if that transcription gets burned onto the video, or if it&#8217;s just something that&#8217;s happening as you are watching it.</p>\n\n\n\n<p>But that&#8217;s truly remarkable as well. And it leads me to all sorts of thoughts about being able to, I don&#8217;t know, communicate with other people, with synchronous video, a bit like we have with Zoom, or something like that, inside of a post. I&#8217;m not entirely sure why you would wish to do that, but those kind of possibilities becoming available. How did you do that? How does that work?</p>\n\n\n\n<p>[00:23:05] <strong>Pascal Birchler:</strong> You bring something interesting up, because there&#8217;s like this collaboration feature being worked on in the block editor. So just imagine having a video call, and maybe saving that video afterwards, who knows?</p>\n\n\n\n<p>So for this particular feature I&#8217;m again, using the powers of Web Assembly to use the FFmpeg video library in the browser. So FFmpeg is a really powerful tool set. It can do video conversion, all sort of things. And I use that in a browser to basically record the video, or take the recorded video and convert it to like a MP4, whatever is a good format for you.</p>\n\n\n\n<p>And for the subtitles, I&#8217;m using a different solution, which is based on an open source machine learning models, that do transcription, like speech to text. And that generates a vtt captions file. Similar to srt, it&#8217;s a separate file, it&#8217;s not burned into the video. And you can use other tools to then edit the captions, or you could even build a caption editor directly in WordPress.</p>\n\n\n\n<p>[00:24:04] <strong>Nathan Wrigley:</strong> Most video solutions allow you to upload and combine the two, don&#8217;t they? So it&#8217;s got timestamping in, so it knows when a particular word is about to appear on the screen. And so it can handle all of that. But it creates that file on the fly. So it not only creates the video file, stores that into the media library, but if you have the option set for the vtt file, it will also save that. And presumably, because of the time that they were saved, there&#8217;s a very high probability they&#8217;ll end up right next to each other in the media library. So you could associate the two.</p>\n\n\n\n<p>That is truly impressive. I can only imagine what could be possible with that. Because all you are doing is showing that it can be done, and it can be saved right there. But yeah, I kind of feel that once that gets out into the wild, other developers will have intuitions as to what to do with that, aside from you, and may well wish to do something.</p>\n\n\n\n<p>But you&#8217;re right, you know, can you imagine a scenario where, I don&#8217;t know, a graphic designer wants to talk to another graphic designer about a particular post, or a particular page that they&#8217;re working on and, well, let&#8217;s just hop in, and actually work on it together whilst we&#8217;re in the page. We don&#8217;t need another third party solution. I don&#8217;t know, maybe that&#8217;s a bit extreme. But absolutely fascinating how you&#8217;ve managed to pull all of this off.</p>\n\n\n\n<p>You mentioned the libraries that you were using there to do the video transcoding. Again, is all of that bundled in with the plugin, or is any of this going out of our computer, out of our browser somewhere, and getting converted, and then being sent back? Or is it all happening on our machine?</p>\n\n\n\n<p>[00:25:27] <strong>Pascal Birchler:</strong> It&#8217;s all happening on your machine. I know it&#8217;s sometimes crazy to believe, but yeah.</p>\n\n\n\n<p>[00:25:32] <strong>Nathan Wrigley:</strong> I mean, really, truly crazy. One thing that you own that I don&#8217;t own is you have an iPhone, which it turns out also has an unusual, well not unusual because there&#8217;s a lot of iPhones out there. But it&#8217;s not a web friendly image format. I didn&#8217;t even know what it was called until you showed it on the screen, it&#8217;s HEIC or HEIF. And it&#8217;s simply for Apple devices.</p>\n\n\n\n<p>So I&#8217;m guessing if you&#8217;ve got a Mac or an iPhone, it will show it just fine. But if you&#8217;re trying to upload that to the media library, you&#8217;re going to have a problem. So conversion has to happen there. And you&#8217;ve got a nice, another nice little option there. If you throw that in, that will also get converted, again to your preferred one. So it could be, I don&#8217;t know, AVIF or WebP, whatever you&#8217;d like.</p>\n\n\n\n<p>[00:26:13] <strong>Pascal Birchler:</strong> Yeah. So it&#8217;s a super annoying format to use on the web. Right now, it will convert to WebP or AVIF, whatever you have set. The file format itself also supports like multiple frames, because on iPhone, you have this feature called live photos, where the photo is sort of like a video. So you could technically even convert this image to a video when you upload it. So you have this live photo effect also on the web.</p>\n\n\n\n<p>[00:26:36] <strong>Nathan Wrigley:</strong> But it&#8217;ll do all of that out of the box. So all of that is absolutely fascinating, and we&#8217;ll get to something else that you showed in a slightly different video in a moment. The purpose of this, obviously, you&#8217;re scratching your own itch, you&#8217;ve done something which will definitely be helpful in the future. It does strike me that a lot of this is definitely within the scope of being put into core.</p>\n\n\n\n<p>Now, I know that an awful lot of stuff comes through the news outlets each and every week about amazing WordPress products, and some of it clearly is really out of the scope of core. But do you have an intuition that some of this really could be baked into core, would be useful in core? Is that something you are going to be trying to push for in 2024?</p>\n\n\n\n<p>[00:27:19] <strong>Pascal Birchler:</strong> Well based on the reactions of people to the demos I&#8217;ve shared, there&#8217;s definitely interest. Seems to be useful for many people. Be that the HEIC conversion or the thumbnail generation. So I definitely see potential for this to be in core, and it&#8217;s something that I want to strive for in the next year. But it will be definitely limited in scope. Like, you won&#8217;t see fancy video recording or something in core, I would say. So I would want to start small, focus on like an M.V.P. solution, and bring that into core and then we can go from there.</p>\n\n\n\n<p>[00:27:51] <strong>Nathan Wrigley:</strong> Yeah. That&#8217;ll be an interesting thing to see. One last thing, just before we move on to your upload an image with your friend idea. Another thing which you do is, and this is curious because we had a chat about this before we clicked record. If you upload an image and that image is going to take a few moments, an opaque, hazy version of the image is shown. And it almost looks like you&#8217;re squinting your eye or something, you know, it&#8217;s gone a little bit blurred.</p>\n\n\n\n<p>But the technical side of how you&#8217;ve done that is really interesting, because I was anticipating it was just another image, but it&#8217;s not, there&#8217;s some really interesting work going in the background there, and gradients and CSS. Just explain what&#8217;s going on whilst we have the image load. You show us something, which kind of looks like a faded out version of the image. What&#8217;s happening?</p>\n\n\n\n<p>[00:28:33] <strong>Pascal Birchler:</strong> So the itch that I wanted to scratch there, is that the experience when you have to wait for images to load is really not great. Let&#8217;s say if you&#8217;re on a 3G connection on a train, or something. So what I wanted to do is have like a blurred version of the image showing. So as soon as you open the page you immediately see something. You know, oh, there&#8217;s an image that might be loaded here, and it looks interesting.</p>\n\n\n\n<p>And what I&#8217;m using for that is a technology, or an algorithm called BlurHash, which generates these blurry placeholders. And usually to display that placeholder on the website, you would need JavaScript. But I&#8217;m converting this blurriness to simple CSS gradients instead. So that when you load the page, you&#8217;re not seeing another image while the main image is loaded, it&#8217;s just all CSS gradients.</p>\n\n\n\n<p>[00:29:18] <strong>Nathan Wrigley:</strong> So no JavaScript in sight, it&#8217;s just CSS, which obviously has its benefits. So upon successful completion of that image, what are you doing with the CSS that you&#8217;ve created there? Where is that data going when it&#8217;s no longer needed? Do you just expunge it and get rid of it?</p>\n\n\n\n<p>[00:29:33] <strong>Pascal Birchler:</strong> Well, you will still need it for like the next page load, right? So it&#8217;s always there, it&#8217;s always in the database. And it&#8217;s super small, like even for a larger image. The amount of gradients is not that big, so it doesn&#8217;t really impact performance.</p>\n\n\n\n<p>[00:29:47] <strong>Nathan Wrigley:</strong> Yeah it&#8217;s a really nice experience, because it just gives you, well, you&#8217;ve all been there where an image hasn&#8217;t even begun to load, and you get all this cumulative layout shift where things are being pushed around, and buttons go further down and everything moves. It kind of gets rid of that, because right away you get this block, which is going to be the same size and shape as the image, which will eventually load.</p>\n\n\n\n<p>I think in most cases these days, certainly in the part of the world where I live, we&#8217;re really not faced with those problems too much these days. But as you said, if you&#8217;re in a place where there&#8217;s a slower network or a, let&#8217;s say a 3G network or something like that, then having that as an option is great. So yeah, fascinating solution to that problem, I really like that.</p>\n\n\n\n<p>Now, I think you probably got a little bit of interest, and I don&#8217;t know if the second Twitter video came along after the first one that I saw. So we&#8217;ve just discussed what I believe is probably the first one, and we&#8217;ll discuss the second one. And I&#8217;m hoping, Pascal, in the days and weeks to come, we&#8217;ve got Christmas in the way, I realise that. But in the days and weeks to come we&#8217;re going to see many more such videos.</p>\n\n\n\n<p>You&#8217;ve got this really interesting idea of being able to upload images into a post, with a link, or a QR code, which I guess is a link of a different kind. But you could send it to a friend, who could then upload an image into a post, without being logged into the WordPress website. Where did that need arise? What was the scenario that you were thinking, okay, I need people to upload images into my posts, which they don&#8217;t have access to edit, and so on? What&#8217;s going on there? It&#8217;s fascinating.</p>\n\n\n\n<p>[00:31:13] <strong>Pascal Birchler:</strong> I have to admit, I did not come up with this idea actually. So after I published the first demo on Twitter, John Blackburn, I actually opened an issue on GitHub and he was like, hey, you know, on apps like eBay or online banking apps, for example. There&#8217;s the option to upload your receipts or something from your phone. So why not make that possible in WordPress? And I was like, oh, that&#8217;s interesting. So I built it.</p>\n\n\n\n<p>It&#8217;s really cool because, I think the scenario is, you&#8217;re editing a blog post, you want to add this nice picture and you realise, oh, it&#8217;s on the phone. Maybe it&#8217;s on your friend&#8217;s phone, or like colleague&#8217;s phone. So you can scan the QR code, or send the link for that code to someone else. And then they&#8217;re able to upload the image to WordPress. And after that is done, and you&#8217;re still in the editor, so once they&#8217;re done uploading the image, you&#8217;ll immediately see the image in your editor, you can continue editing.</p>\n\n\n\n<p>[00:32:04] <strong>Nathan Wrigley:</strong> So you wouldn&#8217;t need to refresh that post and come back to it, it would just appear. So let&#8217;s say, for example, that I send you that link, and I&#8217;ve got my post, it&#8217;s half completed, but I just know that I need that image to finish it off. And I know that you, Pascal, have got your hands on it. I could send you the link. You click on the link, select the image in question, and there it is, right inside my post, immediately without a need for a refresh or anything.</p>\n\n\n\n<p>That&#8217;s so great. That&#8217;s just such a curious thing. But now I get the point, and I guess the idea of being able to send it to somebody else is quite interesting. But the idea, certainly for me, you are right, there&#8217;s a lot which is held on my phone, there&#8217;s a lot which is held on other computers. I have a detachable hard disc over there, and quite often the computer that it&#8217;s attached to is, you know, in no way connected to this one. So being able to send myself another link over there, that&#8217;s really curious.</p>\n\n\n\n<p>It feels to me, Pascal, as if you are just getting your feet wet here. You&#8217;ve just got yourself all excited about images and what you can do with them inside of WordPress. So that&#8217;s the next question. Do you have any intuition as to what&#8217;s coming next? What fun projects you might work on.</p>\n\n\n\n<p>[00:33:09] <strong>Pascal Birchler:</strong> Well, you know, just talking about this with you, gives me a lot of ideas. And sharing these demos with people also sparks ideas in them. And you mentioned that holidays are coming up, so maybe, I don&#8217;t know, over the holidays I&#8217;ll build something new. We&#8217;ll see.</p>\n\n\n\n<p>[00:33:22] <strong>Nathan Wrigley:</strong> Well, I would very much like to see the outcome of your endeavors. Yeah, I&#8217;ve definitely got a few ideas of what I would like. For example, being able to record a podcast directly inside the editor. I know that, obviously, video and audio are very similar, it may well already be possible with everything that you&#8217;ve done.</p>\n\n\n\n<p>But the ability to do things like that inside the post editor, and not have to save it elsewhere, would be kind of interesting. You know, what we&#8217;re doing right now, we&#8217;re using a third party SaaS app to record this. I can&#8217;t see any reason why all of this couldn&#8217;t potentially happen inside the block editor as well.</p>\n\n\n\n<p>Anyway, exciting times. And Pascal, I do thank you for piquing my curiosity. It really was quite a moment when I saw that video.</p>\n\n\n\n<p>If anybody wants to contact you, if anybody has been intrigued by what you&#8217;ve said, and they want to reach out, where are the best places? We know that you&#8217;re on Twitter, but tell us what your handle is, and where else we can find you.</p>\n\n\n\n<p>[00:34:10] <strong>Pascal Birchler:</strong> So my Twitter handle, or WordPress.org, everywhere else is swissspidy with three S&#8217;s in the middle. That&#8217;s the best place to reach me.</p>\n\n\n\n<p>[00:34:19] <strong>Nathan Wrigley:</strong> Alright. Well, thank you so much. And Pascal, I really appreciate you coming on the podcast and chatting to us today. Thank you so much.</p>\n\n\n\n<p>[00:34:25] <strong>Pascal Birchler:</strong> Thanks for having me.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://twitter.com/swissspidy/\">Pascal Birchler</a>.</p>\n\n\n\n<p>Pascal is a long-standing WordPress community member and Core committer, with a focus on internationalisation, WP-CLI, and performance.</p>\n\n\n\n<p>He’s been working on a project for the past six months to enhance the media capabilities of the WordPress block editor. His work includes client-side image optimisation, image compression, video enhancements, and speech-to-text features, such as subtitle generation. It’s unlike anything that I’ve ever seen. You upload media into the block editor, and it’s manipulated right there, inside the editor, by the browser, not by some remote server.</p>\n\n\n\n<p>This is all achieved by harnessing the power of WebAssembly, and we discover what Pascal has managed to achieve thus far, and how he thinks that there’s going to be so much more to come.</p>\n\n\n\n<p>We talk about how you can change images from legacy formats like jpg and gif, into other, more modern formats such as WebP and Avif. Pascal explains how this is actually achieved, and why the new formats are desirable. It’s all about reducing file sizes, server resource consumption, and the speed boost your site will gain as a result.</p>\n\n\n\n<p>We also get into the conversion of animated Gifs into videos, and creating videos with transcripts on-the-fly, and remember, this is all done in the block editor with the browser itself as the workhorse.</p>\n\n\n\n<p>Pascal seems to be onto something here, and it’s really compelling listening to him argue that something like his plugin might be worthy of inclusion into WordPress Core at some point.</p>\n\n\n\n<p>He explains some other projects which he’s been working on, inspired by the high volume of feedback he received after releasing his plugin.</p>\n\n\n\n<p>If you’re interested in pushing the boundaries of user experience, performance optimisation, and compliance with evolving web standards, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p><a href=\"https://twitter.com/swissspidy/status/1733138082591912154\">Pascal&#8217;s Twitter video #1</a></p>\n\n\n\n<p><a href=\"https://twitter.com/swissspidy/status/1735019049686368342\">Pascal&#8217;s Twitter video #2</a></p>\n\n\n\n<p><a href=\"https://webassembly.org/\">WebAssembly website</a></p>\n\n\n\n<p><a href=\"https://github.com/libvips/libvips\">libvips on GitHub</a></p>\n\n\n\n<p><a href=\"https://ffmpeg.org/\">FFmpeg website</a></p>\n\n\n\n<p><a href=\"https://blurha.sh/\">BlurHash website</a></p>\n\n\n\n<p><a href=\"https://twitter.com/swissspidy/\">Pascal&#8217;s Twitter</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 10 Jan 2024 15:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Matt: Sonos Tip\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=110280\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://ma.tt/2024/01/sonos-tip/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1204:\"<p>If you&#8217;re obsessed with <a href=\"https://www.sonos.com/\">Sonos</a> like I am, a nice MacOS utility is the <a href=\"https://mbc-for-sonos.app/\">Menu Bar Controller</a>. <cite>Hat tip to <a href=\"https://www.linkedin.com/in/miketatum/\">Mike Tatum</a></cite>, who happened to be the gentleman who convinced my parents it was okay for me to drop out of college and move to San Francisco to take a job at <a href=\"https://en.wikipedia.org/wiki/CNET\">CNET</a>. Mike&#8217;s now at Sonos and in October arranged for some top execs at <a href=\"https://automattic.com/\">Automattic</a> to go to Santa Barbara to meet with their peers at Sonos, and <a href=\"https://twitter.com/Patrick_Spence\">Patrick Spence</a> and I did a joint CEO town hall that was broadcast to both of our companies. It was I think fascinating for both sides because of a shared passion for craft, design, culture, and execution, but our companies are in no way competitive, so it allowed for a lot of transparency. I learned a ton, and I think that kind of sharing is what increases the mimetic evolutionary speed of companies. </p>\n\n\n\n<p><a href=\"https://atoms.com/\">Atoms</a> are hard! I think I&#8217;ll stick mostly to bits.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 10 Jan 2024 01:50:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"Do The Woo Community: Do the Woo is a Sponsor and Media Partner for WordCamp Asia 2024\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=78784\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://dothewoo.io/sponsor-and-media-partner-wordcamp-asia-2024/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:402:\"<p>We are returning to WordCamp Asia again, and proud to be a Media Partner again as well as a sponsor for the event.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/sponsor-and-media-partner-wordcamp-asia-2024/\">Do the Woo is a Sponsor and Media Partner for WordCamp Asia 2024</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 09 Jan 2024 08:09:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"WordPress.org blog: WP Briefing: Episode 70: A Look Ahead at WordPress in 2024\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=16677\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://wordpress.org/news/2024/01/episode-70-a-look-ahead-at-wordpress-in-2024/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8348:\"<p>Curious about WordPress&#8217;s big-picture items for 2024? Phase 3, Data Liberation, new meetups, and more, get the spotlight in this episode. Join Executive Director Josepha Haden Chomphosy for all this, plus a small list of big things coming up in the next two weeks.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Host:&nbsp;<a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a><br />Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br />Logo:&nbsp;<a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br />Production:&nbsp;<a href=\"https://profiles.wordpress.org/bjmcsherry/\">Brett McSherry</a><br />Song: Fearless First by Kevin MacLeod</p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/03/real-time-collaboration/\">Real-Time Collaboration</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/\">Make WordPress Core</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/data-liberation/\">Data Liberation</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/plugins/\">Make WordPress Plugins</a></li>\n\n\n\n<li><a href=\"https://events.wordpress.org/\">WordCamp Events</a></li>\n\n\n\n<li><strong>Small List of Big Things</strong>\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/12/12/overflow-questions-from-state-of-the-word-2023/\">Overflow Questions from State of the Word 2023 in Madrid, Spain</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/11/17/announcing-the-2023-annual-meetup-survey/\" target=\"_blank\" rel=\"noreferrer noopener\">Annual Meetup Survey</a>&nbsp;&#8211; This is the final chance to share your feedback on WordPress meetups for 2024 and how we can improve the program in the future.&nbsp;</li>\n</ul>\n</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Transcripts</h2>\n\n\n\n<span id=\"more-16677\"></span>\n\n\n\n<p>[00:00:00] <strong>Josepha:</strong> Hello, everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go.&nbsp;</p>\n\n\n\n<p>[00:00:28] (Intro music)&nbsp;</p>\n\n\n\n<p>[00:00:40] <strong>Josepha:</strong> Hello, my dears, and welcome to 2024. I hope you&#8217;ve had a lovely break. At the top of the year, I like to look around and gather the projects that the community is interested in. We can&#8217;t always commit to everything, and sometimes even the things we plan to do can&#8217;t make it across the finish line. In the next few weeks, I&#8217;ll be publishing kind of the big picture goals for the year, but I wanted to share a little bit about what I&#8217;ve collected so far.</p>\n\n\n\n<p>[00:01:05] <strong>Josepha:</strong> Firstly, we&#8217;ve got Phase 3. This has been called a few things over the years: collaborative editing, multiplayer, co-editing. But whatever it&#8217;s been called, the biggest changes to writing and design workflows are likely to happen in this phase. A redesigned workflow can be a bit of a shock. But fortunately, we already have a prototype out there.</p>\n\n\n\n<p>I&#8217;ll include a link to some resources in the show notes, or of course, you can always stop by make.WordPress.org/core for some insights. But I would encourage you to, at the very least, get your hands on that prototype to see what it looks like is coming in Phase 3 so that you can be aware and provide your feedback.</p>\n\n\n\n<p>The next thing on our list is Data Liberation. This is a new-to-us project that was introduced at State of the Word. Fortunately, though, it&#8217;s not a new concept overall. Data Liberation is actually one of the earliest ideas that sold me on WordPress. The idea that you could set up a site for a client, or yourself, and that hard work wasn&#8217;t lost if something went wrong, was really important to me. It&#8217;s been a long time since we put any effort into our importers and exporters, and I think this will be a good focus for the year.</p>\n\n\n\n<p>[00:02:14] <strong>Josepha:</strong> The next thing that I&#8217;ve picked up, kind of a list of three things, but there are three mid-sized areas that I want us to pay attention to this year: plugins, old tickets, and new meetups.&nbsp;</p>\n\n\n\n<p>Plugins, because they really have turned a corner on where they ended 2023. A lot of work has been done to make sure that they&#8217;ve streamlined some efforts, gotten some better onboarding for folks as they&#8217;re going in, and we could really use a hand to keep that momentum going.</p>\n\n\n\n<p>Old tickets, because it&#8217;s something that we hope for year after year when we&#8217;re talking to people about what they want in new releases. So often, part of what they say is some way to work through all of these old things that have been around forever, some with patches. And why not, after all?</p>\n\n\n\n<p>And then new meetups, because I really still think that meetups are the best intro to WordPress. No matter whether you&#8217;re wanting to become a developer eventually or, like, the community-building aspect is the thing that hooks you forever. Meetups are the place to encourage those and discover those.&nbsp;</p>\n\n\n\n<p>[00:03:20] <strong>Josepha:</strong> The next thing on my list is also two things. It&#8217;s two things, but kind of a guess at the moment. There are two summit items that I want us to try to consider this year.</p>\n\n\n\n<p>So the first one is contributor recognition. Acknowledgment and recognition, I think, are two different things, and there was an entire series of sessions at the summit where we talked about it. And so I think that it&#8217;s worth us digging in on that.</p>\n\n\n\n<p>The other thing from the summit that I would really like us to all kind of dig in on is accessibility, how we do it, how we confirm it, what we think we should do versus what we actually do, and see what we can move on the needle there.</p>\n\n\n\n<p>And the last thing is sort of a personal wish. I think it&#8217;s about time that we take a look at the way that we kind of manage ourselves as a project, the way that we do our meetings and report on our successes, things like that. And I realize that this is a big thing, and it might be a little bit scary. But, I mean, we&#8217;ve been doing this for a really long time, and it&#8217;s probably as good a time as any, frankly, to look at what we&#8217;re doing by habit or tradition and see if it still suits us.</p>\n\n\n\n<p>So, that&#8217;s my back of the napkin set of notes so far. Keep an eye out in the next couple of weeks for the annual Big Picture post so you can get some context, notes, and discussion opportunities. And, of course, anything that has shown up that&#8217;s a bit bigger, a bit more final will be in there as well.&nbsp;</p>\n\n\n\n<p>But first, our small list of big things. </p>\n\n\n\n<p>[00:04:52] (Music interlude)&nbsp;</p>\n\n\n\n<p>[00:05:00] <strong>Josepha:</strong> Firstly, State of the Word had nearly 200 questions submitted, and Matt has been answering the overflow on make.WordPress.org/project. So, I&#8217;ll include a link, but head on over there to that post if you would like to catch up on those.</p>\n\n\n\n<p>And then the second item, and last item, is that you&#8217;ve got a few more days left to give us feedback on WordPress meetups in 2023, and give us an idea of what we can do to improve those. I believe those close on January 14th. I really love my local meetup, and I hope that we can get some of that same sort of feeling going in all of yours, too.</p>\n\n\n\n<p>[00:05:33] <strong>Josepha:</strong> And that, my friends, is your small list of big things. Don&#8217;t forget to follow us on your favorite podcast app or subscribe directly on WordPress.org/news. You&#8217;ll get a friendly reminder whenever there&#8217;s a new episode. If you liked what you heard today, share it with a fellow WordPresser, or if you had questions about what you heard, you can share those with me at wpbriefing@WordPress.org.</p>\n\n\n\n<p>I&#8217;m your host, Josepha Haden Chomphosy. Thanks again for tuning in for the WordPress Briefing, and I&#8217;ll see you again in a couple of weeks.&nbsp;</p>\n\n\n\n<p>[00:06:02] (Music outro)&nbsp;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 08 Jan 2024 13:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:153:\"Gutenberg Times: Gutenberg Changelog #94 – State of the Word, Gutenberg 17.2, 17.3 and 17.4, WordPress 6.5, Migrating from Classic Theme to Block Theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://gutenbergtimes.com/?post_type=podcast&p=26968\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:163:\"https://gutenbergtimes.com/podcast/gutenberg-changelog-94-state-of-the-word-gutenberg-17-2-17-3-and-17-4-wordpress-6-5-migrating-from-classic-theme-to-block-theme/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:61310:\"<p>In this episode, Sarah Norris and Birgit discuss State of the Word, Gutenberg 17.2, 17.3 and 17.4. They take a sneak peek at the WordPress 6.5 roadmap, and they discuss steps on migrating from a classic theme to a block theme.</p>\n\n\n\n<p><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-94-state-of-the-word-gutenberg-17-2-17-3-and-17-4-wordpress-6-5-migrating-from-classic-theme-to-block-theme/#shownotes\">Show Notes</a> / <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-69-gutenberg-releases-wordpress-6-0-1-the-create-block-theme/#transcript\">Transcript</a></p>\n\n\n\n<ul>\n<li>Music:&nbsp;<a href=\"https://soundcloud.com/xirclebox\">Homer Gaines</a></li>\n\n\n\n<li>Editor:&nbsp;<a href=\"https://www.linkedin.com/in/sandy-reed/\">Sandy Reed</a></li>\n\n\n\n<li>Logo:&nbsp;<a href=\"https://markuraine.com/\">Mark Uraine</a></li>\n\n\n\n<li>Production:&nbsp;<a href=\"https://icodeforapurpose.com\">Birgit Pauli-Haack</a></li>\n</ul>\n\n\n\n<p class=\"has-larger-font-size\" id=\"shownotes\"><strong>Show Notes</strong></p>\n\n\n\n<h2 class=\"wp-block-heading\">Special Guest:&nbsp;<strong>Sarah Norris</strong></h2>\n\n\n\n<p>JavaScript Developer 6.4 editor tech co-lead</p>\n\n\n\n<ul>\n<li><a href=\"https://profiles.wordpress.org/mikachan/\">WordPress Profile @mikachan</a></li>\n\n\n\n<li><a href=\"https://sekai.co.uk/\">Personal website: sekai.co.uk</a></li>\n\n\n\n<li><a href=\"https://twitter.com/mikachan_\">Twitter: @mikachan_</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">State of the Word</h2>\n\n\n\n<ul>\n<li><a href=\"https://gutenbergtimes.com/state-of-the-word-redesign-developer-resources-block-theme-updates-weekend-edition-278/\">State of the Word, (and more) — Weekend Edition 278</a></li>\n\n\n\n<li><strong><a href=\"https://wordpress.org/data-liberation/\">Data Liberation</a> </strong>&#8211; <a href=\"https://github.com/wordpress/data-liberation\">GitHub repository</a>&nbsp;| Slack channel: <a href=\"https://wordpress.slack.com/archives/C069AKUBPHB\" target=\"_blank\" rel=\"noreferrer noopener\">#data-liberation</a>.</li>\n\n\n\n<li><a href=\"https://events.wordpress.org/\">New WordPress events page</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 6.5 </h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/12/07/roadmap-to-6-5/\">Roadmap to 6.5</a></li>\n\n\n\n<li>Tracking issues of features already in Gutenberg plugin and ready for testing\n<ul>\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/55277\">Font Library</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/53705\">Syncing specific blocks and attributes of patterns</a></li>\n\n\n\n<li>&nbsp;<a href=\"https://github.com/WordPress/gutenberg/issues/55083\">New data views for templates, template parts, and patterns in the Site Editor</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/55776\">Robust revisions</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/54336\">background image support for the Group block</a>,</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/52632#top\">aligning page edit features in Site Editor and Post Editor</a></li>\n</ul>\n</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Gutenberg plugin releases</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/12/06/whats-new-in-gutenberg-17-2-6-december/\">What’s new in Gutenberg 17.2? (6 December)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/12/20/whats-new-in-gutenberg-17-3-20-december/\">What’s new in Gutenberg 17.3? (20 December)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/01/04/whats-new-in-gutenberg-17-4-03-january/\">What’s new in Gutenberg 17.4? (03 January)</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Migrate classic to block theme</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/plugins/health-check/\">Health Check &amp; Troubleshooting</a>&nbsp;</li>\n\n\n\n<li><a href=\"https://wordpress.org/plugins/create-block-theme/\">Create a Block Theme</a></li>\n</ul>\n\n\n\n<p class=\"has-large-font-size\">Stay in Touch</p>\n\n\n\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow\">\n<ul>\n<li>Did you like this episode? <a href=\"https://lovethepodcast.com/gutenbergchangelog\"><strong>Please write us a review </strong></a></li>\n\n\n\n<li>Ping us on Twitter or send DMs with questions. <a href=\"https://twitter.com/gutenbergtimes\">@gutenbergtimes </a>and <a href=\"https://twitter.com/bph\">@bph</a>.</li>\n\n\n\n<li><em>If you have questions or suggestions, or news you want us to include, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. </em></li>\n\n\n\n<li><em>Please write us a review on iTunes! <a href=\"https://gutenbergtimes.com/itunes/\">(Click here to learn how)</a></em></li>\n</ul>\n</div></div>\n\n\n\n<p class=\"has-large-font-size\" id=\"transcript\"><strong>Transcript</strong></p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Hello, and welcome to our 94th episode of the Gutenberg Changelog Podcast and a happy New Year, dear listeners. I hope you all had a great time off during the holidays and a great start to the year 2024. I like the year 2024. 2023 wasn&#8217;t so good, but 2024 was good. In today&#8217;s episode, we will talk about State of the Word, Gutenberg 17.2, 3 and 4, and we take a sneak peek at the 6.5 WordPress roadmap, and we also discuss steps on migrating from a classic theme to a block theme.&nbsp;</p>\n\n\n\n<p>I&#8217;m your host, Birgit Pauli-Haack, curator at the Gutenberg Times and a full-time core contributor for WordPress open source project sponsored by Automattic&#8217;s Five for the Future program. And I&#8217;m thrilled to have as a guest today, Sarah Norris, JavaScript developer, theme builder and core contributor and editor core tech lead for WordPress 6.4, also sponsored by Automattic. Happy New Year to you too, Sarah. How are you today?</p>\n\n\n\n<p><em>Sarah Norris</em>: Happy New Year. I&#8217;m really good, thank you. I&#8217;m very ready to talk about all the work that&#8217;s been happening over the last few weeks, especially as we lead up to a fast approaching 6.5.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yes, it&#8217;s fast approaching and we are going to talk about that. But yeah, catching up on everything. The year-end vacation kind of always puts a little bit of a dent in being up-to-date with Gutenberg and the block editor and this is your chance to catch up on it. We have a big show, so it might go over the hour limit, but I hope we can get it brief.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">Announcements &#8211; State of the Word</h3>\n\n\n\n<p>So State of the Word, there was a lot of celebration around 2023 in the State of the Word and brought it to the WordPress community. And if you haven&#8217;t watched the keynote yet, there is a YouTube video. There&#8217;s also a YouTube video about the Q&amp;A afterwards and I&#8217;ll share the link to the Weekend Edition 228. That&#8217;s the last one on Good Work Times where I shared a ton of links, so this will be in the show notes, but it was the first State of the Word outside of US, a huge success with livestream on multiple channels. And is there anything that stood out for you, Sarah?</p>\n\n\n\n<p><em>Sarah Norris</em>: Yes. Yeah, so much fun. It was such a good State of the Word. So it was discussed how many&#8230; the number of WordCamps that&#8217;s increased. So I think we&#8217;ve doubled the number of WordCamps and Meetups, and that has to come in more and more countries as well. I attended the first UK WordCamp, so the first UK WordCamp since the pandemic last September. It was so much fun. It was held in Whitley Bay, which is in the northeast of England, and I&#8217;d just love for everyone in the WordPress community to experience this, and as the number of meets and word camps grow, I hope everyone is able to attend. It&#8217;s almost like&#8230; unable to put it into words how good it is attending local events and being part of your local community as well.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, I agree with that. Yeah, it&#8217;s the live, the person-to-person interaction. It&#8217;s kind of how relationships are built and it&#8217;s such a richer experience than just doing it online. And I just happened to think of it, but there is a new page on wordpress.org, it&#8217;s called Events, it&#8217;s <a href=\"https://events.wordpress.org/\">wordpress.org/events</a> and it has a big map with all the events happening and a list and you can filter down to location or what type of events. And so you learn about all the local Meetups, so if there isn&#8217;t one near you, there is the chance that you could actually start one. Yeah, it&#8217;s a lot of work and it&#8217;s a ton of fun. For about four years, I organized the meetup in Florida when I was still living there and I had so much fun with the local community, and I was always up-to-date on WordPress because I had to do a little intro every time and&#8230; Great speakers. So it&#8217;s a ton of fun.</p>\n\n\n\n<p>So if you want to do that, the make.community&#8230; No, <a href=\"https://make.wordpress.org/community/\">make.wordpress.org/community</a>, that&#8217;s a handbook for meetup organizers and work group organizers, and out of the small cell of a local meetup will grow the bigger one. That&#8217;s the WordCamp. Yeah, thank you for letting me rant on about this. I&#8217;m by heart a community organizer, so I&#8217;m kind of really happy about&#8230; That those come back. Although we doubled the number of WordCamps, there is still a lot of work to be done to get on the level of pre-pandemic. So 2018 and &#8217;19, we had about 140 WordCamps around the world, which is double the number that we had last year. So we are on the way because it&#8217;s going to be maybe a hockey stick growth rate there with all the local Meetups coming back. All right, so back to State of the Word, what else stood out for you?</p>\n\n\n\n<p><em>Sarah Norris</em>: I&#8217;d also like to give Playground a shout-out. It&#8217;s become one of my absolute favorite tools to use when developing and testing for Gutenberg and also when building themes and plugins. I&#8217;m just so excited for what the future holds for this tool and just well done to everyone involved in building such an amazing tool as well. Yeah, I&#8217;d recommend everyone check it out if you haven&#8217;t already.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, check it out. WordPress Playground. It&#8217;s actually WordPress in a browser. You don&#8217;t need a local server and you can have a plugin, can use it for demos as can themes, but it&#8217;s also&#8230; Some of the tutorial educational content will have some Playground links as well so you can see how it actually works and&#8230; Without having you setting up all your local development and all that, so it&#8217;s really cool. Yeah. I think they&#8217;re also working on a VS Code extension, so you get a little WordPress button in your left taskbar and then you click on it, and then from the directory you can call up the Playground instance. So that would be really cool. It&#8217;s still in the works, but I think that&#8217;s the goal for it, yeah. Anything else that stood out from State of the Word?</p>\n\n\n\n<p><em>Sarah Norris</em>: Yes. Yeah, I&#8217;m also excited about the admin redesign, so yeah, I&#8217;m just looking forward to&#8230; I think this is another maybe long anticipated feature. Yeah, like anything, any big redesign of any long-standing tool is always exciting and I think this is&#8230; Yeah, it&#8217;s just going to be incredible.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, it is. Yeah. And that&#8217;s the unification of all the list views on&#8230; List of posts, list of pages, list of categories that I haven&#8217;t tackled yet, but the list of templates. So it&#8217;s all a unified kind of system. So I really excited about that too. And it looks so modern. It looks so&#8230; Like, &#8220;Oh, this is from the 21st century.&#8221; Yeah.</p>\n\n\n\n<p><em>Sarah Norris</em>: Exactly.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, what stood out for me was kind of a little bit a higher level thing from State of the Word. There was a data liberation project that Matt Mullenweg announced. That&#8217;s a community initiative to bring all the tools that agencies and hosting companies put together for migration in and out of WordPress. So in and out of&#8230; From Wix to WordPress, from Squarespace to WordPress, from Google Docs to WordPress and all that. And I think that is a really good step forward to the open web, that a user or a site owner can take a hold of their own data and they&#8217;re not beholden to a centralized kind of system that doesn&#8217;t let you get out of it once you have signed up for it because the switching costs are too high or not possible at all and you have to start all over again.</p>\n\n\n\n<p>So I think that is a really good initiative. We&#8217;ll see how it plays out in the next year of course, but there are some&#8230; So I&#8217;ll share a few links in the show notes about that. And the other thing that stood out for me was everybody was waiting for the date of WordCamp US, which is September 20&#8230; No, what is it?</p>\n\n\n\n<p><em>Sarah Norris</em>: September 17th to September 20th. Yeah, September next&#8230; This year.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: September was good. So September 17th through the 20th, and if you count the dates right, there are two days&#8230; Contributor day and two-day conference. So this is kind of a new format and I&#8217;m excited to see that and how that plays out. So that&#8217;s it from the State of the Word. Anything else?</p>\n\n\n\n<p><em>Sarah Norris</em>: No, I think that&#8217;s it from the State of the Word.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Of course, we also have a lot of recap posts if you&#8217;re not into video watching, it&#8217;s also on the link then.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">WordPress 6.5</h3>\n\n\n\n<p>So next up, WordPress 6.5, that&#8217;s the release coming now and it&#8217;s fast approaching. We have a schedule, so Beta 1 is scheduled for February 13th, 2024. That is feature freeze kind of thing. And I did a calculation, 38 days from today, and today&#8217;s January 5th. And the last Gutenberg release that&#8217;s going to make it new, feature-wise, will be 17.7, which is actually only three Gutenberg releases away. It&#8217;s fast approaching. After Beta 1 comes weekly Beta 2 and Beta 3 with bug fixes after testing and then brings us to release candidate one for March 5th, though in exactly two months, March 5th, 2024. That is the deadline for string freeze and also for developer notes to be published and collected in the field guide that accompanies every major release release candidate is actually right before WordCamp Asia, which takes place on March 7th through ninth.</p>\n\n\n\n<p>So this is great timing because everybody who wants to go to WordCamp Asia already has a release candidate. Whoever is on the release squad can&#8230; Oh, release candidate&#8217;s done. So the major work for the release is probably done by that time and that&#8217;s a good thing. You don&#8217;t want to be on a WordCamp and have to deal with releases at all. Yeah. Final release is scheduled for March 26th, 2024. So here is your schedule for that. That seems to be a pretty good schedule in terms of spacing out the betas and release candidate, that&#8217;s some kind of tradition with WordPress release. You were on 6.4. How is the weekly kind of updates and what goes into next beta and all that? Is it particularly important?</p>\n\n\n\n<p><em>Sarah Norris</em>: Yeah, yeah, the dates are important. It&#8217;s almost like time&#8230; If you didn&#8217;t think time went quick enough already, being part of a WordPress release. Yeah, I think one of my ways to deal with the release dates is usually I have a deadline for myself that&#8217;s just ahead of the important dates. So usually the Friday before a date, but also that reduces the time, because I don&#8217;t know if I&#8217;m stressing myself out more. No, it&#8217;s all good.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> No, it&#8217;s all good. I think you need the Monday to do all the backboards and then&#8230; The beta releases and release candidates are all on Tuesdays because Wednesday is too late, and if you want to move it, you could move it to Wednesdays, but you don&#8217;t want to release anything on Thursday or Friday because then the whole weekend is kind of full with anxiety and communication and feedback, kind of that.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">Roadmap 6.5</h3>\n\n\n\n<p>Yeah, so early December, Anne McCarthy has published the roadmap for 6.4, and it&#8217;s a very long post and we are certainly not going to&#8230; We would need to have another two-hour show to go through it in detail, but let&#8217;s look at the highlights for it.</p>\n\n\n\n<p>So it has four major topics from the editor part, that&#8217;s design tools, that&#8217;s adoption pathways, the foundational experience, which is some of the redesign, and new APIs. And I think the first three are really interesting for users and those who build interfaces for others but not&#8230; Or do site builders that are no-code. So the fonts library, we are waiting for that for quite a while now, but I think it&#8217;s coming into 6.5 eventually, right?</p>\n\n\n\n<p><em>Sarah Norris</em>: Yes. Yeah, a long anticipated feature coming to core. Yeah, so this brings font management directly to core, allowing users to edit and remove custom fonts all within the editor. It has been available from Gutenberg 16.7, so there&#8217;s some underlying changes currently going on, but if you do want to test it, you can already test it using the Gutenberg plugin. But yes, a brand new redesigned API and the UI will be coming to 6.5 and yes, it&#8217;s extremely exciting. I know I&#8217;ve spoken to so many users who are looking forward to this.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And the waiting was really hard on those users that are looking forward to them because it got pulled from the 6.4 release at pretty much last minute, like Beta 2 or something like that, because it wasn&#8217;t ready for the REST API kind of thing. What&#8217;s also coming is sync specific blocks and patterns. We have sync patterns, but it&#8217;s the partially synced patterns where you can change layout and styling of a pattern, but not the content. Right now, synced patterns are when you change something on the pattern and it changes through all the instances that it was synced, but if you have partially synced, you can kind of have a little bit&#8230; You have a granular control on what should be synced, a role of the pattern instance that it was used, and what shouldn&#8217;t, and I think that is pretty much, as of this week, ready for testing. We probably need to wait for 17.5 to get it into Gutenberg plugin, but look out for that release to start testing on this.</p>\n\n\n\n<p>And the third item in the design tools was the section specific theme.json and Colorways. So you have multiple palettes that introduce some of the sections that you use in your theme and have a different color palette that you can style it with. I think that&#8217;s the idea there. I think the work is on the Group Block right now.</p>\n\n\n\n<p><em>Sarah Norris</em>: Yeah, that&#8217;s right. Yeah, it&#8217;s like sectioning off the theme.json&#8230; Well, specifically at the moment just for colors, but I think this will be great. It&#8217;s kind of like a great gateway into expanding the design tools, especially for theme builders. And like you say, this is only going to apply to the Group Block, but it&#8217;s a good example, for instance, of a theme author being able to provide colors that work well together, but in a specific instance, so just for the Group Block. So you could make sure that text is accessible in that specific instance. I think it plays a really exciting future for splitting up theme.json, also because theme.json can get really long as well and that file can get big. So yeah, I think it&#8217;s heading in the right direction with this as well, to splitting it all.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: I think it also bridges the gaps between&#8230; I don&#8217;t know if that&#8217;s part of it, I need to test it out, but when you have styling for certain blocks or block styles, those don&#8217;t have the design tools to further style them later on. And I think this will be one that&#8217;s built out, not just for the group log or for a certain instance, it could help with the additional styles that theme developers offer their users to also give additional styling to them.</p>\n\n\n\n<p><em>Sarah Norris</em>: Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: All right. And then on the roadmap, there&#8217;s a section adoption pathways, and that is to make certain features available for classic themes or make them easier to handle support for appearance tools and classic themes. So I think we have one of the change log items that we discussed further is about colors and dual tone and color settings, and then also improved pattern management for classic themes. Yeah. You wanted to say?</p>\n\n\n\n<p><em>Sarah Norris</em>: I was just saying yes to the features that are coming up in the Gutenberg releases we&#8217;re talking about. Yeah, I noticed there was a lot in relation to the appearance but also the classic themes. Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And then for the foundational experience, that&#8217;s the part where the data views come in on the roadmap and they will come in for templates, template parts and patterns in the site editor. At least that&#8217;s on the roadmap, but they are also&#8230; You can already test those, but you need to open up the experiments tab for that to switch them on and then you can see them for pages, you can see them for&#8230; Patterns? No, not patterns. Patterns is the only one that doesn&#8217;t work yet, but for templates and template parts, and definitely a feature that needs feedback, that needs definitely testing and bug fixing, especially for backwards compatibility for the previous versions. That&#8217;s definitely something, if you want to dive into how things are going. The next one, it&#8217;s called robust revisions. Do you know what that is about, Sarah?</p>\n\n\n\n<p><em>Sarah Norris</em>: So this is improving revisions but across multiple places. So I think we&#8217;ve started templates and template parts, so they&#8217;ll now show revisions alongside style revisions and you can also compare this revision side-by-side as well, which I think is brand new. And we&#8217;ve also added pagination. So yeah, a whole ton of improvements for revisions.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Right. Yeah, definitely.</p>\n\n\n\n<p><em>Sarah Norris</em>: We&#8217;re also integrated with the style book now. This may be coming up as well, I think in the change log, but yeah, we integrated with the style book.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, it&#8217;s definitely something you need to test, you want to test and it&#8217;s a part of the bigger project also to have revisions for any post metadata, which hasn&#8217;t happened in WordPress before. So a lot of plugins probably will be happy to use those revisions screen when they&#8217;re ready and available for extensions as well. And then one thing I&#8217;m pretty excited about, but it has also seemed to be quite a complex issue to actually have a customizable Navigation Block for mobile headings or navigation, the little hamburger, what goes in and what goes out because it&#8217;s never going&#8230;</p>\n\n\n\n<p>Most of the time it&#8217;s not one-to-one with the normal site navigation, but there will be an overlay that you can switch in and out, but it seems to be quite complicated. I looked at some of the issues, one of the issues exactly, and it has a long discussion on which way to go on it. So it&#8217;s still in the design phase, I believe. Not sure if it&#8217;s going to make it to 6.5, but maybe it&#8217;s easy once the design questions are all answered to then dive into the development. But yeah, computers are involved, so nothing is really easy. I don&#8217;t know how you see that, if you have some insight into that.</p>\n\n\n\n<p><em>Sarah Norris</em>: I know it&#8217;s a lot. So I think on the face of it, especially because it sounds like it&#8217;s a section of the Navigation Block, but I think when if&#8230; Anyone who&#8217;s built a responsive navigation knows it&#8217;s not simple, so then as soon as you start trying to do it, to cater for so many of the people to be able to build this kind of tool. Yeah, it&#8217;s pretty complicated, but there&#8217;s some really good work going into this, some good conversations. Yeah, we&#8217;ll get there. And I think all the discussions and a long design discussion, it always ends up with a good first pass.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And then there are three new APIs coming with different outlooks, kind of, or goals. The Interactivity API we have been talking about for about a year now, and some of the Core Blocks are using it in a private API, but for 6.5 it&#8217;s coming out of experimental and will be a public API for everybody who develops blocks to be able to use the custom fields API and binding API, I&#8217;m not quite sure how far along they are. They haven&#8217;t been released yet in a private API kind of setting. I&#8217;m not sure they&#8217;re actually going to make it. There will be underlying&#8230; They will support some of the new features but in a private API to see if they all work as they&#8217;re supposed to be working. I think that&#8217;s pretty much the high level idea about that. And then lastly there will be some&#8230; There&#8217;s PHB compatibility work.</p>\n\n\n\n<p>There&#8217;s a rollback between plugin and themes, updates with automatic updates. That has been testing also for quite a few months and is supposed to come also a better handling of plugin dependencies. And of course, the performance team does a fantastic job in going after all those performance improvements that are possible with WordPress, be it for the block editor or for PHP or for the backend as well. So those are also coming to 6.5. But as Matias and Matt said, just because we say phase two is done, doesn&#8217;t mean the work is done. So there will be UX iterations and quite a few listview background image support for Group Block, some of it is already there. Then revisiting template versus content editing modes. That kind of confuses a lot of people. &#8220;Are we adding a template or am I adding a page or what am I doing here?&#8221;</p>\n\n\n\n<p>Those questions come up with testing quite a bit. And then what has been progressed quite a while is to align the edit features that are available in the site editor and the post editor. So it can be reused is pretty much&#8230; That&#8217;s one thing. And users, the advantage of it is that users don&#8217;t have to relearn what&#8217;s available in which editor because they&#8230; Maybe that&#8217;s also part of the confusion that we have on, are we editing templates or content. And so the background image support and the aligning the features are ready for testing. I think there has been some great progress made in the Gutenberg releases. And then the last point is adding box shadow component. There is box shadow support, but I think it&#8217;s only made available for theme.json level but not for user interfaces. Is that right?</p>\n\n\n\n<p><em>Sarah Norris</em>: Yeah, that&#8217;s right. Yeah. So the work for 6.5 will expose this to the UI as well, so end users can use the box shadow component as well.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. We&#8217;ll see how that all&#8230; And then the last thing that&#8217;s on the roadmap is that the minimum version for MySQL is going to be raised from 5.0 to 5.5.5. Very specific, but look out for it and talk to your hosting company to make sure that there is an upgrade path if you&#8217;re still on an older MySQL version. All right, so anything else about the roadmap that you want to add?</p>\n\n\n\n<p><em>Sarah Norris</em>: No, I think that was everything. It&#8217;s a very long roadmap.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, it&#8217;s ambitious. Yeah. Roadmaps are always quite ambitious. And then you see on Gutenberg 17.6, we&#8217;ll see how we wiggle down that ambition a little bit and kind of what&#8217;s realistic and then we&#8217;ll see what&#8217;s coming into 17.7. Yeah, that&#8217;s the last one.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">What’s Released &#8211; Gutenberg 17.2</h3>\n\n\n\n<p>All right, so let&#8217;s go into the weeds. And we start with Gutenberg 17.2, it was released on December 6th. Wow, that&#8217;s a month ago. And there were a few things that stand out and one was the data views, and that added extra context to&#8230; So the data views are the ones that are in the admin section, the list of things, list of properties or entities or whatever you call it, I call them things.</p>\n\n\n\n<p>And so there are quite a few features in the old admin screen that needed to come in a better way into the new admin screen. And there was kind of a filter row, the table header pagination and there&#8217;s extra&#8230; You can now scroll down and have the larger data sets. You don&#8217;t have to scroll up and down. So there&#8217;s a sticky table header that&#8217;s really good. That wasn&#8217;t available in the old one. So that&#8217;s the first&#8230; Yay.</p>\n\n\n\n<p><em>Sarah Norris</em>: Yeah, it&#8217;s very helpful, especially when the scroll bar is really long, so you don&#8217;t have to remember&#8230; The pagination is also sticky as well.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh yeah, that&#8217;s great.</p>\n\n\n\n<p><em>Sarah Norris</em>: Same with that, you don&#8217;t have to scroll&#8230; Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Good. And then one of the things is that drag and drop is now a little bit more refined. There was a problem to drag and drop to the beginning of a post or page and to the end, and contributors have figured out how to make this better and actually functioning. And so it kind of virtually enlarges the area. It was really irritating that you could do it in the second one. You can drag into between the first one and the second one, and then you had to move it up if you wanted to get a block to the beginning of something. So it&#8217;s really good.</p>\n\n\n\n<p><em>Sarah Norris</em>: Yeah, yeah, it was really finicky. It was like you were fighting with the top on the blocks. It was just like it wants to drag you into this, but yeah, and now you don&#8217;t have to fight.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, yeah. I also think that the drop zones are better marked now than at the previous versions of the block editor. So I&#8217;m really grateful for that. I just it saw, that the list view&#8230; You can also now drag into a collapse block in the list view, which is really cool. So you don&#8217;t have to just first expand a block to put additional blocks into a Group Block or a Columns Block or something like that. So you can just drag it there. Of course, the order of that, that&#8217;s random. But yeah, once you get them in, you can organize it.</p>\n\n\n\n<p><em>Sarah Norris</em>: Yeah, that&#8217;s cool. It&#8217;s less clicks, it should be less clicks.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Do you want to take the next one?</p>\n\n\n\n<p><em>Sarah Norris</em>: Yeah, what else have we got? So we&#8217;ve also got the adding the toolbar for distraction free mode. So distraction free mode removes all of the UI? All the UI. So you are only looking at your content and you&#8217;re only&#8230; So you can write a long blog post hopefully. The problem with this is that it could be hard to format some of the content. So this brings in the toolbar when you mouse over the top of the editor, it&#8217;ll bring in toolbar when you&#8217;re in distraction free mode. So yeah, I recommend checking that out as well, if you haven&#8217;t checked that distraction free one.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, I really like it. And it should be actually a default setting for the writers of the users that still like the white box from the old classic block editor that&#8230; And there is no distraction, every time you move the mouse or you move the keyword, there&#8217;s something popping up and coming down and you don&#8217;t remember where it was and what it was and it kind of totally gets you out of the flow for your writing session. So distraction free mode is a really&#8230; Extension there, and refinement definitely helps with all the writing tools in the block editor.</p>\n\n\n\n<p>So the Gallery Block now has styled scroll bars for the image captions, which is really an additional design tool because the image captions were always a little bit randomly placed on the Gallery Block. Yeah. The Interactivity API, they add&#8230; Luis Herranz, I think, did the proposal to have the Interactivity API use modals instead of scripts on the front end, which kind of makes it native JavaScript&#8230; A little bit closer to native JavaScript. So I think that&#8217;s for the developers amongst us to check out. And do you have any thoughts about that?</p>\n\n\n\n<p><em>Sarah Norris</em>: I&#8217;m really excited about the Interactivity API going out into the world. I think it really opens up&#8230; Well, so I&#8217;m from a front-end development background, so if I wasn&#8217;t already working at Gutenberg and I was building WordPress sites, I would be really excited about this. I&#8217;d be looking forward to using it so much. Yeah, it&#8217;s basically&#8230; I don&#8217;t want to say it&#8217;s React and you can look under the hood, what it actually is, but yeah, it basically surfaces so much functionality to the WordPress front end.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: There wasn&#8217;t before.</p>\n\n\n\n<p><em>Sarah Norris</em>: Especially you&#8217;re building custom block.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: So check it out as it&#8217;s coming to 6.5 as a public API, so let&#8217;s definitely start checking it out. There are efforts to bring introductions to the Interactivity API as well as case studies to the developer blog. I&#8217;m not quite sure they will be ready by March, but definitely subscribe to the WordPress developer blog on developer.org&#8230; <a href=\"https://wordpress.org/news/\">wordpress.org/news</a>. So you get notifications when there&#8217;s a new post coming up, and it actually has some great additional tutorials in there.</p>\n\n\n\n<p>Talking about documentation, there was an initiative to put the fundamentals of block development, rewrite some of that or put it in a different order. So when you&#8217;re trying to learn more about block development, that the official documentation in the block editor handbook helps you get started and learn all the concepts about the file structure, registration of a block, the block wrapper, working with JavaScript and the block, what block.json can do for you, landing and first pages and the landing pages and all. And they&#8217;re all kind of getting a revamp.</p>\n\n\n\n<p>At the same time, Riad, I think it&#8217;s mainly Riad Benguella who is also writing the documentation for using Gutenberg as a framework, as a platform outside the WordPress context. It hasn&#8217;t been published yet, but if you fork the Gutenberg repo and you can start reading it. And he has some great tutorials on attributes, definitions, transform pages and blocks, and also the block supports for the framework, which is a little bit&#8230; Works a little bit differently than in the WordPress context, of course. So this is pretty new on the&#8230; And then, of course, there&#8217;s always some work to be done on the documentation with the new components, theme.json, and also template names and web pack options and all that. So this is highly technical and I would suggest you read the change log on the documentation part, if you&#8217;re interested in that and learning about new things.</p>\n\n\n\n<p>And I think, yeah, it&#8217;s also the Create Block scaffolding. I don&#8217;t know if you have used it, Sarah, but I&#8217;m a big fan of that scaffolding tool since the beginning because I don&#8217;t have to remember all the things I need for a plugin that has a block. And you can also use an interactive template that makes the new block ready-to-use Interactivity API. And because there&#8217;s a new Store API for the Interactivity API, the Create Block scaffolding tool has already been updated to use that. So this is pretty cool.</p>\n\n\n\n<p><em>Sarah Norris</em>: Yeah, it&#8217;s very cool.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Very cool. And I think that&#8217;s it from Gutenberg 17.2, and we go right headfirst into 17.3. Do you want to start us off?</p>\n\n\n\n<h3 class=\"wp-block-heading\">Gutenberg 17.3</h3>\n\n\n\n<p><em>Sarah Norris</em>: Yeah, sure. So this also included many improvements to the revision changes like we highlighted before 6.5. So 17.3 included adding a brief summary of the revision changes to global styles. So when you view the revisions in global styles and you click on the dates, it&#8217;ll now give you a brief summary of the blocks that would change and the styles&#8230; Yeah, the blocks that would change with the style changes. Yeah, it&#8217;s very good.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, that&#8217;s excellent. And there&#8217;s also enhancement of the social icons that is now using or adding the Gravatar service and it&#8217;s also updated. Well, sometimes I&#8217;m really cool. I&#8217;m really excited when I see consistency be applied to all the controls. So the default typography controls are now consistent across all the blocks, because different contributors write the different pieces of it, and then once you have the pieces you kind of need to see, okay, how can it make this a little bit more consistent, because then it&#8217;s easier on the eye end. You don&#8217;t have to worry, why is that distance longer than the other one, or whatever. So that is really good work. It&#8217;s God&#8217;s work, but it&#8217;s not always appreciated or seen that much. So I wanted to point that out. The same is also&#8230; Or the color dimensions of the List items Block, I think that&#8217;s new. That&#8217;s an enhancement for the List Block. So you can do the margins and the padding around list items. You can also have controls over it. It&#8217;s really cool.</p>\n\n\n\n<p><em>Sarah Norris</em>: The preference is modal as well. It&#8217;s also had a nice update, maybe something you wouldn&#8217;t expect to see updates for, but in 17.3, it&#8217;s had an organization update with the introduction of some new panels for appearance and accessibility settings.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, that&#8217;s really cool.</p>\n\n\n\n<p><em>Sarah Norris</em>: Nice UX enhancement.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh yeah, there were also some updates to the external&#8230; Have you ever noticed the external images panel in the Post publish sidebar?</p>\n\n\n\n<p><em>Sarah Norris</em>: Yes. Yeah, right.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: That&#8217;s such a cool feature. So what does it do? And it kind of seems to be unnoticed, but it helps you. So if you copy paste from a different webpage or from Google Docs into your block editor canvas, out of the box or automatically, it links the images from the original space. So once you publish it and you delete the Google doc where&#8230; Yeah, all of a sudden your images go away or if you migrated from a different webpage, those external images don&#8217;t come automatically over. So each of the images in the toolbar has an upload to your own media library. But if you have 10 images, you don&#8217;t want to do it one at a time. And when you publish the post, the pre-published view has kind of thumbnails of all the images that are external and gives you a button to upload them all at once into your media library before you publish your post. I think that&#8217;s genius.</p>\n\n\n\n<p><em>Sarah Norris</em>: It is.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Because in the preview you see the images because the original place still has them, and all of a sudden the post goes away. We actually have met the developer blog quite a bit when&#8230; So it&#8217;s a really cool feature.</p>\n\n\n\n<p><em>Sarah Norris</em>: Yeah, it is. It&#8217;s something that&#8217;s maybe easily forgotten about as well because like you say, if you&#8217;re copying and pasting, like a lot of people do, and then you&#8217;re just like, &#8220;Yeah, they&#8217;re showing, they&#8217;re fine,&#8221; and you can just easily forget about them. Yeah, so really good feature.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, really good. Well done, Ella. So was that all that we had? I think there wasn&#8217;t a whole lot of&#8230; In that release, but I like all the accessibility improvements that are listed in there and the performance as well. There&#8217;s quite a few performance improvements, just because improving the code quality and having not so many calls to the same feature or same store kind of reduces that load times and the reloading of things. The experiments, I&#8217;m pretty much done with that. Are we? 17.3?</p>\n\n\n\n<p><em>Sarah Norris</em>: I think there&#8217;s one about the update for matching the front-end layout class names between the editor and the front end. So it&#8217;s a minor change, but I think anyone who&#8217;s working with CSS, especially with WordPress, will appreciate any updates like this where the generated layout class name in the editor will now match to the front end.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yay.</p>\n\n\n\n<p><em>Sarah Norris</em>: So yeah, it&#8217;s a nice little enhancement.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: So those who have dealt with that before, they need to revisit the code to not&#8230; Are there compatibility issues with that or&#8230;?</p>\n\n\n\n<p><em>Sarah Norris</em>: No, I don&#8217;t think so. I think just going forward the class names will match. So I guess previously there would be a lot more work involved, so things should be more simple going forward. So I don&#8217;t think there&#8217;s any backwards compatibility.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Good, good, good. Yeah, sometimes I wonder when CSS changes come. And we had a few hiccups with releases there as well. Yeah. All right, well, we are really good.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Gutenberg 17.4</h3>\n\n\n\n<p>We are through 17.3, and then this week Gutenberg 17.4 was released and also had a few highlights, and definitely the unification between site and post editor has progressed rapidly. So now we have Page Attributes panel, post taxonomies panel, the view link thing, panel. Discussion panel and feature image panels are now available also in the site editor. And that&#8217;s really good. So when you create pages and edit pages, you have all the tools that you need there.</p>\n\n\n\n<p><em>Sarah Norris</em>: Next one, there&#8217;s so many improvements to the DataViews as well with this release. So we&#8217;ve stabilized the experience of the template screen, making it available outside the experiments flag and without the additional views options, but templates have been marked as stable. Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. So DataViews testing is now on. If you install, you can use the plugin also on the test site or on Playground and install it there and test those template pages. So the DataViews of that is really&#8230; You can start now. For the design tools, the 17.4 has the first iteration of support background image in the Group&#8230; Well, we had background image in the Group Block before, but now it also has some tools, controls for the background size and also for tiling or repeat feature on the background image. So there&#8217;s a cover option there that means it covers the whole size of the Group Block, or you could have a contains option that it contains the aspect ratio and the Group Block can display something on top or below. But with that you can also enable the repeat feature and then it would only repeat in one dimension.</p>\n\n\n\n<p>So if the block is longer than the image, then it would repeat in the height of it and if the Group Block is wider than the background image, then it would tile it in the width of it. And then there&#8217;s a custom size. So you can say, &#8220;Okay, use that background image but only in the size of 200 width and then repeat it.&#8221; And then it gives you the repetition over the full set of the Group Block. Did I explain this right?</p>\n\n\n\n<p><em>Sarah Norris</em>: Yeah, I think so. Yeah, expanding the background image options to include cover and contain, and then with all those options you just described. Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And I think that&#8217;s pretty cool because then you can have some great&#8230; Well, some people say it reminds them of GeoCities, but that&#8217;s not a bad thing. Giving more controls to the user and to designers to make some interesting layouts and interesting designs for the websites.</p>\n\n\n\n<p><em>Sarah Norris</em>: And I think anything that reminds me of GeoCities can only be a good thing. Maybe that&#8217;s just my age showing.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Or mine. I love it. Played quite a bit of a part. The next step?</p>\n\n\n\n<p><em>Sarah Norris</em>: We&#8217;ve also got some updates&#8230; Yeah, the global Styles revision. So we mentioned these as part of the 6.5 roadmap, but as part of 17.4 we&#8217;ve got some updates to the revisions for adding pagination and the integration into the Style Book. So global Styles revisions, you can now navigate between lots of different revisions over multiple pages of revisions and you can also see them from the Style Book itself as well. And I think that that really highlights the Style Book as such a useful tool as well, especially for styling. It&#8217;s in the name, Style Book, but especially for styling many blocks, many blocks at a different&#8230; Sorry, at the same time, rather than&#8230; I don&#8217;t know if maybe some people who are new to the editor may feel that they have to edit certain sections in different places because things feel new and they&#8217;re all over the place. If you start with the style book and you can see all the blocks in one place, I think it may help understand how they all interact with the different styling and how they interact with each other as well.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And the Style Book is actually something that I, at the beginning of the block editor when I was trying to figure out if they&#8230; In 2018 actually, trying to figure out if we should enable the block editor for certain websites, and I was putting all the blocks in one post and then make them available for that particular site. And then we were able to look through it, how do the blocks behave? Whereas the styles need to be adjusted so they actually show the cover block and all that. And the Style Book is really replacing that totally. But it&#8217;s really helpful for&#8230; As you said, you have so many places where you can change the appearance of a block, of an element, more of a&#8230; That, or of a section, that it&#8230; Or in a post or globally on the style IU, you sometimes have a hard time figuring out, &#8220;Where did I change that or where is that red line coming from?&#8221; So the Style Book really helps you with that, to kind of track that down.</p>\n\n\n\n<p><em>Sarah Norris</em>: We&#8217;ve also got the right-click for blocks. So yeah. So in the list view, yeah. So you can now right-click blocks in the list view, so on the left-hand side when you&#8217;re in the editor, and it&#8217;ll open the block settings panel for that block. And I think this is super cool because it makes Gutenberg feel a lot more like an app. It already feels like an app. And then we&#8217;ve got the admin redesign coming as well, and now we&#8217;re going to have right-click menus. Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, right-click menus. Yay.</p>\n\n\n\n<p><em>Sarah Norris</em>: Right, yeah. Right-click menus, yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And that&#8217;s the block settings menu that will come up. That&#8217;s where you have add, before and after, copy things, create patterns. Those are the menu items that are in the block settings menu that shows up when you right-click on a block in the list view. It also makes you streamline the whole process quite a bit because you only have one list view and you don&#8217;t have to scroll up and down the canvas, you can just kind of collapse and expand on the list view and do some fine-tuning there. What&#8217;s also quite interesting here is in 17.4, all the performance enhancements or improvements that people are working on as well, most of them, again, also store subscriptions and improvements that take down the load times and the reload times. So that is definitely yay to the performance improvements. There are quite&#8230; I don&#8217;t know, I haven&#8217;t counted them, but it might be 40 or so items that are concerning the data view.</p>\n\n\n\n<p>So that experiment is really progressing quite a bit. So even if that&#8217;s the template part, you can enable the experiment and then get all the other data views as well to test things. Yeah, list view, the sync patterns is kind of working. Yeah, the documentation updates, one is that there is a new build your first block tutorial in the Getting Started section of the block editor handbook. And I&#8217;m not quite sure how finished that is, but it&#8217;s definitely something to keep an eye out for that, as it made the start of your block development experience easier than before. At least, that&#8217;s the hope. And if it doesn&#8217;t, yell at us. It&#8217;s good to get your frustrations out because that&#8217;s how we learn, we&#8217;ve got to get over it, then we need to get back to it. I did one of the courses, the data layer introduction course on <a href=\"https://learn.wordpress.org/\">learn.wordpress.org</a>, and I&#8217;ve really found it quite interesting to go through that.</p>\n\n\n\n<p>And I learned so much about using the components also for plugin outside the block editor context and a plugin settings page, and also how to interact with the WordPress data. And I shared my enthusiasm for that course on Twitter. And then someone who also went through that said, &#8220;Well, it&#8217;s not always quite clear which code examples need to be changed to get to the next step.&#8221; And I said, &#8220;Yeah, you&#8217;re not alone.&#8221; And I definitely have a set of notes for that, for the faculty member who created the course, but I also found it quite satisfying that I actually figured out what needs to happen. And that&#8217;s part of the learning piece, that you cement the learning so much better when you figure it out yourself than somebody spoon feeding that to you. So I&#8217;m in two minds about that. But yeah.</p>\n\n\n\n<p><em>Sarah Norris</em>: You can fall into the trap of just copying and pasting everything, if everything is there. But I also understand examples are amazing to be in docs. So yeah, we need a good balance of just enough examples to get people to figure out the next thing on their own so they feel like they&#8217;ve learned something too.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And I think it&#8217;s also&#8230; It might be the experience of a web developer that we had to figure out so much before on our own that it&#8217;s kind of part of the habit, too. &#8220;Yeah, it&#8217;s not working the first time.&#8221; That expectation is not there, so we always have to figure it out. Same with using different scripts and all that. As I said, computers are involved, easy is not always easy as it seems. But if you are on the developer path and you&#8217;re listening and want to learn something, they have some great courses on the learn.wordpress.org site, and they&#8217;re relatively fast to get through. Not always easy, as we said, but yeah. And speaking of which, the easy part, I think we are through with Gutenberg 17.4, right? So this time you got it, three Gutenberg releases in one hour, just about.</p>\n\n\n\n<h3 class=\"wp-block-heading\">What’s in Active Development or Discussed <strong>&nbsp;&nbsp;&nbsp;&nbsp;</strong></h3>\n\n\n\n<p>Yeah. But I sat down on a quest during the holidays&#8230; Or between the holidays or between the year, as we say in Germany, between the year, I sat on a quest to migrate the Gutenberg Times to block theme, and I now take the opportunity to have discussed that with Sarah, who&#8217;s the professional theme developer and builder of tools, to see if I&#8217;m on the right track. So I migrated Gutenberg Times off to a different hosting to Pressable. They&#8217;re very impressive. It&#8217;s a really great hosting company, but that was the first part of it. So now I wanted to scope out what needs to change visibly, and I thought, &#8220;Okay, how can I look at 2024 without changing my front end and without getting all my site door mixed up?&#8221; And I remembered there is this site health and troubleshooting plugin from the WordPress community where you can kind of switch to a different theme for the admin, but the front end stays the same.</p>\n\n\n\n<p>The visitor sees what they see and you don&#8217;t change it. So I enabled the 2024 and the necessary plugins that I needed for content, like the plugin&#8230; The podcast plugin or the blocks that I have from a different plugin. I use the Post Grid block from the Genesis Blocks for a long time. So I needed to enable that. And then I navigated the site like I was the visitor and took notes. I have a list of to-do items, and so I get the scope for that. And now, but how do I execute that? So I was thinking, and I wanted to check with you, Sarah, if that&#8217;s the right approach or if there&#8217;s a better way to do this. So I would create a clone of my site, then install the Create Block Theme plugin, which is in the repository. Then I would activate for real the 2024 theme and then make the changes to the template, create new templates, change the styles of things, and then, what? I export the new theme and then upload it to the live site? Would that be a good place? Good way to do it?</p>\n\n\n\n<p><em>Sarah Norris</em>: Yes, I think so. A really good shout out to the Site Health plugin as well, I never would&#8217;ve thought of it. Yeah, it&#8217;s a good starting point. Yes, I think&#8230; So you&#8217;ve already created a clone of the site, so you&#8217;ve isolated a copy of your site, you&#8217;re working on that as a separate theme and then you&#8217;re going to export that as the new theme in order to activate it on your live site. So yeah, I think that sounds like a perfect workflow. The only other option I was thinking was that&#8230; But I don&#8217;t think in your specific case&#8230; I&#8217;m not sure how much it&#8217;d help, but just to put another option out there, Create Block Theme also has the option to start from scratch, so create a blank theme rather than starting with an existing theme.</p>\n\n\n\n<p>But I definitely would recommend starting with 2024, but I know that some people, especially if you&#8217;re used to designing from scratch or a blank canvas, some people might like to start from a blank theme and you do have that option with Create Block Theme. So yeah, you&#8217;ll get completely empty templates, empty pages, but it will be a block theme starting point, so you don&#8217;t have to figure out how to actually get started.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh, good. Yeah.</p>\n\n\n\n<p><em>Sarah Norris</em>: In the theme technical terms. But yeah, you&#8217;re ready to start inserting things into the page templates and creating new menus. So yeah, probably if you&#8217;ve got an existing site. I guess it depends on the layout, and you could also choose another existing block theme that maybe matches the current classic theme more closely. But yeah, so it depends on your use case. I guess the biggest thing to decide is where your starting point is going to be, whether it&#8217;s an existing theme, a default theme, or the blank theme that comes with Create Block Theme. But yeah, the approach you suggested sounds perfect. Yeah, export a new theme and then you can upload it somewhere. Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Okay. Yeah. All right. Okay. Yeah, so I&#8217;m not missing any step and then be surprised, like, &#8220;Oh no, that doesn&#8217;t work.&#8221; And start from scratch again. No, I think I want to start from an existing theme. So with the step on the Site Health and troubleshooting plugin, you could install&#8230; Or before you enable the troubleshooting mode on the plugin, install other plug themes. So I would think maybe Brian Gardner has some&#8230; Two block themes, the Frost and the Powder. Then Ellen Bauer has two great themes. One is the AinoBlock and the other of the Aino theme, but I think it was an earlier block theme. And then the latest one is MOOC, which is actually for magazine sites, which I am going to review again to see if that matches up. It&#8217;s quite a nice theme. And then my classic theme is Excel from&#8230; And there&#8217;s Norén, who also has quite a few block themes, and is actually an early adopter of block themes. And he has, I think, four or five block themes in there.</p>\n\n\n\n<p>So I&#8217;m not yet quite sure on my decision on the 2024 theme, but Eat Your Own Dog Food is probably&#8230; That&#8217;s where I&#8217;m going to end up. But I like exploring the different themes. And the troubleshooting mode on the plugin, SiteHealth plugin, is definitely helping quite easily because you don&#8217;t have to set up a new site and all that to just test out some of the themes. And of course I could do Playground&#8230; No, I can&#8217;t. Well, there are ideas around Playground to actually create a copy of your site and then you can test things out. But I think that&#8217;s not that far yet. But keep out, watch out for Playground, it can really help you with things.</p>\n\n\n\n<p><em>Sarah Norris</em>: At the moment, with Playground, you could install the Create Block Theme plugin in a Playground instance and then build a theme in that instance and then export it from there. So again, maybe not a hundred percent for your use case, but just to know there&#8217;s another option, yet another option out there. It&#8217;s good for isolating the WordPress instance, and you don&#8217;t have to worry about all the other things that come with it, like hosting and setting up WordPress, obviously all the benefits of Playground. So you can just start from Create Block Theme, basically.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: That&#8217;s so true. So any designer could just use Playground, click on one button on the Playground site and then install the plugin. And then once you&#8230; The Create Block Theme and then create from scratch or use the 2024 one and then export it and use it on any other site. But it goes away, right? Playground goes away again, when you close the browser, right?</p>\n\n\n\n<p><em>Sarah Norris</em>: You can now change the option so it will persist. So yeah, there are other options. So if you&#8217;re looking for these options, they&#8217;re in the top right when you visit the Playground site. But yeah, so not everything disappears now when you close the Playground, you can persist it in the browser, in the browser history.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Wow, that&#8217;s fantastic. You don&#8217;t even need anything, any websites. Yeah, you can just use Playground to persist it. All right, well, this has been such a great show to talk to you about and chat about. Thank you so much, Sarah. So when people want to reach you, where do they find you?</p>\n\n\n\n<p><em>Sarah Norris</em>: I am mikachan or mikachan underscore. Someone else has already taken my username on everywhere, basically, on wordpress.org and Twitter and yeah. Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: All right.</p>\n\n\n\n<p><em>Sarah Norris</em>: Please reach out. Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And I will share the contact information in the show notes so you can follow up with them. Well, this was the first show of 2024. Thank you so much, Sarah, for being here and being my&#8230; Keep me straight on the straight and narrow here. And as always, the show notes will be published on the <a href=\"https://gutenbergtimes.com/podcast/\">gutenbergtimes.com/podcast</a>. This is episode 94, and if you have questions or suggestions or news, just send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. That&#8217;s <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. So thank you all for listening. Hope you all have a great 2024, and until the next time. Bye. Bye, Sarah.</p>\n\n\n\n<p><em>Sarah Norris</em>: Bye.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 08 Jan 2024 11:48:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:119:\"Gutenberg Times: Happy New Year, WordPress Enterprise, Developer Hours and an Interactive Game –  Weekend Edition 279\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=26820\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://gutenbergtimes.com/happy-new-year-wordpress-enterprise-weekend-edition-279/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:21801:\"<p>Howdy, </p>\n\n\n\n<p>Wishing you and yours a prosperous, happy and healthy 2024, with a lot of success, lots of laughter and a lot of love. &nbsp;🤗 </p>\n\n\n\n<p>After two weeks of vacation, it&#8217;s been inspiring to catch up. Many developers, freelancers, and site builders use the downtime around the holidays to work on their side projects or sit down to write about their learnings. What was your side or writing project? I want to know! </p>\n\n\n\n<p>For me, it meant moving the Gutenberg Times to a new hosting space.  I feared it to be difficult going from a very opinionated hosting environment to <a href=\"https://pressable.com/\">Pressable</a>. I was pleasantly surprised how, with the help of customer service, we got it done in a matter of minutes. What took the longest was the propagation of the DNS server changes over the Internet, that took roughly an hour. The main reasons for the switch was that using <a href=\"https://wordpress.github.io/wordpress-playground/\">WordPress Playground</a> with <a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Gutenberg Nightly</a> didn&#8217;t work at the old host. After testing various configuration also on other hosting spaces, I am excited that it worked out of the box on Pressable.  </p>\n\n\n\n<p>Now, let&#8217;s see what others published in the WordPress editor space in the past three weeks. </p>\n\n\n\n<p>Yours, 💕<br /><em>Birgit</em></p>\n\n\n\n<p>PS: The sixth anniversary of the start of Gutenberg Times is coming up this week, and I just wanted to say, it has been a great pleasure curating all the things around Gutenberg for you. So glad you are here with me. </p>\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-word-press-release-information\">Developing Gutenberg and WordPress</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#1-gutenberg-plugin-releases\">Gutenberg plugin releases </a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </a></li></ul></div>\n</div></div>\n\n\n\n\n<p><strong>Updates on Gutenberg Times</strong></p>\n\n\n\n<p>🆕  As mentioned above, you can now use the <a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\"><strong>Gutenberg Nightly</strong></a> plugin built with WordPress Playground and land right in the site editor screen. If you are interested in the blueprint, <a href=\"https://150387569.v2.pressablecdn.com/wp-content/uploads/2020/11/playnightly.json\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">it&#8217;s available here</a></p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-text-align-center wp-element-button\" href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\" target=\"_blank\" rel=\"noreferrer noopener\">Click to launch WordPress Playground</a></div>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p>Anne McCarthy invites you to <a href=\"https://wordpress.org/news/2023/12/leap-into-2024-with-these-site-editor-tools/\"><strong>Leap into 2024 with these&nbsp;Site Editor&nbsp;Tools</strong></a> and gives you a list of features and tools, that might have slipped your mind, or you haven&#8217;t had a chance to explore. This is an excellent run-down of use cases and update on the current state of the site editor.  Learn more about the Command Palette, the Style Book, styling short-cuts, Distraction-free mode, Patterns,  and the List view. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Once you are ready to dive deeper into any of the topics, the WordPress Developer Blog covered quite a few topics this year. <strong>Justin Tadlock</strong> published <strong><a href=\"https://developer.wordpress.org/news/2024/01/05/2023-year-in-review/\">2023 Year in Review</a>,</strong> citing some numbers and listing all the articles in a sorted way. It&#8217;s the best way to catch-up on things you might have missed. And if you don&#8217;t want to miss any more articles on the Developer blog, it&#8217;s time to subscribe  to it. Scroll down on any post of page and enter your email address 🙂 Or <a href=\"https://developer.wordpress.org/news/feed/\">subscribe to the RSS feed</a> with your favorite reader.  </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<h3 class=\"wp-block-heading\" id=\"1-gutenberg-plugin-releases\">Gutenberg plugin releases </h3>\n\n\n\n<p>In his post <a href=\"https://make.wordpress.org/core/2023/12/20/whats-new-in-gutenberg-17-3-20-december/\"><strong>What’s new in Gutenberg 17.3? (20 December</strong></a>),release lead <strong><a href=\"https://twitter.com/madhudollu\">Madhu Dollu</a></strong>, highlighted: </p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/12/20/whats-new-in-gutenberg-17-3-20-december/#global-style-revision-change-summary\">Summary of changes in global styles revision history</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/12/20/whats-new-in-gutenberg-17-3-20-december/#updated-preferences-panel\">Updated preferences panel</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/12/20/whats-new-in-gutenberg-17-3-20-december/#integration-of-gravatar-service-for-social-icons\">Integration of Gravatar Service for Social Icons</a></li>\n</ul>\n\n\n\n<p>In total, the release included 184 merged PRs by 56 contributors, 6 of them contributed for the first time. Congratulations to the team. </p>\n\n\n\n<a href=\"https://make.wordpress.org/core/2023/12/20/whats-new-in-gutenberg-17-3-20-december/\"><img width=\"652\" height=\"315\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/12/Preferences.jpg?resize=652%2C315&ssl=1\" alt=\"\" class=\"wp-image-26829\" /></a>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>On January 3rd, 2024, Gutenberg 17.4 was released. <a href=\"https://make.wordpress.org/core/2024/01/04/whats-new-in-gutenberg-17-4-03-january/\"><strong>What’s new in Gutenberg 17.4? (03 January)</strong></a>. As release lead, I highlighted the following features: </p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2024/01/04/whats-new-in-gutenberg-17-4-03-january/#data-views-list-of-templates-stable\">Data Views: List of Templates stable</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/01/04/whats-new-in-gutenberg-17-4-03-january/#style-revisions-stylebook-integration-and-pagination\">Style revisions: Stylebook integration and pagination</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/01/04/whats-new-in-gutenberg-17-4-03-january/#background-images-size-and-repeat-controls\">Background Images: size and repeat controls.</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/01/04/whats-new-in-gutenberg-17-4-03-january/#list-view-right-click-access-to-block-setting\">List View: Right click access to Block Setting</a></li>\n</ul>\n\n\n\n<p><strong><a href=\"https://twitter.com/mikachan_\">Sarah Norris</a></strong> joined me on the recording for the Gutenberg Changelog episode 94, and it was a lovely chat about the past three Gutenberg plugin releases and the upcoming roadmap for WordPress 6.5.</p>\n\n\n\n<img width=\"652\" height=\"186\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/01/Screenshot-2024-01-06-at-11.34.15.png?resize=652%2C186&ssl=1\" alt=\"\" class=\"wp-image-26916\" />\n\n\n\n<p>We also covered the process of how to migrate a site from a classic theme to a block theme, something, that&#8217;s on my to-do list for the Gutenberg Times in the upcoming weeks. Spoiler:  The plugin <a href=\"https://wordpress.org/plugins/health-check/\">Health Check &amp; Troubleshooting</a> and<a href=\"https://wordpress.org/plugins/create-block-theme/\"> Create a Block Theme</a>  will play big roles. Did you move a site from a classic theme to a block theme? How did you go about it, and what were the greatest challenges? Please let us know in the comments or email me, <a href=\"mailto:pauli@gutenbergtimes.com\">pauli@gutenbergtimes.com</a>. </p>\n\n\n\n<p>The podcast episode will drop in your favorite podcast app over the weekend. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"has-accent-color has-light-background-background-color has-text-color has-background has-link-color wp-elements-b21294d93d10468b5f9c6136fdd74073\">🎙️ Latest episode:  <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-94-state-of-the-word-gutenberg-17-2-17-3-and-17-4-wordpress-6-5-migrating-from-classic-theme-to-block-theme/\">Gutenberg Changelog #94 – State of the Word, Gutenberg 17.2, 17.3 and 17.4, WordPress 6.5, Migrating from Classic Theme to Block Theme</a> with Sarah Norris</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p><strong>HumanMade</strong> and <strong>BigBite</strong> invite you to a <em>WordPress for Enterprise</em> event on <strong>January 18th, 2024</strong> to <a href=\"https://hello.humanmade.com/wordpress-for-enterprise\"><strong>Hear from the global brands doing incredible things with WordPress</strong></a>. It&#8217;ll start at 16:00 UTC and will take until about 21:00 UTC &#8220;Over the course of 6 sessions, we’ll be sharing the stories behind these amazing projects. Expect case studies, deep dives, and behind-the-scenes access on topics such as security, performance, editorial optimization, AI, and how open source is making a difference in the enterprise setting.&#8221; with speaker such as Adam Silverstein, Google, Brian Alvey, WordPress VIP, or Luke Sikkema, The Times, and a few more. </p>\n\n\n\n<a href=\"https://hello.humanmade.com/wordpress-for-enterprise\"><img width=\"652\" height=\"341\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/01/WordPress-Enterprise-1024x535.jpeg?resize=652%2C341&ssl=1\" alt=\"\" class=\"wp-image-26940\" /></a>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In her post <a href=\"https://nomad.blog/2023/12/21/joyful-flow-state/\"><strong>joyful flow state</strong></a>, <strong>Anne McCarthy</strong> shares her creative process and musing about creating block patterns for the <em>Museum of Block Art.</em> &#8220;Using the same software I spend my days toiling over in a creative, unserious way expands my relationship to the work, both energy and perspective wise.&#8221; she wrote. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Munir Kamal</strong> did some research and shares with the world in this post: <a href=\"https://gutenberghub.com/discover-the-best-block-slider-plugins-for-wordpress/\"><strong>Discover the Best Block Slider Plugins for WordPress</strong></a>. A block that has been missing from the core blocks, several plugins offer their variation of the slider. It&#8217;s not always the best user experience and there is a school of web developer who like to dissuade site owners from using sliders and <a href=\"https://shouldiuseacarousel.com/\">even built a slider site</a> with some good reasons why you shouldn&#8217;t use a carousel, which is just another word for slider. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Lifter LMS updated their documentation and showcase their <a href=\"https://lifterlms.com/docs/lifterlms-blocks/\"><strong>Lifter LMS Blocks</strong></a> with videos and instructions on how to use them. Now one of the leading Learning Management systems, built on top of WordPress, enters the next product phase and allows for faster content creation with the already known Block interface built into WordPress. </p>\n\n\n\n<img width=\"652\" height=\"324\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/01/LifterLMS-Courses-Block-Settings.png?resize=652%2C324&ssl=1\" alt=\"\" class=\"wp-image-26931\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\"></h2>\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2022&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test, and Meta team from Jan. 2021 on. Updated by yours truly.  <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\"><em>The index 2020 is here</em></a></p>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p>For the Developer Hours in December, <strong>Nick Diego</strong> and <strong>Ryan Welcher</strong> selected the topic: <a href=\"https://youtu.be/cakxgM2UgbE?si=sGIfKU7kLtpVEifM\"><strong>Modern WordPress development with the wp-scripts package</strong></a>. The recording is available on YouTube, and they shared the mentioned resources as <a href=\"https://docs.google.com/document/d/1GMKxjxdFqwCg3ESC337eNvA6FmaokW9Zlkjm-mhSroU/edit#heading=h.d22cu7925a4z\">a Google Doc. </a> They wrote: &#8220;We explored how the wp-scripts package has become an essential tool for modern WordPress development, such as when building blocks and block themes. If you are looking to streamline your development process, harness the power of build tools, and simplify tasks such as checking for compliance with WordPress coding standards, this session recording is for you.&#8221;</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>You are invited to the January <strong>Developers Hours for January 16th, 2024 at 15:00 UTC (10 am EDT)</strong> to <strong><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/298191982/\">Build your first WordPress block</a></strong>. In this online event, you&#8217;ll be on a walk-through <a href=\"https://developer.wordpress.org/block-editor/getting-started/tutorial/\">the new tutorial in the Block editor handbook</a>, and you will also learn more about the<a href=\"https://github.com/WordPress/block-development-examples\"> block development examples</a> on GitHub. </p>\n\n\n\n<a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/298191982/\"><img width=\"600\" height=\"338\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/01/build-your-first-block.webp?resize=600%2C338&ssl=1\" alt=\"\" class=\"wp-image-26925\" /></a>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Jonathan Desrosiers</strong> informed developers about <a href=\"https://make.wordpress.org/core/2023/12/20/updating-wordpress-to-use-more-modern-versions-of-node-js-npm-2/\">Updating WordPress to use more modern versions of Node.js/npm: Part 2</a>. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his tutorial, <a href=\"https://developer.wordpress.org/news/2023/12/22/extending-plugins-using-custom-slotfills/\"><strong>Extending plugins using custom SlotFills</strong></a>, <strong>Ryan Welcher</strong> explains how you can use custom SlotFills to extend both an internal and external codebase.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Jonathan Bossenger</strong> experimented with the Interactivity API and used  <a href=\"https://jonathanbossenger.com/2023/12/wordpress-as-a-game-development-platform/\"><strong>WordPress as a game development platform.</strong></a> It&#8217;s a fun game, where the logos of other web development platform chase after the WordPress logo. I lasted 25 seconds. How long did you last? &#8220;There is still a lot of work to be done to turn this into a working game, but I’m excited about the possibilities. Stay tuned because I can see this turning into a bit of a series of posts&#8221;. Bossenger wrote. If you would rather not wait so long, you can take a sneak peek at the code via the GitHub repository: <a href=\"https://github.com/jonathanbossenger/wp-interactive-game\">WP-Interactive Game</a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/danielpost\">Daniel Post</a></strong> created a two-part tutorial on <strong><a href=\"https://danielpost.com/part-1-creating-a-wordpress-options-page-using-react-and-gutenberg/\">Creating a WordPress options page using React and Gutenberg</a></strong>. &#8220;This guide is primarily aimed at people who have some WordPress experience but have never tried “the React way”, but it should be useful for anyone trying to get into into modern WordPress development.” It&#8217;s a very thorough tutorial. Post explains all the basic pieces other tutorials might assume prior knowledge of, and steps through almost every line of the code, in PHP as well as in JavaScript, he uses to build this example. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>On YouTube, <strong>Ryan Welcher</strong> posted his latest stream in the Block Developer Cookbook series, <a href=\"https://www.youtube.com/watch?v=dnpy6vGObx4\"><strong>Block Developer Cookbook Recipe: Command Palette</strong></a>. &#8220;In this flavorful cooking demonstration, initially aired on November 16, we whip up a special culinary command for the all-new Command Palette. Our goal? To deftly toggle the custom fields meta box in the post editor, just like a chef skillfully adjusting the seasoning levels in a signature dish. Let&#8217;s embark on this culinary coding adventure together!&#8221; he wrote. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><a href=\"https://twitter.com/Ny_The_Creator\"><strong>Nyasha Green</strong></a> just published her <a href=\"https://www.linkedin.com/learning/wordpress-introduction-to-custom-block-building/learning-custom-block-building-in-wordpress\"><strong>WordPress: Introduction to Custom Block Building</strong></a> on the LinkedIn Learning Network. The course starts with a brief introduction to the Block editor and how to add blocks to a post&#8217;s canvas and explain block attributes. In the second module you&#8217;ll learn to set up your local environment with LocalWP, 2021 default theme and Node.js. In the chapter Custom Blocks without code, Green explains how to create patterns and synched patterns, and you&#8217;ll learn about the Pattern Directory. The fourth chapter, Green, covers Custom Block Building with code, and introduces the learner to the <a href=\"https://developer.wordpress.org/block-editor/reference-guides/packages/packages-create-block/\">create-block scaffolding tool</a>. The topic covers creating a card with three blocks and some InnerBlocks rules and how to modify the styles for the custom block. It&#8217;s a great starting point. The LinkedIn Learning space is a subscription-based learning environment, but you can use a free trial for the first month. </p>\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<p class=\"has-text-align-right has-small-font-size\"><em>Questions? Suggestions? Ideas? Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or send me a message on WordPress Slack or Twitter @bph</em>. </p>\n\n\n\n<p class=\"has-text-align-right has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p>Featured Image:</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too, and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 06 Jan 2024 15:15:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:11:\"\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"HeroPress: Is Open Source Good For WordPress? See Who Says Yes!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://heropress.com/?p=6354\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:167:\"https://heropress.com/is-open-source-good-for-wordpress-see-who-says-yes/#utm_source=rss&utm_medium=rss&utm_campaign=is-open-source-good-for-wordpress-see-who-says-yes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:11290:\"<img width=\"1024\" height=\"768\" src=\"https://heropress.com/wp-content/uploads/2024/01/165659692de83cc02.32224370-1024x768.jpeg\" class=\"attachment-large size-large wp-post-image\" alt=\"A white cat sits on a wooden balcony porch.\" /><div class=\"kb-row-layout-wrap kb-row-layout-id6354_6f1157-a8 alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top kb-theme-content-width\">\n\n<div class=\"wp-block-kadence-column kadence-column6354_f14888-a7 inner-column-1\"><div class=\"kt-inside-inner-col\">\n<h2 class=\"kt-adv-heading6354_a667d9-c2 wp-block-kadence-advancedheading\"><a href=\"https://heropress.com/\">HeroPress.com</a> &#8211; <a href=\"https://heropress.com/essays/the-good-and-the-bad-of-open-source-wordpress/\">The good and the bad of open source WordPress</a></h2>\n\n\n\n\n\n<div class=\"wp-block-image is-style-default\">\n<a href=\"https://heropress.com/essays/the-good-and-the-bad-of-open-source-wordpress/\"><img width=\"300\" height=\"300\" src=\"https://heropress.com/wp-content/uploads/2022/10/lesley_sim-300x300.jpg\" alt=\"Lesley Sim\" class=\"wp-image-4881\" /></a></div>\n\n\n\n<p>Lesley Sim is a WordPress product owner, and has navigated the waters of whether to offer a free version and has struggled with the idea of whether Open Source is even a good idea.</p>\n\n\n\n<p><em>[WordPress] helps so many people grow their businesses, communicate, and simply share their thoughts with everyone on the internet. There is no such thing as only good without the bad. And I’m glad WordPress exists.</em></p>\n\n\n\n<p>Lesley&#8217;s essay is <a href=\"https://heropress.com/essays/the-good-and-the-bad-of-open-source-wordpress/\">available</a> on <a href=\"https://heropress.com\">HeroPress.com</a>.</p>\n</div></div>\n\n</div></div>\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-6354_2bc5ad-a5\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n<div class=\"kb-row-layout-wrap kb-row-layout-id6354_e8d5d7-78 alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top kb-theme-content-width\">\n\n<div class=\"wp-block-kadence-column kadence-column6354_fac933-6c inner-column-1\"><div class=\"kt-inside-inner-col\">\n<h2 class=\"kt-adv-heading6354_848a6f-1d wp-block-kadence-advancedheading\"><a href=\"https://hallwaychats.com\">WPPhotos.Info</a></h2>\n\n\n\n\n\n<div class=\"wp-block-image\">\n<a href=\"https://wpphotos.info/ganjala-range/\"><img width=\"300\" height=\"169\" src=\"https://heropress.com/wp-content/uploads/2024/01/3665812bf57207d5.16252734-scaled-1-300x169.jpg\" alt=\"Langtang Trek, standing above the clouds looking at the mountains with a snowy summit\" class=\"wp-image-6356\" /></a></div>\n\n\n\n<p>This week&#8217;s <a href=\"https://wpphotos.info\">WPPhotos Info</a> is called &#8220;<a href=\"https://wpphotos.info/ganjala-range/\">The snowy peaks</a>&#8220;. </p>\n\n\n\n<p>Amazing view captured by <a href=\"https://wordpress.org/photos/author/trinisha/\">Trinisha</a>. This is Ganjala Range seen from Kyanjin Ri Peak (4773m/15655 ft).</p>\n\n\n\n<p><a href=\"https://wpphotos.info/ganjala-range/\">Read more of the story at WPPhotos.info!</a></p>\n</div></div>\n\n</div></div>\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-6354_250a5b-91\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n<div class=\"kb-row-layout-wrap kb-row-layout-id6354_665474-78 alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top kb-theme-content-width\">\n\n<div class=\"wp-block-kadence-column kadence-column6354_ac2882-92 inner-column-1\"><div class=\"kt-inside-inner-col\">\n<h2 class=\"kt-adv-heading6354_3db9b3-5f wp-block-kadence-advancedheading\"><a href=\"https://wppodcasts.com\">WP Podcasts</a></h2>\n\n\n\n\n\n\n<a href=\"https://wppodcasts.com\"><img src=\"https://heropressnetwork.com/wp-content/uploads/2024/01/pocket_casts_single_315.png\" alt=\"Pocket Casts image\" class=\"wp-image-4316\" /></a>\n\n\n\n\n<p>There were <em>fourteen</em> WordPress podcast episodes released this week!</p>\n\n\n\n<ul>\n<li><a href=\"https://potencia.pro/273-wordpress-no-esta-pensando-actualmente-para-webs-grandes/#new_tab\">Potencia Pro 273: ¿WordPress no está pensando actualmente para webs grandes?</a> from <a href=\"https://wppodcasts.com/podcast/potencia-pro-wordpress-y-cozas/\">Potencia Pro, WordPress y cozas</a></li>\n\n\n\n<li><a href=\"https://remkusdevries.com/podcast/understanding-tech-changes-and-agency-evolution-with-steve-zehngut/#new_tab\">Understanding Tech Changes and Agency Evolution with Steve Zehngut</a> from <a href=\"https://wppodcasts.com/podcast/within-wordpress/\">Within WordPress</a></li>\n\n\n\n<li><a href=\"https://rethink.fm/podcast/episode-37-stakeholder-relationships-and-ux-research-operations-with-jessica-ivins/#new_tab\">Episode 37: Stakeholder Relationships and UX Research Operations with Jessica Ivins</a> from <a href=\"https://wppodcasts.com/podcast/rethink-fm/\">rethink.fm</a></li>\n\n\n\n<li><a href=\"https://unbilleteachattanooga.com/episodio-243/#new_tab\">Episodio 243: Más de 100 proyectos en un año</a> from <a href=\"https://wppodcasts.com/podcast/un-billete-a-chattanooga/\">Un billete a Chattanooga</a></li>\n\n\n\n<li><a href=\"https://www.wppodcast.cat/podcast/obrint-pas-al-2024/#new_tab\">9. Obrint pas al 2024</a> from <a href=\"https://wppodcasts.com/podcast/wordpress-podcast-catala/\">WordPress Pòdcast (català)</a></li>\n</ul>\n\n\n\n<p>There are new episodes every single day, so be sure to stop by <a href=\"https://wppodcasts.com\">WPPodcasts.com</a> and search for things that interest you!</p>\n</div></div>\n\n</div></div>\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-6354_a8a32f-bf\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n<div class=\"kb-row-layout-wrap kb-row-layout-id6354_b38388-00 alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top kb-theme-content-width\">\n\n<div class=\"wp-block-kadence-column kadence-column6354_c96c47-b7 inner-column-1\"><div class=\"kt-inside-inner-col\">\n<h2 id=\"wpphotos\" class=\"kt-adv-heading6354_5fa872-f7 wp-block-kadence-advancedheading\"><a href=\"https://wordpress.org/photos\">WP Photos</a></h2>\n\n\n\n<p>Here are some of the great photos submitted to the <a href=\"https://wordpress.org/photos\">WPPhotos</a> project this week!</p>\n\n\n\n\n<a href=\"https://wordpress.org/photos/photo/2056596f50/\"><img width=\"570\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/2024/01/2056596f5029bef23.62087568-570x1024.jpg\" alt=\"Toy truck for kids.\" class=\"wp-image-6358\" /></a><a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/2056596f50/\">photo</a> by <a href=\"https://wordpress.org/photos/author/balub/\">Balu B</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.\n\n\n\n<a href=\"https://wordpress.org/photos/photo/4186596d78/\"><img width=\"1024\" height=\"473\" src=\"https://heropress.com/wp-content/uploads/2024/01/4186596d78833c5c9.61199387-1024x473.jpg\" alt=\"Jatayu rock sculpture - the world’s largest bird sculpture in Jatayu Earth Center at Chadayamangalam in Kollam district of Kerala, India.\" class=\"wp-image-6359\" /></a><a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/4186596d78/\">photo</a> by <a href=\"https://wordpress.org/photos/author/balub/\">Balu B</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.\n\n\n\n<a href=\"https://wordpress.org/photos/photo/4516597a4a/\"><img width=\"1024\" height=\"768\" src=\"https://heropress.com/wp-content/uploads/2024/01/4516597a4a668dc30.03720898-1024x768.jpeg\" alt=\"A lady enjoying the park, basking in beautiful sunlight, surrounded by vibrant stones!\" class=\"wp-image-6357\" /></a><a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/4516597a4a/\">photo</a> by <a href=\"https://wordpress.org/photos/author/bhuwanroka/\">Bhuwan Bdr. Rokaha</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.\n\n\n\n<a href=\"https://wordpress.org/photos/photo/5236596f3e/\"><img width=\"567\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/2024/01/5236596f3ee9b6317.37447566-567x1024.jpg\" alt=\"Thirteen Kannara Bridge - The Pathimoonnu Kannara Bridge, also called the \" /></a><a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/5236596f3e/\">photo</a> by <a href=\"https://wordpress.org/photos/author/balub/\">Balu B</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.\n\n\n\n<a href=\"https://wordpress.org/photos/photo/27765965bc/\"><img width=\"1024\" height=\"683\" src=\"https://heropress.com/wp-content/uploads/2024/01/27765965bc4a79d04.54687103-1024x683.jpg\" alt=\"Frost covered fence post with clearly visible ice crystals, sky as a backdrop tinged with sunrise tones\" class=\"wp-image-6360\" /></a><a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/27765965bc/\">photo</a> by <a href=\"https://wordpress.org/photos/author/smhsmh/\">Sadie-Michaela Harris</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.\n\n\n\n<a href=\"https://wordpress.org/photos/photo/62465965c3/\"><img width=\"1024\" height=\"683\" src=\"https://heropress.com/wp-content/uploads/2024/01/62465965c314f7ed4.60537373-1024x683.jpg\" alt=\"Female Blackbird standing on the edge of a frozen water filled wooden half barrel\" class=\"wp-image-6361\" /></a><a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/62465965c3/\">photo</a> by <a href=\"https://wordpress.org/photos/author/smhsmh/\">Sadie-Michaela Harris</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.\n\n\n\n\n<p>Be sure to check out the <a href=\"https://wordpress.org/photos/\">hundreds of other great photos</a>!</p>\n</div></div>\n\n</div></div>\n\n\n<p></p>\n\n\n\n<p>The header photo for this post is a <a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/165659692d/\">photo</a> by <a href=\"https://wordpress.org/photos/author/mahfuznafi/\">mahfuznafi</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.</p>\n\n\n\n\n\n\n<p>That&#8217;s it for this week! If you&#8217;d like to get this post in your email every week, <a href=\"https://heropressnetwork.com/newsletter\">make sure you sign up</a>!</p>\n\n<p>The post <a href=\"https://heropress.com/is-open-source-good-for-wordpress-see-who-says-yes/\">Is Open Source Good For WordPress? See Who Says Yes!</a> appeared first on <a href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 05 Jan 2024 18:25:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"WordPress.org blog: The Month in WordPress – December 2023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=16680\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/news/2024/01/the-month-in-wordpress-december-2023/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9933:\"<p>As 2023 came to a close, WordPress bid farewell with the much-anticipated annual State of the Word and the 6.5 roadmap, among other exciting updates.</p>\n\n\n\n<p>Read on to learn more about the community’s end-of-year celebrations and catch a sneak peek of what’s in store for the year ahead.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Highlights from State of the Word</h2>\n\n\n\n<p>On December 11, WordPress co-founder Matt Mullenweg delivered his annual <strong><a href=\"https://wordpress.org/state-of-the-word/\">State of the Word</a> keynote in Madrid, Spain</strong>, marking the first international edition of the event. Nearly 200 WordPress enthusiasts and tech industry leaders gathered in person to hear what’s next for WordPress—with a large audience joining online or from one of the 47 watch parties held across 18 countries.</p>\n\n\n\n<p>The keynote <a href=\"https://wordpress.org/news/2023/12/state-of-the-word-2023-recap/\">highlighted</a> last year’s milestones and showcased compelling demos, providing a glimpse into the upcoming developments for the Site Editor, Collaboration phase, and Admin redesign. Matt also introduced 2024’s focus on <a href=\"https://wordpress.org/data-liberation/\">Data Liberation</a>, aiming to unlock digital barriers and frictionless migrations into WordPress for a more open web.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>The event concluded with a <a href=\"https://www.youtube.com/watch?v=S01uBD2pyQY\">Q&amp;A session</a> and <a href=\"https://make.wordpress.org/project/2023/12/12/overflow-questions-from-state-of-the-word-2023/\">this follow-up post</a>.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Roadmap to WordPress 6.5</h2>\n\n\n\n<p>WordPress 6.5 is <a href=\"https://make.wordpress.org/core/6-5/\">scheduled</a> for release on <strong>March 26, 2024</strong>. This major release is set to introduce a new Font Library for easy global font management, support for Appearance Tools in Classic Themes, Data Views for templates and patterns, and more robust revisions across the editing experience, among other highlights.</p>\n\n\n\n<p>6.5 will also include new APIs like Interactivity, Custom Fields, and Block Binding that expand block capabilities and underpin features like Synced Pattern Overrides.</p>\n\n\n\n<p>Learn more about the features planned for WordPress 6.5 in <a href=\"https://make.wordpress.org/core/2023/12/07/roadmap-to-6-5/\">this roadmap post</a>.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Don’t wait for the next release to optimize your creative workflows with <a href=\"https://wordpress.org/news/2023/12/leap-into-2024-with-these-site-editor-tools/\">these powerful Site Editor tools</a>.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">New in the Gutenberg plugin</h2>\n\n\n\n<p>Two new versions of Gutenberg shipped in December:</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/12/06/whats-new-in-gutenberg-17-2-6-december/\"><strong>Gutenberg 17.2</strong></a> introduced improvements to the site editing experience, including the ability to drag and drop blocks to the top and bottom of documents and sticky table headers. The update also enhanced the Interactivity API docs and addressed numerous bug fixes.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/12/20/whats-new-in-gutenberg-17-3-20-december/\"><strong>Gutenberg 17.3</strong></a> featured a summary of changes in the global styles revision history, an updated preferences panel, and a new social icon for the Gravatar service, along with the ongoing development of Phase 3 features.</li>\n</ul>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<a class=\"wp-block-jetpack-podcast-player jetpack-podcast-player__direct-link\" href=\"https://wordpress.org/news/2023/10/episode-64-patterns-in-wordpress/\">https://wordpress.org/news/2023/10/episode-64-patterns-in-wordpress/</a>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Team updates</h2>\n\n\n\n<ul>\n<li>Openverse <a href=\"https://make.wordpress.org/openverse/2023/12/11/introducing-enhanced-content-safety-features-on-openverse/\">introduced new features to filter sensitive content</a>, aiming for a more accessible and safer browsing experience. This update marks the beginning of a significant initiative to enhance content safety tools.</li>\n\n\n\n<li>Matrix contributors <a href=\"https://make.wordpress.org/project/2023/12/12/update-on-matrix-migration-pausing-the-transition/\">announced</a> the decision to pause the Making WordPress Slack migration to Matrix and the factors contributing to it.</li>\n\n\n\n<li>The <a href=\"https://make.wordpress.org/meta/2023/12/15/developer-resources-gets-a-refresh/\">redesign of the Developer Resources section</a> went live last month.</li>\n\n\n\n<li>Are you searching for events in your local community? Explore the recently launched <a href=\"https://make.wordpress.org/community/2023/12/13/announcing-the-new-wordpress-events-page/\">WordPress.org Events page</a>—your new central hub for discovering upcoming events or applying to organize one.</li>\n\n\n\n<li>In 2023, WordPress significantly <a href=\"https://make.wordpress.org/core/2023/12/19/wordpress-performance-impact-on-core-web-vitals-in-2023/\">improved Core Web Vitals (CWV) across sites</a>. The overall passing rates went up from 28.31% to 36.44% on mobile and from 32.55% to 40.80% on desktop, making both WordPress and the whole web perform better.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/12/22/call-to-action-2024-major-releases-call-for-volunteers/\">Volunteers are needed</a> for 2024’s WordPress major releases. If you’re interested, now’s the time to get involved!</li>\n\n\n\n<li>Check out all the community <a href=\"https://make.wordpress.org/project/2023/12/22/wordpress-end-of-year-celebrations/\">achievements and contributions</a> that moved the WordPress project closer to its goals in 2023.</li>\n</ul>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<a class=\"wp-block-jetpack-podcast-player jetpack-podcast-player__direct-link\" href=\"https://wordpress.org/news/2023/10/episode-64-patterns-in-wordpress/\">https://wordpress.org/news/2023/10/episode-64-patterns-in-wordpress/</a>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Requests for feedback &amp; testing</h2>\n\n\n\n<ul>\n<li>Complete the <a href=\"https://make.wordpress.org/community/2023/11/17/announcing-the-2023-annual-meetup-survey/\">2023 Annual Meetup Survey</a> before January 14, 2024, and help strengthen WordPress meetups in the future.</li>\n</ul>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress events</h2>\n\n\n\n<ul>\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1f9-1f1fc.png\" alt=\"🇹🇼\" class=\"wp-smiley\" /> WordCamp Asia has opened <a href=\"https://asia.wordcamp.org/2024/contributor-day-registration/\">registrations for its Contributor Day</a>. The conference will be held in Taipei, Taiwan, on March 7-9, 2024.</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ea-1f1fa.png\" alt=\"🇪🇺\" class=\"wp-smiley\" /> WordCamp Europe’s <a href=\"https://europe.wordcamp.org/2024/speakers/call-for-speakers/\">call for speakers</a> is open until January 15, 2024. Don’t miss the chance to be part of this event by either submitting your speaking proposals or <a href=\"https://europe.wordcamp.org/2024/sponsors/call-for-sponsors/\">supporting it as a sponsor</a>.</li>\n\n\n\n<li>Mark your calendars! <a href=\"https://us.wordcamp.org/2024/\">WordCamp US 2024</a> is headed to Portland, Oregon, from September 17 to 20, as revealed during the State of the Word.</li>\n\n\n\n<li>Check out these WordPress events happening soon:\n<ul>\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1f3.png\" alt=\"🇮🇳\" class=\"wp-smiley\" /> <a href=\"https://events.wordpress.org/kolkata/2024/careercamp/\">Kolkata CareerCamp</a>, India on January 6, 2024</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1f3-1f1f5.png\" alt=\"🇳🇵\" class=\"wp-smiley\" /> <a href=\"https://nepal.wordcamp.org/2024/\">WordCamp Nepal</a> on January 12-13, 2024</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ea-1f1f8.png\" alt=\"🇪🇸\" class=\"wp-smiley\" /> <a href=\"https://zaragoza.wordcamp.org/2024/\">WordCamp Zaragoza</a>, Spain on January 19-20, 2024</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1e9.png\" alt=\"🇮🇩\" class=\"wp-smiley\" /> <a href=\"https://events.wordpress.org/jakarta/2024/web-challenge/\">WordPress Web Challenge</a>, Indonesia on January 27, 2024</li>\n</ul>\n</li>\n</ul>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p><em><strong>Have a story we should include in the next issue of The Month in WordPress? Fill out </strong></em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><strong><em>this quick form</em></strong></a><em><strong> to let us know.</strong></em></p>\n\n\n\n<p><em>Thank you to <a href=\"https://profiles.wordpress.org/bernard0omnisend/\">Bernard Meyer</a>, <a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a>, and <a href=\"https://profiles.wordpress.org/laurlittle/\">Lauren Stein</a></em> <em>for contributing to this edition of The Month in WordPress.</em></p>\n\n\n\n<div class=\"wp-block-group is-layout-constrained wp-block-group-is-layout-constrained\">\n<h3 class=\"wp-block-heading\">Subscribe to WordPress News</h3>\n\n\n\n<p>Join other subscribers and receive WordPress news directly in your inbox.</p>\n\n\n<div class=\"wp-block-jetpack-subscriptions__supports-newline is-style-split wp-block-jetpack-subscriptions\">\n		<div>\n			<div>\n				<div>\n					<p>\n						<a href=\"https://wordpress.org/news/?post_type=post&p=16680\">Subscribe</a>\n					</p>\n				</div>\n			</div>\n		</div>\n	</div></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 05 Jan 2024 10:10:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Reyes Martínez\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"Do The Woo Community: Make. WordPress. Happy.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=78771\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"https://dothewoo.io/make-wordpress-happy/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:353:\"<p>Starting 2024 on an optimistic note as I noticed more of my fellow WordPressers feeling more optimistic and happy about WordPress.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/make-wordpress-happy/\">Make. WordPress. Happy.</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 05 Jan 2024 09:31:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"Matt: Fred Again Tiny Desk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=110139\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://ma.tt/2024/01/fred-again-tiny-desk/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:140:\"<p>You think you&#8217;ve seen Tiny Desk performances, but you haven&#8217;t seen this.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 05 Jan 2024 06:50:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Matt: On Mastodon\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=110133\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://ma.tt/2024/01/on-mastodon/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:177:\"<p><a href=\"https://mastodon.social/@photomatt\" rel=\"me\">This is me on Mastodon</a>, it&#8217;s really me, also <a href=\"https://gravatar.com/matt\">added to my Gravatar</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 05 Jan 2024 02:31:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"Akismet: What is a Honeypot in Spam Protection and Cybersecurity?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://akismet.com/?p=283657\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"https://akismet.com/blog/what-is-a-honeypot/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:21927:\"<p>If your enterprise handles large volumes of sensitive content, cybersecurity should be a top priority. You likely already have measures in place to block hacking attempts. But did you know that you can also create honeypots to further protect your&nbsp;business?</p>\n\n\n<p>What is a honeypot? In a nutshell, this is a web app or system that mimics your company’s network. It’s designed to lure in hackers so that the security team can study their tactics and identify weak areas in your organization.&nbsp;</p>\n\n\n<p>In this post, we’ll take a closer look at how honeypots work and the different ways you can implement them. We’ll also discuss the benefits of honeypots in cybersecurity and spam protection. So, let’s dive right&nbsp;in!</p>\n\n\n<span id=\"more-283657\"></span>\n\n\n<h2 class=\"wp-block-heading\">What are&nbsp;honeypots?</h2>\n\n<p>Let’s start by answering the most important question: what is a&nbsp;honeypot?</p>\n\n\n<p>Essentially, a honeypot is a network that’s designed to serve as a decoy for hackers. It’s made to appear as part of an organization’s IT infrastructure, but in fact, it’s completely isolated from it.&nbsp;</p>\n\n\n\n<p>The primary purpose of honeypots is to attract cyber threats. This way, security experts can get a close look at the attackers’ tactics and behavior in a safe and controlled environment. Using this information, they can then enhance the overall security of the actual infrastructure.&nbsp;&nbsp;</p>\n\n\n<p>This technique is usually deployed by enterprises that handle large amounts of data. By being proactive, your organization can identify vulnerabilities in its network before they’re discovered by hackers. This ultimately helps prevent serious hacking events that can negatively impact your revenue or damage your&nbsp;reputation.</p>\n\n<p>Plus, creating a honeypot can help you test the effectiveness of pre&#8209;existing security measures against cyber threats. Your enterprise can then use these findings to fortify its&nbsp;system.</p>\n\n<h2 class=\"wp-block-heading\">The different types of&nbsp;honeypots</h2>\n\n<p>Now that we’ve answered the basic question on what a honeypot is, let’s look at the different types of decoys you can&nbsp;use:</p>\n\n\n<h3 class=\"wp-block-heading\">1. Form honeypot&nbsp;</h3>\n\n\n\n<p>Bots will often fill out forms on your site to send spam or attempt to inject malicious code into your site. No, that fishy-sounding company didn’t really find “30 SEO errors on your site!” They used a bot to send spam to thousands of site owners hoping to catch someone off guard.&nbsp;</p>\n\n\n\n<p>Since bots typically fill out any available field, you can trick them into identifying themselves by essentially creating an invisible field that the bot can read in the code, but that won’t appear to users. If one fills it out, you know it’s a fake submission.&nbsp;</p>\n\n\n<p>While this is a decent way to catch spam, it’s not without its faults as bots can increasingly decipher these traps and work around them.&nbsp;</p>\n\n<h3 class=\"wp-block-heading\">2. Email or spam&nbsp;trap</h3>\n\n<p>As you might have guessed, email or spam trap honeypots are designed to catch malicious emails that are sent to your organization. The way they work is quite&nbsp;simple.</p>\n\n<p>A spam trap honeypot would consist of “fake” email addresses linked to your organization. You might place these contact details on your website or any other online platform to lure in&nbsp;spammers.</p>\n\n<p>Your security team can then review and examine any unsolicited emails that come into the honeypot. This will help them design effective filters and spam protection measures for the “real” email addresses, thus protecting employees against phishing attacks and other malicious&nbsp;activities.</p>\n\n\n<p>To avoid any confusion, we’d like to mention that you may have also heard about these in the context of email marketing or email deliverability. That’s because email <a href=\"https://www.mailgun.com/blog/deliverability/spam-traps/#subchapter-1\">spam trap honeypots</a> are also used by blocklists and inbox service providers to catch mass email senders who acquire email lists via unauthorized methods. However, this isn’t something the cybersecurity division of your organization typically needs to worry about.&nbsp;&nbsp;</p>\n\n\n<h3 class=\"wp-block-heading\">3. Spider&nbsp;honeypot</h3>\n\n\n<p>You already know about web crawlers or “spiders” —&nbsp;the bots that scan the contents of a website. Google uses these web crawlers to index the pages of your website and display them in relevant search results.&nbsp;</p>\n\n\n<p>But web crawlers are also used by hackers to discover vulnerabilities in websites. Spider honeypots are therefore designed to attract these bots to identify weaknesses in a web application or&nbsp;website.</p>\n\n\n<p>By simulating your web application and inviting these crawlers to do their work, you can study their behavior as they try to find a way in. This will help your team identify any specific attack patterns or common exploits, and take the necessary measures to protect your enterprise against web-based attacks.&nbsp;</p>\n\n\n<h3 class=\"wp-block-heading\">4. Malware&nbsp;honeypot</h3>\n\n\n<p>If your organization has a malware problem, this type of honeypot can help you get to the bottom of it.&nbsp;</p>\n\n\n\n<p>Malware honeypots are designed to emulate systems or services that are usually affected by malicious software. Your security team can use this system to study the origins and workings of the malware in a controlled environment.&nbsp;</p>\n\n\n<p>This will enable them to implement effective measures against this threat. For example, they might develop a sturdier and more intelligent antivirus program for your&nbsp;enterprise.</p>\n\n<h3 class=\"wp-block-heading\">5. Decoy&nbsp;database</h3>\n\n<p>One of the most common threats for enterprises is a data breach. If your company stores sensitive information, like customer details and financial records, it could be an attractive target among&nbsp;hackers.</p>\n\n\n<p>A decoy database is a type of honeypot that entices attackers who are looking to steal your data. It mimics your organization’s database but, of course, the information it contains would be fake.&nbsp;</p>\n\n\n<p>This type of honeypot can help you spot vulnerabilities in your database and study the techniques hackers use to access your data. This way, you’ll be able to implement stricter access controls in your database and develop more effective protection&nbsp;solutions.</p>\n\n<h3 class=\"wp-block-heading\">6. Client&nbsp;honeypot</h3>\n\n<p>Client honeypots are another popular decoy. These mimic client&#8209;side applications and personal&nbsp;devices.</p>\n\n<p>For example, you might set up a client honeypot to find security flaws in your company’s applications and software. This can be particularly useful if you have a large number of employees or customers using an online app. For instance, you might create a client honeypot for a learning management system (LMS) or an ecommerce app for loyal&nbsp;shoppers.</p>\n\n\n<p>A client honeypot serves as a trap for hackers that target enterprise software or web applications. Plus, it enables you to find better ways to protect your users from potential exploits.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">7. Honeynet</h3>\n\n\n\n<p>This is possibly the most advanced decoy you could opt for. Basically, a honeynet is a large network of interconnected honeypots. It’s meant to emulate a complete enterprise network.&nbsp;</p>\n\n\n\n<p>Honeynets can be very useful in studying sophisticated cyberattacks and testing your company’s overall security. By implementing this strategy, your security team can gain a deeper understanding of the evolving techniques used by cyber criminals.&nbsp;</p>\n\n\n<p>These insights will then help them develop a comprehensive security strategy for your&nbsp;enterprise.</p>\n\n<h2 class=\"wp-block-heading\">The different tiers of honeypot&nbsp;deployment</h2>\n\n<p>Each type of honeypot that we outlined above can be implemented on different levels. With this in mind, let’s take a look at the main tiers of honeypot&nbsp;deployment.</p>\n\n<h3 class=\"wp-block-heading\">1. Pure&nbsp;honeypots</h3>\n\n<p>Pure honeypots are designed to appear as real as possible, so they can attract highly skilled attackers. They are a form of high&#8209;interaction honeypots (which we’ll be looking at more closely in a minute) and are deployed with minimal interaction&nbsp;capabilities.</p>\n\n<p>Security professionals use pure honeypots to gather in&#8209;depth information about the strategies employed by sophisticated attackers. In particular, they&#8217;re concerned with tactics that can affect an organization’s entire system. For example, they can gain valuable insights into previously unknown vulnerabilities in your&nbsp;network.</p>\n\n\n<h3 class=\"wp-block-heading\">2. Low-interaction</h3>\n\n\n\n<p>Low-interaction honeypots have limited interaction capabilities and only emulate specific parts of a real system. This makes them easier to deploy and manage compared to high-interaction honeypots. As such, they’re mostly ideal for analyzing common attacks.&nbsp;</p>\n\n\n\n<p>Low-interaction honeypots simulate services and applications at a basic level. This enables your security team to capture basic data without exposing your real (and potentially vulnerable) systems.&nbsp;</p>\n\n\n\n<p>While these honeypots do not provide the same level of depth as more advanced systems, they can be quite effective in detecting known threats and preventing attacks.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">3. Mid-interaction</h3>\n\n\n\n<p>Mid-interaction honeypots offer a moderate level of realism and interaction. They’re built to emulate different services and applications, providing more “exploit opportunities” for attackers.&nbsp;</p>\n\n\n<p>With these honeypots, your security team can observe malicious activities in a relatively realistic setting. This enables them to collect more detailed data and fine&#8209;tune your company’s existing security&nbsp;measures.</p>\n\n\n<h3 class=\"wp-block-heading\">4. High-interaction</h3>\n\n\n\n<p>High-interaction honeypots provide the most authentic simulation of real-world systems and applications. Unlike low or mid-interaction honeypots, they allow attackers to interact with a full-fledged, genuine environment.&nbsp;</p>\n\n\n\n<p>These honeypots are set up with real operating systems and applications. This makes them highly attractive to attackers seeking valuable targets.&nbsp;</p>\n\n\n<p>As you can probably tell, these high&#8209;interaction honeypots carry a higher risk as they use a legitimate environment, but they offer unparalleled insights into advanced attacks. Plus, they enable your team to study zero&#8209;day vulnerabilities (more on this in a minute) and develop effective strategies to counter these sophisticated&nbsp;threats.</p>\n\n<h2 class=\"wp-block-heading\">The benefits of honeypots in&nbsp;cybersecurity</h2>\n\n\n<p>We’ve already touched upon the benefits of honeypots for your company’s cybersecurity. But let’s take a closer look at how they can help protect your organization.&nbsp;</p>\n\n\n<h3 class=\"wp-block-heading\">1. Identifying zero&#8209;day exploits and&nbsp;vulnerabilities</h3>\n\n\n<p>A zero-day vulnerability is a flaw in software that is discovered by hackers before developers become aware of it. Therefore, attackers that target zero-day exploits do not give organizations or developers time to patch these vulnerabilities.&nbsp;</p>\n\n\n<p>As we have seen, honeypots (particularly high&#8209;interaction ones) create a controlled environment where attackers engage with authentic applications. By analyzing the tactics used in these attacks, you can uncover unknown vulnerabilities in your company’s software. This will enable you to develop patches proactively or reach out to the software’s developers for an immediate&nbsp;fix.</p>\n\n<h3 class=\"wp-block-heading\">2. Early threat detection and&nbsp;identification</h3>\n\n\n<p>As we mentioned earlier, honeypots are completely isolated from the real system. This means that any attack on the simulated environment will not affect your company’s operations.&nbsp;</p>\n\n\n\n<p>Additionally, since they have no legitimate purpose, any activity in these environments will immediately spark suspicion. This means that your security team can detect threats at an early stage and respond to them swiftly.&nbsp;</p>\n\n\n<p>Early threat detection can prevent attacks from spreading to other parts of the&nbsp;network.</p>\n\n<h3 class=\"wp-block-heading\">3. Real&#8209;time attack monitoring and&nbsp;visualization</h3>\n\n\n<p>Honeypots also provide real-time attack monitoring. This means security professionals can observe the hackers&#8217; movements and activities as they happen.&nbsp;</p>\n\n\n\n<p>You might use real-time visualization tools like graphs and heatmaps so that it’s easier to identify attack patterns and targets. Plus, these visualization tools can enable you to comprehend the scope and impact of the threats. This way, you can ensure that you implement a solution that encompasses all possible vulnerabilities.&nbsp;</p>\n\n\n<h3 class=\"wp-block-heading\">4. Intruder profiling and&nbsp;attribution</h3>\n\n<p>When implemented effectively, honeypots can tell you a lot about the individuals behind the attack. This includes information about the attackers&#8217; methods, preferred targets, and geographic&nbsp;locations.</p>\n\n<p>Your security team can then use this data to create intruder profiles. Such information is essential for understanding the motives behind the&nbsp;attacks.</p>\n\n<p>If you have accurate intruder profiles, you can collaborate with law enforcement agencies or other security organizations to track down cyber&nbsp;criminals.</p>\n\n<h2 class=\"wp-block-heading\">The benefits of honeypots in spam&nbsp;detection</h2>\n\n<p>Honeypots can also be an effective measure in identifying and blocking spam. Here are a few different ways to use them for spam&nbsp;detection:</p>\n\n<h3 class=\"wp-block-heading\">1. Combating contact form&nbsp;spam</h3>\n\n\n<p>Contact form spam affects many businesses and can be very annoying. When it occurs, emails from genuine customers can be easily lost in a sea of spammy ones.&nbsp;</p>\n\n\n<p>Your organization can integrate honeypot fields within <a href=\"https://akismet.com/blog/how-to-add-wordpress-contact-form/\">contact forms</a> to trap automated bots. This way, you can automatically filter out spammy submissions and make it easier for your company’s administrators to manage their&nbsp;inboxes.</p>\n\n<h3 class=\"wp-block-heading\">2. Preventing comment&nbsp;spam</h3>\n\n\n<p>Likewise, honeypots can be used to prevent comment spam. This can be particularly useful if you have a blog on your company website.&nbsp;</p>\n\n\n\n<p>When bots attempt to fill out the honeypot fields, their submissions will instantly be recognized as spam. <a href=\"https://akismet.com/blog/how-to-stop-comment-spam-in-wordpress/\">Stopping comment spam</a> can help you maintain a professional community.&nbsp;</p>\n\n\n<h3 class=\"wp-block-heading\">3. Blocking malicious user&nbsp;registrations</h3>\n\n\n<p>Bots can also take over your user registration process. If you have an online store or membership site, these fake and malicious entries can make it nearly impossible to effectively manage your users.&nbsp;&nbsp;</p>\n\n\n<p>Honeypots can be integrated into <a href=\"https://akismet.com/blog/how-to-create-a-custom-wordpress-user-registration-form/\">user registration forms</a> to thwart malicious registrations. By taking a proactive approach, you can find an effective way to <a href=\"https://akismet.com/blog/how-to-stop-user-spam-registrations-in-wordpress/\">prevent fake accounts</a> and hackers from infiltrating your user&nbsp;database.</p>\n\n<h3 class=\"wp-block-heading\">4. Preventing link spam and SEO&nbsp;manipulation</h3>\n\n\n<p>Spammers might also try to insert links into your content. Typically, they do this to <a href=\"https://akismet.com/blog/what-is-seo-spam-how-to-protect-your-wordpress-site/\">manipulate their search engine rankings</a> or drive users to harmful websites.&nbsp;</p>\n\n\n<p>Honeypots can be instrumental in preventing link spam. You can use honeypots strategically to attract spammers, study their behavior, and design more effective security solutions that guard access to edit permissions for your&nbsp;content.</p>\n\n<h3 class=\"wp-block-heading\">5. Strengthening CAPTCHA and challenge&#8209;response&nbsp;mechanisms</h3>\n\n\n<p>You might already be <a href=\"https://akismet.com/blog/wordpress-captcha/\">using CAPTCHA</a> and challenge-response mechanisms on your website. These make it more difficult for automated bots to submit spammy content, but they’re not always effective.&nbsp;</p>\n\n\n\n<p>Honeypots act as an additional layer of defense. They make it nearly impossible for malicious actors to interact with your forms undetected.&nbsp;</p>\n\n\n<p>But, you don’t need to implement CAPTCHAs to prevent spam on your website, and these kinds of tests are distracting for users and are likely negatively impacting your&nbsp;conversions.</p>\n\n<p>A comprehensive <a href=\"https://akismet.com/features/\">anti&#8209;spam solution like Akismet</a> can provide a better way to defend your site against&nbsp;spam.</p>\n\n\n<img width=\"1314\" height=\"630\" src=\"https://akismet455732288.files.wordpress.com/2023/12/image-19.png\" alt=\"Akismet homepage with the text \" />\n\n\n\n<p>This tool can identify spammy behavior without the need for a challenge-response mechanism. It does this with an AI-powered system that detects spam signals utilizing things like blocklists, IP addresses, names, and emails associated with suspicious activities.&nbsp;</p>\n\n\n\n<p>And it works with nearly 100% accuracy.&nbsp;</p>\n\n\n<p>Additionally, Akismet offers a better user experience for visitors, as it doesn&#8217;t require them to solve any puzzles. Instead, it analyzes their behavior and blocks any suspicious&nbsp;entries.</p>\n\n<p>By combining honeypots with powerful tools like Akismet, you can ensure that only genuine human users can engage with your&nbsp;website.</p>\n\n<h2 class=\"wp-block-heading\">Akismet: Taking spam protection to a new&nbsp;level</h2>\n\n\n<p>Akismet is a spam prevention plugin for WordPress websites. To date, it has blocked more than 525,000,000,000 spam comments. This is thanks to its powerful and advanced AI technology.&nbsp;</p>\n\n\n\n<p>Akismet is free for personal use and affordable for every level of commercial organization. The improved user experience and resulting boost in conversion rates will more than justify the investment in this valuable tool. If you’re ready to try it out, you can <a href=\"https://wordpress.org/plugins/akismet/\" target=\"_blank\" rel=\"noreferrer noopener\">download it from the WordPress plugin directory</a>.&nbsp;</p>\n\n\n\n<img width=\"945\" height=\"423\" src=\"https://akismet455732288.files.wordpress.com/2023/12/image-20.png\" alt=\"Akismet plugin on WordPress.org \" class=\"wp-image-283660\" />\n\n\n<p>Alternatively, if you’re dealing with a larger volume of sensitive user data, you might want to request <a href=\"https://akismet.com/enterprise/\">a custom enterprise plan</a>. This will be tailored to your company’s needs and will give you access to personalized&nbsp;support.</p>\n\n<h3 class=\"wp-block-heading\">What are the benefits of using&nbsp;Akismet?</h3>\n\n<p>Akismet offers an automated spam protection solution. It checks all submissions on your site and filters out spammy entries. This enables your admin team to handle queries more&nbsp;efficiently.</p>\n\n<p>Additionally, Akismet is a cloud‑based solution. This means that it doesn’t store any data on your website. As a result, it won’t have any impact on your website’s speed and&nbsp;performance.</p>\n\n\n<p>But perhaps the best thing about Akismet is that it integrates with a wide variety of tools. These include popular plugins like <a href=\"https://jetpack.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Jetpack</a>, Contact Form 7, Gravity Forms, and Formidable Forms.&nbsp;</p>\n\n\n<h3 class=\"wp-block-heading\">Why choose Akismet over other spam protection&nbsp;solutions?</h3>\n\n\n<p>You might be wondering what makes Akismet a good alternative to other spam protection solutions.&nbsp;</p>\n\n\n<p>Unlike most anti&#8209;spam tools, Akismet does not use CAPTCHA to block bots. This is typically a puzzle or challenge that users must complete to submit their entries. Its purpose is to make it more difficult for automated bots to submit spammy&nbsp;content.</p>\n\n<p>But CAPTCHA can be off&#8209;putting for human users. It adds friction to the form submission process, and users with certain physical or cognitive disabilities might struggle to complete certain CAPTCHA prompts. This can cause people to abandon the entire process, and lead to fewer queries and conversions for your&nbsp;business.</p>\n\n\n<p>With Akismet, you won’t need to worry about CAPTCHAs creating a poor user experience for legitimate visitors. This plugin is powered by machine learning, which enables it to automatically spot spam through suspicious behavior. It does all of this in the background, without interfering with the experience of real users.&nbsp;</p>\n\n\n\n<p>That means you’ll be able to provide a smoother user registration process. Plus, site visitors won’t need to complete a challenge just to send a quick message through your contact form or subscribe to your newsletter.&nbsp;</p>\n\n\n<h3 class=\"wp-block-heading\">Try Akismet today. You’ll be in good&nbsp;company</h3>\n\n<p>Akismet is a leading spam protection tool, used across 100 million sites. These include popular companies like WordPress.com, Bluehost, and&nbsp;ConvertKit.</p>\n\n\n<p>Are you ready to block spam with Akismet? <a href=\"https://akismet.com/talk-to-sales/\">Get in touch today</a> for a tailored enterprise solution.&nbsp;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Jan 2024 14:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Jen Swisher\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Matt: Back With Tim\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=110059\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"https://ma.tt/2024/01/back-with-tim/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1592:\"<p>I <a href=\"https://tim.blog/2023/12/29/matt-mullenweg-2/\">returned on the podcast with my good friend Tim Ferriss</a>, by my count the sixth time we&#8217;ve recorded together, but the very first time we did it in video! Tim asked me to bring five things I&#8217;m excited about, five things I&#8217;ve changed my mind on in the past few years, and five things that are absurd or ridiculous but I still do, and that ended up being a pretty fun anchor for a two-and-a-half hour conversation, which you can watch here:</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>Or listen to on <a href=\"https://pocketcasts.com/\">Pocket Casts</a> or any podcast player, thanks to open standards:</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<div>    <div></div>    </div>\n</div>\n\n\n\n<p>I ended up having more than five things for each list, especially the excited one, but tried to edit it down. This was a very vulnerable and personal conversation for me, which I think was possible because we&#8217;ve known each other so long at this point and Tim made it really easy and fun to open up. We discuss everything from open source to kids to my upcoming sabbatical.</p>\n\n\n\n<p>Coincidentally, this was episode 713, <a href=\"https://en.wikipedia.org/wiki/Area_codes_713,_281,_832,_and_346\">which is the original area code for Houston</a>! We didn&#8217;t plan that but I think that&#8217;s so cool. I&#8217;m also going to <a href=\"https://www.youtube.com/watch?v=bYXa5RCGLiM\">watch his episode with Kevin Rose</a> who he&#8217;s also very close with, I always learn new stuff from those two.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Jan 2024 08:36:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Matt: Birthday Gift\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=110005\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"https://ma.tt/2024/01/birthday-gift/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1775:\"<p>It&#8217;s true, it&#8217;s true, I turn forty years old in ten days.</p>\n\n\n\n<p>What do you get the guy who has everything?</p>\n\n\n\n<p>I admit I&#8217;m not the easiest to shop for, I can be quite particular in my preferences of <a href=\"https://ma.tt/2023/12/the-bag-post/\">this cable versus that one</a>, but the good news is the gift I most want for my 40<sup>th</sup> is something everyone can do.</p>\n\n\n\n<p><strong>I want you to blog.</strong></p>\n\n\n\n<p>Publish a post. About anything! It can be long or short, a photo or a video, maybe a quote or a link to something you found interesting. Don&#8217;t sweat it. Just blog. Share something you created, or amplify something you enjoyed. It doesn&#8217;t take much. The act of publishing will be a gift for you and me. </p>\n\n\n\n<p>That&#8217;s what I want for my birthday. If you link to this post and use <a href=\"https://wordpress.org/\">WordPress</a> the <a href=\"https://en.wikipedia.org/wiki/Pingback\">Pingback</a> system will notify me about your post and it will show up in the comment stream, but I&#8217;m okay even if you don&#8217;t use WordPress, just post something and send me a link. You can start <a href=\"https://www.tumblr.com/\">a free site on Tumblr</a> or <a href=\"https://wordpress.com/\">get a domain that can be your home on the internet with WP.com</a>.</p>\n\n\n\n<p>You&#8217;ve got ten days! After the 11th I&#8217;ll close the comments and pingbacks on this post. But I&#8217;m so curious to read what people write.</p>\n\n\n\n<p>That&#8217;s it! No wrapping paper or bows. Just blogs and blogs and blogs, each unique and beautiful in its own way. (Oh! <a href=\"https://crowdfundr.com/TheBayLights360\">And put $10 toward the Bay Lights so we can get the contributor number as high as possible</a>.)</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 02 Jan 2024 01:49:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"Matt: Books 2020–2023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=109958\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"https://ma.tt/2023/12/books-2020-2023/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6451:\"<p>I&#8217;m a few years behind in posting my book lists, and past few years a good amount of my book reading time shifted to other mediums. I have been rediscovering the joy of books so here&#8217;s what I read the past few years as a motivation to myself to pick it up more in 2024.</p>\n\n\n\n<h2 class=\"wp-block-heading\">2020</h2>\n\n\n\n<ol>\n<li><a href=\"https://www.amazon.com/gp/product/B002DMZ9WW/\"><strong>The Gift by Hafiz</strong></a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B078GTFGJN/\">I hope this reaches her in time by r.h. Sin</a> </li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B00G1J1D28/\">Essentialism: The Disciplined Pursuit of Less by Greg McKeown</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B07GD46PQZ/\">Exhalation by Ted Chiang</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B07FZ683NB/\">Deceiving the Sky: Inside Communist China&#8217;s Drive for Global Supremacy</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B000QUEHLM/\">Zero: The Biography of a Dangerous Idea by Charles Seife</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B004JHYRAO/\">Caves of Steel by Isaac Asimov</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B07DRPGGQ7/\"><strong>High Growth Handbook by Elad Gil</strong></a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B004JHYRDQ/\">The Naked Sun by Isaac Asimov</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B07NVN4QCM/\">What You Do Is Who You Are by Ben Horowitz</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B07GL6KYHM/\">Gideon Falls 1: The Black Barn by Jeff Lemire</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B07NDKTJJ2/\">Gideon Falls 2: Original Sins by Jeff Lemire</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B07W6KB77N/\">Gideon Falls 3: Stations of the Cross by Jeff Lemire</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B00NYCE44O/\">What if I Say the Wrong Thing? 25 Habits for Culturally Effective People by Vernā Myers</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B004U5Q1O0/\"><strong>The Most Important Thing: Uncommon Sense for the Thoughtful Investor by Howard Marks</strong></a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B0071XO8RA/\"><strong>Wool by Hugh Howey</strong></a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B076ZHG3H3/\">Trillion Dollar Coach by Eric Schmidt and Jonathan Rosenberg</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B077Y4WVPT/\">Powerful: Building a Culture of Freedom and Responsibility by Patty McCord</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/0385249373/\">Awareness: The Perils and Opportunities of Reality by Anthony de Mello</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B0029XFF6U/\">How to Know Higher Worlds by Rudolf Steiner</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B081Y3R657/\"><strong>No Rules Rules by Reed Hastings and Erin Meyer</strong></a></li>\n</ol>\n\n\n\n<h2 class=\"wp-block-heading\">2021</h2>\n\n\n\n<ol>\n<li><a href=\"https://www.amazon.com/dp/B07C75GLGK/\">Broken Stars by Ken Liu</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B00G3L1C2K/\"><strong>The Body Keeps Score by Bessel van der Kolk</strong></a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B000W7XN3C/\">Broadbandits by Om Malik</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B07D2364N5/\">How to be Antiracist by Ibram X Kendi</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B00BVJG3CS/\"><strong>The Reason I Jump by Naoki Higashida</strong></a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B07YQCNN4N/\">Billionaire Wilderness by Justin Farrell</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B07NYT9F8L/\">Antarctica: What Everyone Needs to Know by David Day</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B08SMFSL5M/\">San Fransicko by Michael Shellenberger</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B006R8PHW0/\">Antarctica: An Intimate Portrait of a Mysterious Continent by Gabrielle Walker</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B002WN354G/\">At the Mountains of Madness by H. P. Lovecraft</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/1885254008\">Delirious New York by Rem Koolhaas</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B07MNG496J/\"><strong>This Is How You Lose the Time War by Amal El-Mohtar and Max Gladstone</strong></a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B00IWTWLQC/\"><strong>Fallen Leaves: Last Words on Life, Love, War, and God by Will Durant</strong></a></li>\n</ol>\n\n\n\n<h2 class=\"wp-block-heading\">2022</h2>\n\n\n\n<p>This year I ended up mostly reading AI and machine learning academic papers, attempting to &#8220;learn AI deeply&#8221; as I asked people at <a href=\"https://ma.tt/2023/01/state-of-the-word-2/\">the State of the Word that year</a>. Started a bunch of other books but these were the only two I finished.</p>\n\n\n\n<ol>\n<li><a href=\"https://www.amazon.com/dp/B08FGV64B1/\">4000 weeks by Oliver Burkeman</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B008T9L6AM/\">A Wizard of Earthsea by Ursula K. Guin</a></li>\n</ol>\n\n\n\n<h2 class=\"wp-block-heading\">2023</h2>\n\n\n\n<ol>\n<li><a href=\"https://www.amazon.com/dp/B09JBCGQB8/\"><strong>Tomorrow and Tomorrow and Tomorrow by Gabrielle Zevin</strong></a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B075G4W7MV/\">Belong by Radha Agrawal</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B0BCF78T14/\"><strong>Excellent Advice for Living by Kevin Kelly</strong></a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B09YDBJV2Q/\">On That Note by Michael Wolff</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B0B13W5GPT/\"><strong>Unreasonable Hospitality by Will Guidara</strong></a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B077J7F78Z/\"><strong>Surely You’re Joking, Mr Feynman by Richard Feynman</strong></a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B00FDWCPV2/\">Permutation City by Greg Egan</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B00Z8VTMYG/\"><strong>Seven Brief Lessons on Physics by Carlo Rovelli</strong></a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B0BSSH8MQ9/\"><strong>Damn Good Advice by George Lois</strong></a></li>\n</ol>\n\n\n\n<p>All book years: <a href=\"https://ma.tt/2017/12/books-in-2017/\">2017</a>, <a href=\"https://ma.tt/2019/01/39-books-in-2018/\">2018</a>, <a href=\"https://ma.tt/2020/01/29-books-in-2019/\">2019</a>, <a href=\"https://ma.tt/?p=109958\">2020–2023</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 01 Jan 2024 05:58:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:11:\"\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"HeroPress: Surfing In France, Podcasts, Photos, and Press Releases!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://heropress.com/?p=6332\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"https://heropress.com/surfing-in-france/#utm_source=rss&utm_medium=rss&utm_campaign=surfing-in-france\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:11511:\"<img width=\"683\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/2023/12/99265232ded267133.95673942-683x1024.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Rock cairns in focus against a backdrop of the rocky, Oregon coast with giant logs.\" /><p>It was a quiet week this week, between Christmas and New Year, so this newsletter will be a little different.</p>\n\n\n\n<p>We had 23 essays this year, from a very pleasantly diverse group of people. We began the work of merging the larger HeroPress Network back into this site, HeroPress.com. Life was chaotic, but moved ever onward.</p>\n\n\n\n<p>This year more than ever we had people other than Topher working on HeroPress. Mostly little things, but more and more every month.  This is great for the long term viability of the project.</p>\n\n\n\n<p>I greatly appreciate the support of every single one of you over the last nine (9!) years of HeroPress.  I hope we&#8217;ll have a great time together in the years to come.</p>\n\n\n<div class=\"kb-row-layout-wrap kb-row-layout-id6332_7129cc-0f alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top kb-theme-content-width\">\n\n<div class=\"wp-block-kadence-column kadence-column6332_ca547f-e6 inner-column-1\"><div class=\"kt-inside-inner-col\">\n<h2 class=\"kt-adv-heading6332_ab6de5-f2 wp-block-kadence-advancedheading\"><a href=\"https://heropress.com/\">HeroPress.com</a> &#8211; <a href=\"https://heropress.com/essays/being-useful-to-people-with-wordpress/\">Being useful to people, with WordPress – Être utile aux autres, avec WordPress</a></h2>\n\n\n\n\n\n\n\n<p>Quentin Le Duff is from Saint-Malo, France. He taught himself web development and got a job, but soon questioned what he was doing with his life and why.</p>\n\n\n\n<p><em>Over time, I felt less connected to the agency’s decisions and the kind of clients they had. I wondered about the meaning and impact of my work. Was I making things better for people? Was what I did ethical? In the end, did it really matter?</em></p>\n\n\n\n<p>Quentin&#8217;s essay is <a href=\"https://heropress.com/essays/being-useful-to-people-with-wordpress/\">available</a> on <a href=\"https://heropress.com\">HeroPress.com</a>.</p>\n</div></div>\n\n</div></div>\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-6332_6a9d40-be\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n<div class=\"kb-row-layout-wrap kb-row-layout-id6332_f63ef3-eb alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top kb-theme-content-width\">\n\n<div class=\"wp-block-kadence-column kadence-column6332_37e0ac-dd inner-column-1\"><div class=\"kt-inside-inner-col\">\n<h2 class=\"kt-adv-heading6332_e666af-94 wp-block-kadence-advancedheading\"><a href=\"https://heropress.com/\">Press Releases!</a></h2>\n\n\n<div class=\"wp-block-image is-style-default\">\n<img src=\"https://heropressnetwork.com/wp-content/uploads/2024/03/pressitwp_logo-300x130.jpg\" alt=\"Press It WP\" class=\"wp-image-4736\" /></div>\n\n\n<p><a href=\"https://pressitwp.com\">PressItWP.com</a> has been a part of the <a href=\"https://heropressnetwork.com\">HeroPress Network</a> for almost a year now, if you ever release Press Releases, please consider <a href=\"https://pressitwp.com\">PressItWP</a>!</p>\n\n\n\n<p></p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-advice-by-renowned-founders-of-100-wordpress-businesses\"><a href=\"https://wpfounders.com/news-updates/advice-by-100-wordpress-business-founders/#new_tab\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f389.png\" alt=\"🎉\" class=\"wp-smiley\" /> Advice by Renowned Founders of 100 WordPress Businesses</a></h2>\n\n\n\n<p>We at WPfounders recently hit a major milestone, securing 100 stories from various WordPress business founders. To celebrate, we’ve compiled key advice from each story to inspire young entrepreneurs venturing into the WordPress ecosystem. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f447.png\" alt=\"👇\" class=\"wp-smiley\" /> Advice by Renowned Founders of 100 WordPress Businesses</p>\n</div></div>\n\n</div></div>\n\n\n<p> </p>\n\n\n<div class=\"kb-row-layout-wrap kb-row-layout-id6332_ad80f5-78 alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top kb-theme-content-width\">\n\n<div class=\"wp-block-kadence-column kadence-column6332_a41078-e2 inner-column-1\"><div class=\"kt-inside-inner-col\">\n<h2 class=\"kt-adv-heading6332_511208-ef wp-block-kadence-advancedheading\"><a href=\"https://wppodcasts.com\">WP Podcasts</a></h2>\n\n\n\n<a href=\"https://wppodcasts.com\"><img src=\"https://heropressnetwork.com/wp-content/uploads/2024/01/pocket_casts_single_315.png\" alt=\"Pocket Casts image\" class=\"wp-image-4316\" /></a>\n\n\n\n<p>There were <em>sixteen</em> WordPress podcast episodes released this week! </p>\n\n\n\n<ul>\n<li><a href=\"https://potencia.pro/272-the-wp-awards-2023-top-winners-votes/#new_tab\">Potencia Pro 272: The WP Awards 2023 – Top Winners &amp; Votes</a> from <a href=\"https://wppodcasts.com/podcast/potencia-pro-wordpress-y-cozas/\">Potencia Pro, WordPress y cozas</a></li>\n\n\n\n<li><a href=\"https://www.wppodcast.cat/podcast/tancant-el-2023/#new_tab\">8. Tancant el 2023</a> from <a href=\"https://wppodcasts.com/podcast/wordpress-podcast-catala/\">WordPress Pòdcast (català)</a></li>\n\n\n\n<li><a href=\"https://underrepresented-in-tech.castos.com/episodes/setting-boundaries-allies-last-episode#new_tab\">Setting Boundaries &amp; Allie’s Last Episode!</a> from <a href=\"https://wppodcasts.com/podcast/underrepresented-in-tech/\">Underrepresented in Tech</a></li>\n\n\n\n<li><a href=\"https://podcasters.spotify.com/pod/show/the-sdm-show/episodes/Episode-380-Bertha-Ai-and-All-Things-AI-With-Andrew-Palmer-e2dp464#new_tab\">Episode 380: Bertha.Ai and All Things AI With Andrew Palmer</a> from <a href=\"https://wppodcasts.com/podcast/the-sdm-show/\">The SDM Show</a></li>\n\n\n\n<li><a href=\"https://remkusdevries.com/podcast/crafting-twenty-twenty-four-coordinating-wordcamp-germany-jessica-lyschiks-story/#new_tab\">Crafting Twenty Twenty Four &amp; Coordinating WordCamp Germany: Jessica Lyschik’s Story</a> from <a href=\"https://wppodcasts.com/podcast/within-wordpress/\">Within WordPress</a></li>\n</ul>\n\n\n\n<p>There are new episodes every single day, so be sure to stop by <a href=\"https://wppodcasts.com\">WPPodcasts.com</a> and search for things that interest you!</p>\n</div></div>\n\n</div></div>\n\n\n<p> </p>\n\n\n<div class=\"kb-row-layout-wrap kb-row-layout-id6332_3ce321-05 alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top kb-theme-content-width\">\n\n<div class=\"wp-block-kadence-column kadence-column6332_b1d555-9d inner-column-1\"><div class=\"kt-inside-inner-col\">\n<h2 id=\"wpphotos\" class=\"kt-adv-heading6332_d41738-0e wp-block-kadence-advancedheading\"><a href=\"https://wordpress.org/photos\">WP Photos</a></h2>\n\n\n\n<p>Here are some of the great photos submitted to the <a href=\"https://wordpress.org/photos\">WPPhotos</a> project this week!</p>\n\n\n\n\n<a href=\"https://wordpress.org/photos/photo/346658e493/\"><img width=\"768\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/2023/12/346658e493d42efa0.56373730-768x1024.jpeg\" alt=\"\" class=\"wp-image-6346\" /></a><a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/346658e493/\">photo</a> by <a href=\"https://wordpress.org/photos/author/anish29/\">Anis</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.\n\n\n\n<a href=\"https://wordpress.org/photos/photo/564658c439/\"><img width=\"1024\" height=\"876\" src=\"https://heropress.com/wp-content/uploads/2023/12/564658c43966acf26.31591060-1024x876.jpeg\" alt=\"\" class=\"wp-image-6343\" /></a><a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/564658c439/\">photo</a> by <a href=\"https://wordpress.org/photos/author/bhuwanroka/\">Bhuwan Bdr. Rokaha</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.\n\n\n\n<a href=\"https://heropress.com/wp-content/uploads/2023/12/762658b1e7788d772.40098223-scaled.jpeg\"><img width=\"1024\" height=\"768\" src=\"https://heropress.com/wp-content/uploads/2023/12/762658b1e7788d772.40098223-1024x768.jpeg\" alt=\"\" class=\"wp-image-6345\" /></a><a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/762658b1e7/\">photo</a> by <a href=\"https://wordpress.org/photos/author/mbigul/\">Bigul Malayi</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.\n\n\n\n<a href=\"https://wordpress.org/photos/photo/12465893c2/\"><img width=\"1024\" height=\"680\" src=\"https://heropress.com/wp-content/uploads/2023/12/12465893c2cb2ef57.61824776-1024x680.jpg\" alt=\"\" class=\"wp-image-6342\" /></a><a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/12465893c2/\">photo</a> by <a href=\"https://wordpress.org/photos/author/nilovelez/\">Nilo Velez</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.\n\n\n\n<a href=\"https://heropress.com/wp-content/uploads/2023/12/174659009f2150ed0.93395118-scaled.jpg\"><img width=\"1024\" height=\"680\" src=\"https://heropress.com/wp-content/uploads/2023/12/174659009f2150ed0.93395118-1024x680.jpg\" alt=\"\" class=\"wp-image-6344\" /></a><a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/174659009f/\">photo</a> by <a href=\"https://wordpress.org/photos/author/nilovelez/\">Nilo Velez</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.\n\n\n\n<a href=\"https://wordpress.org/photos/photo/727658895e/\"><img width=\"768\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/2023/12/727658895ef476730.56539372-rotated-1-768x1024.jpg\" alt=\"\" class=\"wp-image-6341\" /></a><a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/727658895e/\">photo</a> by <a href=\"https://wordpress.org/photos/author/alexandroar/\">alexandroar</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.\n\n\n\n\n<p>Be sure to check out the <a href=\"https://wordpress.org/photos/\">hundreds of other great photos</a>!</p>\n</div></div>\n\n</div></div>\n\n\n<p></p>\n\n\n\n<p>The header photo for this post is a <a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/99265232de/\">photo</a> by <a href=\"https://wordpress.org/photos/author/annezazu/\">annezazu</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.</p>\n\n\n\n\n\n\n<p>That&#8217;s it for this week! If you&#8217;d like to get this post in your email every week, <a href=\"https://heropressnetwork.com/newsletter\">make sure you sign up</a>!</p>\n\n<p>The post <a href=\"https://heropress.com/surfing-in-france/\">Surfing In France, Podcasts, Photos, and Press Releases!</a> appeared first on <a href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 30 Dec 2023 20:53:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"WordPress.org blog: Leap into 2024 with these Site Editor Tools\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=16658\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://wordpress.org/news/2023/12/leap-into-2024-with-these-site-editor-tools/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8226:\"<p>The Site Editor gives you a powerful way to visually create every part of your site and tell your story. It lets you handle everything from big stylistic changes to simple copy updates all in a single place. To help you make the most of this new way to WordPress, here are a few standout tools and features you’ll want to try.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">Command Palette</h3>\n\n\n\n<p>Think of the Command Palette as the ultimate shortcut tool, letting you do more with less clicks and without needing to remember where each option might be. It’s available across the editing experience, whether you’re switching between templates in the Site Editor or toggling open settings in the Post Editor, with specific contextual options depending on where you are.<strong> </strong>You can use the keyboard shortcut Cmd+K on Mac or Ctrl+K on Windows to activate it and get started.&nbsp;</p>\n\n\n\n<p>If you think of a command that doesn’t exist yet that would help with your workflow, open a <a href=\"https://github.com/WordPress/gutenberg/issues/new/choose\">feature request issue</a> so we can consider adding it.</p>\n\n\n\n\n\n\n\n<p class=\"is-style-default\"><a href=\"https://make.wordpress.org/core/2023/09/12/core-editor-improvement-commanding-the-command-palette/\"><em>Read more</em></a><em> about everything you can do with the Command Palette, including a </em><a href=\"https://wordpress.org/documentation/article/site-editor-command-palette/#list-of-available-commands\"><em>list of available commands</em></a><em>.&nbsp;</em></p>\n\n\n\n<h3 class=\"wp-block-heading\">Style Book</h3>\n\n\n\n<p>The Style Book helps you see all the blocks on your site as you style them. It’s built into the Styles section and can be toggled on/off as you’d like. This is especially useful when you’re aiming for design consistency for a client, trying to see how a change might impact a block that might not be visible, or wanting to get a different look at how a style variation will switch things up.</p>\n\n\n\n<p>Work is also underway for the next WordPress release to <a href=\"https://github.com/WordPress/gutenberg/pull/56800\">integrate the Style Book into Style revisions</a> to allow for an at-a-glance view of changes made. </p>\n\n\n\n\n\n\n\n<p><a href=\"https://learn.wordpress.org/tutorial/how-to-use-the-wordpress-stylebook-with-your-block-theme/\"><em>Learn more</em></a><em> about how best to use the Style Book.</em></p>\n\n\n\n<h3 class=\"wp-block-heading\">Styling shortcuts</h3>\n\n\n\n<p>Sometimes you get a design just right—the color contrast, the perfect padding, the exact font size. Instead of needing to manually recreate the design or copy/paste the block to fill in with new content, you have two powerful options built into the editing experience: copy/paste styles and apply styles globally for all instances of the desired block.&nbsp;</p>\n\n\n\n<p>Copying and pasting styles is perfect for more nuanced and smaller changes, like headings on a landing page that you intentionally want to be distinct. Applying changes globally is best for blocks like buttons and for changes that are likely to work well across layouts, like setting a specific border radius and color. This helps keep the creativity flowing and makes achieving design consistency across your site much easier.</p>\n\n\n\n\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2023/02/01/core-editor-improvement-strengthening-style-options/\"><em>Read more</em></a><em> about the various styling options available.&nbsp;</em></p>\n\n\n\n<h3 class=\"wp-block-heading\">Distraction free mode</h3>\n\n\n\n<p>Just like an artist might need to take a few steps back to view their in-progress artwork, sometimes we need to get a different view of our site before diving back in. Distraction free offers you that alternate perspective with a pared-down experience that lets you focus purely on creating, like:</p>\n\n\n\n<ul>\n<li>Hiding the top toolbar until one intentionally hovers over where it typically sits.</li>\n\n\n\n<li>Removing many of the top toolbar buttons.</li>\n\n\n\n<li>Automatically closing any open sidebars, like block settings and list view.&nbsp;</li>\n\n\n\n<li>Hiding the insertion point indicator, reducing visual clutter.&nbsp;</li>\n\n\n\n<li>Hiding the block toolbar for individual blocks.</li>\n</ul>\n\n\n\n<p>It’s worth noting that this mode can be used when writing posts and pages too! For an added bonus and more views of your site, you can use the preview options to see how your site might look across different devices.</p>\n\n\n\n\n\n\n\n<p><a href=\"https://wordpress.org/documentation/article/distraction-free-mode/\"><em>Learn more</em></a><em> about making the most out of Distraction free mode.&nbsp;</em></p>\n\n\n\n<h3 class=\"wp-block-heading\">Patterns</h3>\n\n\n\n<p>Patterns are a collection of blocks that make it simple to add complex layouts and designs to any WordPress site without starting from scratch. They save time by reducing duplication and ensuring consistency. You can create your own, use theme-provided patterns, or <a href=\"https://wordpress.org/patterns/\">lean on the Pattern Directory</a>.&nbsp;</p>\n\n\n\n<p>You can also specify whether to sync your patterns so that one change applies to all parts of your site, or to keep them unsynced so you can customize each instance. For any patterns you create, you can assign categories to make them easy to find and organize. Use the Inserter with easy filtering options to add patterns to your content, and head to the dedicated Patterns section in the Site Editor to create or edit patterns to your liking.&nbsp;</p>\n\n\n\n\n\n\n\n<p><a href=\"https://learn.wordpress.org/tutorial/creating-your-own-custom-synced-or-non-synced-patterns/\"><em>Learn more</em></a><em> about creating patterns.&nbsp;</em></p>\n\n\n\n<h3 class=\"wp-block-heading\">List View</h3>\n\n\n\n<p>List View is the go-to tool for navigating between layers of your content, selecting exactly what you need, and getting a sense of how everything fits together. Similar to the Style Book and Distraction free mode, you can toggle it on/off as you’d like. It’s currently visible in the Top Toolbar and will remain open as you navigate through your site. Beyond providing a simple view of the layers of your site, there are more recent additions to List View that makes the tool even more powerful:</p>\n\n\n\n<ul>\n<li>See previews of your images for Image and Gallery blocks reflected in List View to make it easier to find what you need.</li>\n\n\n\n<li>The Escape key deselects blocks to make it easier to purely preview your content without any blocks selected.&nbsp;</li>\n\n\n\n<li>Lean on a keyboard shortcut for duplicating blocks quickly: CMD+Shift+D for Mac or Control + Shift + D for Windows.&nbsp;</li>\n\n\n\n<li>Drag and drop blocks at any level directly within List View.</li>\n\n\n\n<li>Rename Group blocks and have the custom name reflected in List View for improved organization.</li>\n</ul>\n\n\n\n<p>Here’s how a few of these improvements come together:</p>\n\n\n\n\n\n\n\n<p><a href=\"https://wordpress.org/documentation/article/list-view/\"><em>Learn more</em></a><em> about using List View. </em></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>As you explore these tools, remember that, except for the Style Book, you can use these features when writing posts and pages too. Expect the Site Editor and other tools to evolve with each release. To get a sneak peek at what’s planned for the next major WordPress release in March, <a href=\"https://make.wordpress.org/core/2023/12/07/roadmap-to-6-5/\">check out the roadmap</a> and stay tuned. </p>\n\n\n\n<h3 class=\"wp-block-heading\">Subscribe to WordPress News</h3>\n\n\n\n<p>Join other subscribers and receive WordPress news directly in your inbox. </p>\n\n\n<div class=\"wp-block-jetpack-subscriptions__supports-newline wp-block-jetpack-subscriptions\">\n		<div>\n			<div>\n				<div>\n					<p>\n						<a href=\"https://wordpress.org/news/?post_type=post&p=16658\">Subscribe</a>\n					</p>\n				</div>\n			</div>\n		</div>\n	</div>\n\n\n<p><em>Thank you to the contributors who collaborated on this post: <a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a>, <a href=\"https://profiles.wordpress.org/laurlittle/\">Lauren Stein</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a></em>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 28 Dec 2023 18:35:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"annezazu\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Akismet: 20 Lead Generation Tips &amp; Best Practices That Work in 2024\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://akismet.com/?p=283573\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://akismet.com/blog/lead-generation-tips-and-best-practices/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:40655:\"<p>Does your team spend hours (or even days) creating content, optimizing your website, and investing in marketing campaigns only to fall short of your quarterly&nbsp;goals?</p>\n\n<p>You&#8217;re not alone. Lead generation is a constant challenge for businesses of all sizes and industries, but there&#8217;s a solution. A focused lead generation strategy attracts high&#8209;quality leads, converts them into customers, and ultimately grows your&nbsp;business.</p>\n\n<p>Here are 20 tried&#8209;and&#8209;proven lead generation tips and best practices that can up your game in 2024 and&nbsp;beyond.</p>\n\n\n<span id=\"more-283573\"></span>\n\n\n<h2 class=\"wp-block-heading\">1. Define your ideal customer profile&nbsp;(ICP)</h2>\n\n\n<p>An ideal customer profile (ICP) is an informative blueprint that outlines the specific characteristics and needs of the customers who stand to benefit the most from your product or service.&nbsp;</p>\n\n\n\n<p>ICPs cover aspects like demographics, and psychographics that offer a 360-degree view of your ideal customer&#8217;s persona. Insights into your target customer’s age, location, values, and desires help you create tailored strategies that resonate deeply with your audience.&nbsp;</p>\n\n\n<p>The result? Reduced marketing waste, satisfied customers, and greater return on investment&nbsp;(ROI).</p>\n\n<p>Here are some <a href=\"https://offers.hubspot.com/customer-profile-templates\" target=\"_blank\" rel=\"noreferrer noopener\">templates from HubSpot</a> to get&nbsp;started.</p>\n\n\n<img width=\"814\" height=\"626\" src=\"https://akismet455732288.files.wordpress.com/2023/12/image.png\" alt=\"customer profile template with information like demographics and behaviors\" class=\"wp-image-283577\" />\n\n\n<p>Targeted lead generation strategies that keep an ideal customer in mind are like precision tools that allow you to reach the right audience and speak directly to their unique&nbsp;worldview.</p>\n\n<h2 class=\"wp-block-heading\">2. Use market research to know your audience inside and&nbsp;out</h2>\n\n\n<p>Market research involves gathering, analyzing, and interpreting data and insights about your target audience, competitors, and industry trends to guide your lead generation strategy.&nbsp;</p>\n\n\n<p>Think surveys, focus groups, in&#8209;depth interviews, social media listening, and competitive analysis. These are just a few market research methods that provide nuggets into consumer behavior and&nbsp;preferences.</p>\n\n<p>Comprehensive market research pinpoints your target audience, the marketing channels they use, and what they’re interested&nbsp;in.</p>\n\n<p>Some tips on conducting market&nbsp;research:</p>\n\n\n<ul><li><strong>Define clear objectives</strong>. Set specific research objectives. Determine what you want to learn about your audience, competitors, and industry trends to get focused and actionable&nbsp;results.</li>\n\n<li><strong>Use multiple methods</strong>. Combine multiple methods to get a more holistic view of your&nbsp;audience.</li>\n\n\n<li><strong>Segment your audience</strong>. Divide your target audience into segments based on demographics, psychographics, or other relevant criteria.&nbsp;</li>\n\n\n<li><strong>Engage your audience</strong>. Encourage customer feedback and reviews. Engaging with your audience through surveys or feedback shows you value their&nbsp;opinions.</li>\n\n<li><strong>Evaluate competitors</strong>. Study your competitors to understand their strengths and weaknesses. Identify gaps in the market that your product or service fills, and use this knowledge to differentiate&nbsp;yourself.</li></ul>\n\n\n<h2 class=\"wp-block-heading\">3. Solve problems and attract leads with valuable blog&nbsp;content</h2>\n\n<p>Create blog content that answers your target audience&#8217;s questions and builds trust and authority. This content positions your brand as a reliable source of valuable information, driving leads to your&nbsp;website.</p>\n\n<p>Blogging is powerful — most respondents in a <a href=\"https://www.orbitmedia.com/blog/blogging-statistics/\" target=\"_blank\" rel=\"noreferrer noopener\">survey</a> reported that it drives results like website traffic, brand awareness, and, of course, lead&nbsp;generation.</p>\n\n\n<img width=\"1200\" height=\"600\" src=\"https://akismet455732288.files.wordpress.com/2023/12/image-1.png\" alt=\"pie chart that shows 80% of bloggers are driving results in 2023\" class=\"wp-image-283578\" />\n\n\n<p>Not sure where to start? Create valuable blog content with these&nbsp;tips:</p>\n\n\n<ul><li><strong>Use research to back it up</strong>. Support your content with data and research from credible sources. You gain authority and credibility this&nbsp;way.</li>\n\n<li><strong>Make it product&#8209;led, but not sales&#8209;y</strong>. Address your audience&#8217;s pain points and questions while subtly showcasing how your product or service can fit into a solution. The focus should be on providing the solutions, not a hard sell of your&nbsp;offer.</li>\n\n<li><strong>Keep the call to action (CTA) subtle</strong>. Guide readers to take action in a friendly and non&#8209;intrusive way. Use CTAs that spark engagement, like inviting them to read more content on your&nbsp;blog.</li>\n\n<li><strong>Use stories and examples</strong>. Incorporate real&#8209;life stories and examples that illustrate the points you&#8217;re making. Your content will be more relatable and easier to&nbsp;understand.</li>\n\n<li><strong>Solve specific problems</strong>. Focus on solving one or two specific problems in each blog post rather than trying to cover too much ground. Reading becomes more enjoyable and in&#8209;depth as a&nbsp;result.</li></ul>\n\n\n<p>Content marketing is one of the most proven lead generation best practices. It consistently delivers strong results and can be used in a variety of ways. If this isn’t yet a priority, consider making it one in the near&nbsp;future.</p>\n\n<h2 class=\"wp-block-heading\">4. Use lead magnets and gated content to capture&nbsp;leads</h2>\n\n<p>Have you ever seen one of those pop&#8209;up offers promising you a valuable resource like an eBook, report, webinar, or template in exchange for your email address? Those are lead&nbsp;magnets.</p>\n\n\n<img width=\"1600\" height=\"833\" src=\"https://akismet455732288.files.wordpress.com/2023/12/image-2.png\" alt=\"WordPress VIP lead capture with a form and CTA to read a report\" class=\"wp-image-283579\" />\n\n\n\n<p>Lead magnets and gated content act as friendly invitations for your audience to exchange their contact information for something of value.&nbsp;</p>\n\n\n<p>Offering relevant and informative resources captures quality leads and shows your willingness to provide solutions. You can then use the data to send targeted offers and build a relationship with your&nbsp;audience.</p>\n\n\n<p>Make sure your lead magnet is high-quality, is relevant to your audience, and aligns with your overall content strategy.&nbsp;</p>\n\n\n<p>Design the lead magnet and pitch your gated content in a way that provides value to the reader, not as a pushy sales&nbsp;tactic.</p>\n\n\n<h2 class=\"wp-block-heading\">5. Reduce friction on your lead capture forms&nbsp;</h2>\n\n\n<p>Simplify the information you request from potential leads. It reduces the time and effort required for users to submit their information. The result is a better experience that results in higher conversion&nbsp;rates.</p>\n\n<p>Here’s what a lead gen form looks like from&nbsp;Litmus:</p>\n\n\n<img width=\"1067\" height=\"879\" src=\"https://akismet455732288.files.wordpress.com/2023/12/image-3.png\" alt=\"lead capture from Litmus with a form that includes email, name, job title, and a few other fields\" class=\"wp-image-283580\" />\n\n\n<p>Include this information in your lead capture&nbsp;form:</p>\n\n\n<ul><li><strong>Name</strong>. Ask for the visitor&#8217;s first name to personalize your&nbsp;communication.</li>\n\n\n<li><strong>Email address</strong>. This is the most crucial information for contact and follow-up.&nbsp;</li>\n</ul>\n\n\n\n<p>You could end your form right here and likely get the maximum conversion rate possible. However, the effectiveness of your campaigns that follow this lead capture may hinge upon knowing a bit more about the visitor to segment communications.&nbsp;</p>\n\n\n\n<p>If this is the case, you may consider asking a few more questions, like:&nbsp;</p>\n\n\n\n<ul><li><strong>Company name (if applicable)</strong>. The user&#8217;s company helps sales reps understand how to approach a lead and can provide you with better data about who’s responding to your&nbsp;offers.</li>\n\n<li><strong>Job title (if applicable)</strong>. The user&#8217;s role within their company is valuable for segmenting and tailoring your&nbsp;messaging.</li>\n\n\n<li><strong>Location (optional)</strong>. The location is useful for regional targeting or understanding your audience better.&nbsp;</li>\n\n\n<li><strong>Industry or interest (if applicable)</strong>. If your lead generation efforts are specific to certain industries or interests (or even product lines), include a dropdown menu or checkboxes for users to select from to tailor your&nbsp;communication.</li>\n\n<li><strong>How they heard about you (optional)</strong>. Understand how users discovered your brand to get insights into your marketing channels&#8217;&nbsp;performance.</li></ul>\n\n\n\n<h2 class=\"wp-block-heading\">6. Replace CAPTCHA with an AI anti-spam solution&nbsp;</h2>\n\n\n\n<p>CAPTCHAs are those annoying puzzles or tests you often come across online that require you to prove you&#8217;re not a robot by solving them.&nbsp;</p>\n\n\n\n<p>These <em>do </em>serve an important purpose, however. Anti-spam solutions stop unwanted or malicious content or actions, like spam comments and emails, from infiltrating websites.&nbsp;</p>\n\n\n<p>Unfortunately, CAPTCHAs lead to a poor user experience and potential drop&#8209;offs from your most important visitors. A study shows that <a href=\"https://www.cnbc.com/2022/12/17/why-annoying-captcha-is-still-big-for-google-e-commerce-in-bot-battle.html\">19% of adults</a> in the United States abandoned online transactions in 2021 when CAPTCHAs&nbsp;appeared.</p>\n\n\n<p><a href=\"https://akismet.com/\">Akismet is a powerful anti-spam service</a> that detects and blocks spam comments, form submissions, and other unwanted interactions <strong>without requiring users to complete a puzzle, check a box, or jump through a hoop</strong>. Its <a href=\"https://akismet.com/features/\">key features</a> include real-time spam detection, comment moderation, protection against harmful links, and the ability to learn and adapt to new spam patterns.&nbsp;</p>\n\n\n\n<img width=\"1600\" height=\"824\" src=\"https://akismet455732288.files.wordpress.com/2023/12/image-4.png\" alt=\"Akismet website with information about the zero-friction tool\" class=\"wp-image-283581\" />\n\n\n<p>Visitors find a trustworthy and safe environment on your website thanks to these features. It creates a positive user experience, increases engagement, and improves the chances of converting visitors into&nbsp;leads.</p>\n\n<h2 class=\"wp-block-heading\">7. Let prospects test your product with free trials or&nbsp;demos</h2>\n\n\n<p>Free trials or demos give prospects a taste of your tool by allowing them to experience its features and benefits firsthand before making a commitment. Types of free trials include:&nbsp;</p>\n\n\n\n<ul><li><strong>Limited&#8209;time trial</strong>. Users access the full product for a limited period, after which they subscribe or&nbsp;purchase.</li>\n\n<li><strong>Feature&#8209;limited trial</strong>. Users can access the product&#8217;s basic features for free but upgrade to access advanced&nbsp;functionalities.</li>\n\n<li><strong>Demo or guided tour</strong>. Prospects get a walkthrough of the product&#8217;s capabilities, often with a sales representative explaining its&nbsp;value.</li></ul>\n\n\n\n<p>Jetpack’s AI Assistant, <a href=\"https://jetpack.com/ai/\" target=\"_blank\" rel=\"noreferrer noopener\">an AI writing tool</a> built directly into the WordPress editor, offers a variation of the limited-time trial using credits.&nbsp;</p>\n\n\n\n<img width=\"1600\" height=\"740\" src=\"https://akismet455732288.files.wordpress.com/2023/12/image-5.png\" alt=\"plan options for Jetpack AI\" class=\"wp-image-283582\" />\n\n\n\n<p>This is a strong offer because it explains the benefit right in the first sentence, “Try our AI Assistant for free to <strong>boost your content creation.</strong>”&nbsp;</p>\n\n\n\n<p>They’re also transparent about long-term pricing with the paid information directly next to the free trial breakdown.&nbsp;</p>\n\n\n<p>The goal is to make prospects feel comfortable, informed, and excited about your product during this phase. Think about ways you can adjust your trials or language to feel safer for&nbsp;prospects.</p>\n\n<h2 class=\"wp-block-heading\">8. Showcase your value proposition with compelling case&nbsp;studies</h2>\n\n\n<p>A value proposition is a clear statement that explains how your product or service solves a specific problem or fulfills a need for your target audience.&nbsp;</p>\n\n\n\n<p>SaaS marketers often use case studies to boost sales. Why? Because they provide real-world examples of how your solution addresses similar challenges for other customers. They work as social proof.&nbsp;</p>\n\n\n<p>Here’s a case study from&nbsp;Mailchimp:</p>\n\n\n<img width=\"851\" height=\"688\" src=\"https://akismet455732288.files.wordpress.com/2023/12/image-6.png\" alt=\"case study page from Mailchimp with a video\" class=\"wp-image-283583\" />\n\n\n\n<p>The video immediately makes the case study personal.&nbsp;</p>\n\n\n\n<p>The case study also highlights stats and customer quotes, which further increase its perceived authority.&nbsp;</p>\n\n\n\n<img width=\"1081\" height=\"465\" src=\"https://akismet455732288.files.wordpress.com/2023/12/image-7.png\" alt=\"Mailchimp landing page with stats and testimonials\" class=\"wp-image-283584\" />\n\n\n<p>It’s also skimmable. Mailchimp breaks down the case study with headers like “The challenge” and “The tools”. The word length also falls just under 1,000&nbsp;words.</p>\n\n<p>Balancing emotions and hard data in case studies connects with the audience while providing compelling evidence to back up your value&nbsp;proposition.</p>\n\n<h2 class=\"wp-block-heading\">9. Turn satisfied customers into brand&nbsp;advocates</h2>\n\n\n<p>Convert happy customers into brand advocates by using their positive experiences to spread the word about your brand through recommendations, reviews, and social sharing.&nbsp;</p>\n\n\n\n<p>Your existing customers are a powerful source of credibility and influence. This approach works for lead generation because it taps into the trustworthiness of online reviews — <a href=\"https://www.brightlocal.com/research/local-consumer-review-survey/\" target=\"_blank\" rel=\"noreferrer noopener\">46% of consumers</a> consider them as reliable as personal recommendations from friends or family.&nbsp;</p>\n\n\n<p>Want to encourage&nbsp;reviews?</p>\n\n<p>Try sending a reminder email to encourage people to leave reviews. Make the process as simple as possible. For example, you might include a button that navigates directly to the review&nbsp;form.</p>\n\n<p>You could also incentivize customers by allowing them to enter a drawing to win a $100&nbsp;voucher.</p>\n\n\n<p>Once customers leave reviews, repurpose them as posts on social media platforms.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">10. Create a referral program&nbsp;</h2>\n\n\n\n<p>Referral programs are systems where brands reward existing customers for recommending a product or service to others.&nbsp;</p>\n\n\n<p>People trust recommendations from friends and family members, so word&#8209;of&#8209;mouth marketing can lead to higher conversion rates and improved brand&nbsp;loyalty.</p>\n\n\n<p>PayPal, for example, has a popular referral program.&nbsp;</p>\n\n\n\n<img width=\"1223\" height=\"817\" src=\"https://akismet455732288.files.wordpress.com/2023/12/image-8.png\" alt=\"landing page about PayPal\'s referral program\" class=\"wp-image-283585\" />\n\n\n<p>If you refer it to someone, you and they earn $10. It’s a win&#8209;win situation — you get up to $100, and PayPal gets more&nbsp;customers.</p>\n\n\n<p>But a referral program only works well if you offer the right incentives.&nbsp;</p>\n\n\n<p><a href=\"https://info.saasquatch.com/rs/162-BJJ-156/images/StateOfReferralMarketing-SaaSquatch-V1.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">Research</a> shows that dollar credit is the most common referral program reward type, used in over 50% of programs for promoters and referred friends. Other incentives include percent discounts, gift cards, subscription time, cash, and&nbsp;points.</p>\n\n<h2 class=\"wp-block-heading\">11. Invest in user&#8209;generated content to build&nbsp;credibility</h2>\n\n<p>User&#8209;generated content (UGC) is any content created by unpaid contributors — typically customers or users — rather than the brand&nbsp;itself.</p>\n\n\n<p>UGC works well — <a href=\"https://715411.fs1.hubspotusercontent-na1.net/hubfs/715411/TINT%20-%20Downloads/State_of_Social_and_UGC_2023_TINT.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">research</a> shows that prospective customers consider it the most trustworthy content.&nbsp;</p>\n\n\n<p>Why? UGC highlights genuine insights and experiences to create a sense of credibility and&nbsp;reliability.</p>\n\n\n<p>Chipotle’s entire social feed, for example, is full of UGC.&nbsp;</p>\n\n\n\n<img width=\"739\" height=\"1600\" src=\"https://akismet455732288.files.wordpress.com/2023/12/image-9.png\" alt=\"Chipotle Instagram account featuring lots of user-generated content\" class=\"wp-image-283586\" />\n\n\n<p>Three ways to generate&nbsp;UGC:</p>\n\n\n<ul><li><strong>Run a giveaway or contest</strong>. A contest encourages customers to share their experiences with your product or service in exchange for a chance to win a prize. It builds engagement and highlights real user satisfaction and&nbsp;enthusiasm.</li>\n\n<li><strong>Use a branded hashtag</strong>. Branded hashtags invite customers to share their content. These hashtags make UGC easily discoverable, increasing its reach and&nbsp;impact.</li>\n\n<li><strong>Collaborate with creators and influencers</strong>. Content creators and influencers help your UGC reach a broader audience. These individuals often have dedicated and engaged followers who trust their recommendations and&nbsp;experiences.</li></ul>\n\n\n<h2 class=\"wp-block-heading\">12. Use social listening to engage with potential&nbsp;leads</h2>\n\n\n<p>Social listening involves monitoring social media channels and online platforms to track and analyze conversations, mentions, and trends related to your brand or industry in real-time.&nbsp;</p>\n\n\n\n<p>People now spend an average of <a href=\"https://www.statista.com/statistics/433871/daily-social-media-usage-worldwide/\" target=\"_blank\" rel=\"noreferrer noopener\">two and a half hours</a> on social media every day.&nbsp;</p>\n\n\n\n<img width=\"730\" height=\"466\" src=\"https://akismet455732288.files.wordpress.com/2023/12/image-10.png\" alt=\"graph showing minutes per day spent on social media over an 11-year span\" class=\"wp-image-283587\" />\n\n\n<p>Social listening allows you to tune in to conversations, identify leads, and engage with potential customers you might have otherwise&nbsp;missed.</p>\n\n\n<p>Set up alerts to receive notifications about specific keywords or mentions. Social listening also gives you more visibility into brand sentiment.&nbsp;</p>\n\n\n<p>The result is a more proactive approach in your lead generation process — you can respond quicker, initiate conversations, and nurture potential leads through proactive&nbsp;engagement.</p>\n\n<h2 class=\"wp-block-heading\">13. Expand your reach with cross&#8209;promotion&nbsp;partnerships</h2>\n\n<p>Cross&#8209;promotion partnerships, also known as brand collaborations, are two brands joining forces to promote each other. These partnerships are powerful because they introduce your brand to a new audience that&#8217;s likely to already be interested in what you&nbsp;offer.</p>\n\n\n<p>Let&#8217;s say you sell fitness gear, and you team up with a healthy snack brand.&nbsp;</p>\n\n\n\n<p>Both kinds of products are used by people interested in improving their health.&nbsp;</p>\n\n\n\n<p>Your fitness-loving customers might discover those tasty snacks, and their snack fans might want your awesome gear. These collaborations boost both brands’ visibility and trustworthiness.&nbsp;</p>\n\n\n<h2 class=\"wp-block-heading\">14. Use influencer marketing to reach new&nbsp;audiences</h2>\n\n<p>Collaborate with individuals who have a significant and engaged following in your niche or industry to tap into their established audience and&nbsp;credibility.</p>\n\n<p><a href=\"https://influencermarketinghub.com/ebooks/Influencer_Marketing_Benchmark_Report_2022.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">90% of respondents</a> in a survey consider influencer marketing to be&nbsp;effective.</p>\n\n\n<p>Skincare brand, La Roche Posay, for example, collaborates with Dr. Mamina Turegano, MD, a TikTok influencer and certified dermatologist.&nbsp;</p>\n\n\n\n<img width=\"739\" height=\"1600\" src=\"https://akismet455732288.files.wordpress.com/2023/12/image-11.png\" alt=\"TikTok video of a collaboration between a doctor and skincare brand\" class=\"wp-image-283588\" />\n\n\n\n<p><a href=\"https://vm.tiktok.com/ZGJwVy6yb/\">Source</a></p>\n\n\n<p>Dr. Marina&#8217;s expertise adds a lot of authority to the content, making it a powerful tool in reaching and engaging a specific&nbsp;audience.</p>\n\n\n<p>Her content is not just promotional —&nbsp;she delivers real value to her followers and backs up her advice with knowledge and experience.</p>\n\n\n<p>Collaborate with influencers who fit your brand and resonate with your audience for better&nbsp;results.</p>\n\n<h2 class=\"wp-block-heading\">15. Host a virtual summit to build thought&nbsp;leadership</h2>\n\n\n<p>Virtual summits are online events where experts share insights on a specific topic over multiple sessions or days.&nbsp;</p>\n\n\n<p>These events establish credibility, build trust, and increase industry authority, positioning you as a go&#8209;to source for information and&nbsp;solutions.</p>\n\n<p>Adobe Summit, for example, is a hybrid virtual summit for customers who use Adobe&#8217;s digital experience&nbsp;tools.</p>\n\n\n<img width=\"1134\" height=\"940\" src=\"https://akismet455732288.files.wordpress.com/2023/12/image-12.png\" alt=\"Adobe Summit landing page with information about the event\" class=\"wp-image-283589\" />\n\n\n\n<p>When hosting a virtual summit, follow Adobe&#8217;s lead by inviting authoritative speakers who are experts in your field.&nbsp;</p>\n\n\n\n<img width=\"1600\" height=\"1393\" src=\"https://akismet455732288.files.wordpress.com/2023/12/image-13.png\" alt=\"Adobe Summit page with information keynotes\" class=\"wp-image-283590\" />\n\n\n\n<p>Promote the event well in advance. Adobe, for example, promotes the summit at least six months ahead of time. This builds anticipation and attracts a larger audience.&nbsp;</p>\n\n\n<p>Also, they provide sneak peeks of the sessions, allowing their audience to gauge whether the summit is worth&nbsp;attending.</p>\n\n\n<img width=\"800\" height=\"625\" src=\"https://akismet455732288.files.wordpress.com/2023/12/image-14.png\" alt=\"list of sessions from Adobe Summit\" class=\"wp-image-283591\" />\n\n\n\n<p>To make sure virtual summits help you get new leads, use smart tactics like sign-up forms, materials people can download, and chances for attendees to connect with each other.&nbsp;</p>\n\n\n\n<p>These tricks help you collect info and generate leads from attendees and keep these prospects engaged even after the summit.&nbsp;</p>\n\n\n<h2 class=\"wp-block-heading\">16. Create a podcast series to showcase your&nbsp;expertise</h2>\n\n<p>Podcasts are the new frontier for brand visibility and engagement. Currently, <a href=\"https://www.edisonresearch.com/the-infinite-dial-2021-2/\" target=\"_blank\" rel=\"noreferrer noopener\">38% of Americans</a> over age 12 —109 million people — listen to podcasts monthly. They provide a unique platform to share insights, connect with audiences, and establish authority in a format that&#8217;s both convenient and increasingly&nbsp;popular.</p>\n\n<p>Bloomberg, for example, has a podcast that focuses on financial and economic insights. It positions the brand as a trusted source for expert analysis and helps it stay connected with its&nbsp;audience.</p>\n\n\n<img width=\"1798\" height=\"878\" src=\"https://akismet455732288.files.wordpress.com/2023/12/image12.png\" alt=\"Bloomburg Masters in Business podcast\" class=\"wp-image-283592\" />\n\n\n<p>Here are some tips for creating an engaging podcast&nbsp;series:</p>\n\n\n<ul><li>Focus on a specific topic or niche that aligns with your brand&#8217;s expertise and target audience&#8217;s&nbsp;interests.</li>\n\n<li>Outline episodes, create a content calendar, and build a consistent posting&nbsp;schedule.</li>\n\n<li>Share your podcast episodes on social media, your website, and through email marketing to reach a wider&nbsp;audience.</li>\n\n<li>Invite industry experts or guests relevant to your niche to provide diverse&nbsp;perspectives.</li>\n\n<li>Optimize your podcast titles, descriptions, and keywords to improve discoverability on podcast&nbsp;platforms.</li>\n\n<li>Maintain a regular publishing schedule, so your audience knows when to expect content and what each episode will&nbsp;include.</li></ul>\n\n\n<p>A podcast is a great way to establish your brand&#8217;s authority, connect with your audience, and tap into the growing&nbsp;trend.</p>\n\n<h2 class=\"wp-block-heading\">17. Use webinars to educate and engage potential&nbsp;leads</h2>\n\n\n<p>Webinars are online seminars or workshops that allow you to present information, interact with your audience in real time, and provide valuable education on a specific topic or subject.&nbsp;</p>\n\n\n<p>A study by the Content Marketing Institute showed that <a href=\"https://contentmarketinginstitute.com/wp-content/uploads/2022/10/b2b-2023-research-final.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">47% of B2B marketers</a> said webinars produced the best results in 2021. It’s easy to see why: they offer an interactive learning experience and encourage engagement which builds your authority and relationship with potential&nbsp;leads.</p>\n\n<p>AI&#8209;powered content tool, Clearscope, for example, hosts regular webinars with industry&nbsp;experts.</p>\n\n\n<img width=\"895\" height=\"853\" src=\"https://akismet455732288.files.wordpress.com/2023/12/image-15.png\" alt=\"Clearscope webinars list on their website\" class=\"wp-image-283593\" />\n\n\n<p>Here are some tips on getting webinars&nbsp;right:</p>\n\n\n<ul><li><strong>Choose relevant topics</strong>: Focus on topics that address your audience&#8217;s challenges and interests to ensure engagement and&nbsp;relevance.</li>\n\n<li><strong>Create an interactive Q&amp;A session</strong>. Include interactive Q&amp;A sessions to encourage audience participation and address their specific&nbsp;queries.</li>\n\n<li><strong>Invite experts</strong>. Collaborate with industry experts or influencers to lend credibility and attract a wider&nbsp;audience.</li>\n\n\n<li><strong>Promote it</strong>. Promote your webinar on social and through email.&nbsp;</li>\n\n\n<li><strong>Follow up</strong>. Follow up with attendees and provide additional resources or offers to guide leads further down the sales&nbsp;funnel.</li></ul>\n\n\n<h2 class=\"wp-block-heading\">18. Engage and qualify leads with live chat operators and&nbsp;bots</h2>\n\n\n<p>Live chat operators and bots qualify leads by having conversations with website visitors.&nbsp;</p>\n\n\n\n<p>They ask questions to figure out if a visitor is a good fit for your product or service. If they are, the bots send those leads to the right place for follow-up.&nbsp;</p>\n\n\n<p>Lead qualification ensures you focus your sales and marketing efforts on individuals who are genuinely interested and likely to convert into paying customers. A strong focus increases efficiency and increases conversion&nbsp;rates.</p>\n\n<p>Tailor bots with specific filters and ask relevant questions. Qualifying questions&nbsp;include:</p>\n\n\n<ul><li>What brings you to our website&nbsp;today?</li>\n\n<li>Are you looking for a specific product or&nbsp;service?</li>\n\n<li>What is your marketing budget or price&nbsp;range?</li>\n\n<li>When do you plan to make a decision or&nbsp;purchase?</li>\n\n<li>Have you used similar products/services&nbsp;before?</li>\n\n<li>Do you have any specific requirements or&nbsp;preferences?</li></ul>\n\n\n<h2 class=\"wp-block-heading\">19. Use retargeting to bring back lost&nbsp;leads</h2>\n\n\n<p>Retargeting involves displaying tailored advertisements to individuals who’ve previously visited your website or engaged with your brand but didn&#8217;t take the desired action.&nbsp;</p>\n\n\n<p>It reminds potential customers of their initial interest and gives them a second chance to convert, ultimately improving conversion rates and&nbsp;ROI.</p>\n\n\n<p>Suppose you visit Old Navy&#8217;s website, browse through some clothing items, but leave without making a purchase. Later, you start seeing Old Navy ads showing the exact items you looked at.&nbsp;</p>\n\n\n\n<img width=\"585\" height=\"602\" src=\"https://akismet455732288.files.wordpress.com/2023/12/image-16.png\" alt=\"retargeting ad from Old Navy\" class=\"wp-image-283594\" />\n\n\n<p>That&#8217;s retargeting in action — it gives you a nudge to come back and complete your purchase. It&#8217;s a smart lead gen strategy to re&#8209;engage lost prospects and turn potential customers into actual&nbsp;ones.</p>\n\n<p>Retargeting only works when you don’t overdo it. Strike a balance and provide relevant, personalized content that genuinely reconnects with the audience&#8217;s interests and&nbsp;needs.</p>\n\n<h2 class=\"wp-block-heading\">20. Target key decision makers with account&#8209;based&nbsp;advertising</h2>\n\n<p>An account&#8209;based marketing strategy creates customized lead generation campaigns just for important leads to win their&nbsp;business.</p>\n\n\n<p>A targeted focus leads to optimal use of resources, a direct link to key decision makers, and increased chances of landing big deals.&nbsp;</p>\n\n\n<p><a href=\"https://www.gartner.ca/en/sales/insights/b2b-buying-journey\" target=\"_blank\" rel=\"noreferrer noopener\">Gartner’s research</a> shows that the typical buying group for a complex B2B solution involves six to ten decision makers. Account&#8209;based advertising targets these decision makers with specific ads and messages to address their unique needs and&nbsp;concerns.</p>\n\n<p>Here’s an example of an Indeed ad that targets decision makers at&nbsp;Pepsi:</p>\n\n\n<img width=\"1202\" height=\"624\" src=\"https://akismet455732288.files.wordpress.com/2023/12/image-17.png\" alt=\"ad from Indeed targeting Pepsi employees\" class=\"wp-image-283595\" />\n\n\n<p>So, how do you create ads that speak to these&nbsp;individuals?</p>\n\n<p>Start with their challenges. Understand what keeps them up at night and tailor your messaging to provide solutions to these issues. Focus on the benefits of your product or service that directly address their&nbsp;concerns.</p>\n\n<h2 class=\"wp-block-heading\">What about lead conversion? What are proven best&nbsp;practices?</h2>\n\n\n<p>You&#8217;ve attracted leads to your business —&nbsp;what now? Focus on converting these leads into loyal customers. Here are some best practices to maximize your lead conversion rate:</p>\n\n\n<h3 class=\"wp-block-heading\">1. Follow up with leads to maintain their&nbsp;interest</h3>\n\n\n<p>Following up with leads reminds them about your business and shows you care about their needs. Persistence matters — studies suggest it can take <a href=\"https://www.wordstream.com/blog/ws/2021/03/18/how-to-follow-up-with-sales-leads\">seven to ten interactions</a> for a lead to become a customer.&nbsp;</p>\n\n\n<p>When sending follow&#8209;up emails, keep them brief, upbeat, and focused on offering something valuable to the lead. Short and positive messages ensure your communication stays engaging and increase the chances of turning leads into loyal&nbsp;customers.</p>\n\n<h3 class=\"wp-block-heading\">2. Develop a lead scoring system to prioritize&nbsp;leads</h3>\n\n\n<p>A lead scoring system is a method of evaluating and ranking leads based on their level of interest and likelihood to convert into customers. You identify the best prospects by assigning numerical values to different attributes and behaviors.&nbsp;</p>\n\n\n\n<p>You focus your efforts and resources on leads with the highest conversion potential with this system.&nbsp;</p>\n\n\n<p>Scoring leads allows you to optimize your time and resources and maximize your return on investment. Consider these lead scoring&nbsp;tips:</p>\n\n\n<ul><li><strong>Set thresholds</strong>. Define specific criteria a lead must meet to be considered &#8220;sales ready,&#8221; like a minimum score indicating high interest or&nbsp;engagement.</li>\n\n<li><strong>Establish rules</strong>. Create rules for how leads are scored based on actions, like opening emails, visiting pricing pages, or downloading&nbsp;resources.</li>\n\n<li><strong>Assign points</strong>. Assign numerical values to different lead behaviors, with higher scores for actions that show stronger interest or intent to&nbsp;purchase.</li>\n\n<li><strong>Review and adjust</strong>. Monitor and refine your lead scoring system as you gather more data and insights to ensure&nbsp;accuracy.</li>\n\n<li><strong>Collaborate with sales</strong>. Establish what constitutes a qualified lead and adjust scoring criteria accordingly to improve lead handoffs and&nbsp;conversions.</li></ul>\n\n\n<h3 class=\"wp-block-heading\">3. Use a CRM to manage and track your&nbsp;leads</h3>\n\n\n<p>A customer relationship management (CRM) tool, like <a href=\"https://jetpackcrm.com/\">Jetpack CRM</a>, is your go-to for staying organized with leads. It keeps all lead info in one place, simplifies communication, and automates tasks.&nbsp;</p>\n\n\n\n<img width=\"1600\" height=\"784\" src=\"https://akismet455732288.files.wordpress.com/2023/12/image-18.png\" alt=\"Jetpack CRM homepage with the text \" />\n\n\n\n<p>With Jetpack CRM, sort and track leads, follow their interactions, and watch their journey closely. This makes it easier to give them personalized attention, prioritize who to reach out to, and nurture leads. Plus, it provides smart data to make decisions that boost your chances of converting prospects into loyal customers.&nbsp;</p>\n\n\n<h3 class=\"wp-block-heading\">4. Implement email marketing to nurture&nbsp;leads</h3>\n\n\n<p>Stay in touch with potential customers through email marketing and provide them with valuable content, updates, and offers that keep your brand top of mind.&nbsp;</p>\n\n\n\n<p>Delivering tailored messages at the right time guides leads through the buying journey and builds trust.&nbsp;</p>\n\n\n<p>Divide your leads into groups based on interests, behaviors, or demographics to send relevant content to each segment. Use personalization techniques to address leads by name and tailor content to their needs and&nbsp;preferences.</p>\n\n<p>Develop informative and engaging content that addresses your leads&#8217; pain points and interests. You can offer blog posts, eBooks, webinars, or exclusive offers. Set up automated email sequences that deliver a series of messages over time. Gradually introduce leads to your brand, products, and&nbsp;services.</p>\n\n<p>Focus on solving problems and providing value in your emails. Show leads how your offerings benefit them with success stories, testimonials, and case&nbsp;studies.</p>\n\n<h3 class=\"wp-block-heading\">5. Use customer feedback to improve your sales&nbsp;process</h3>\n\n<p>Gather feedback from customers through surveys, reviews, and direct communication. Encourage honest opinions about their experience with your sales team and product. Here&#8217;s how to make the most of the feedback you&nbsp;get:</p>\n\n\n<ul><li><strong>Analyze responses</strong>. Review the feedback to identify recurring themes, issues, or areas for improvement. Look for patterns in what customers appreciate and where they face&nbsp;challenges.</li>\n\n<li><strong>Prioritize feedback</strong>. Categorize feedback into critical issues that need immediate attention and areas for long&#8209;term improvement. This ensures you tackle the most pressing concerns&nbsp;first.</li>\n\n<li><strong>Adjust your sales approach</strong>. Based on feedback, refine your approach. Train your sales team to address common concerns and&nbsp;objections.</li></ul>\n\n\n<h3 class=\"wp-block-heading\">6. Follow up with customers to encourage repeat business and&nbsp;referrals</h3>\n\n\n<p>Stay in touch with your customers to build an ongoing relationship. A thank-you message after their purchase and asking how their experience was is always a great place to start.&nbsp;</p>\n\n\n<p>Also, keep them in the loop by letting them know about any new deals or products. If they have questions or issues, provide excellent support. Encourage them to refer friends by offering rewards and making it simple. Staying connected and showing appreciation keeps your customers loyal and earns new ones through their&nbsp;recommendations.</p>\n\n<h2 class=\"wp-block-heading\">Frequently asked&nbsp;questions</h2>\n\n<h3 class=\"wp-block-heading\">What are some common lead generation mistakes to&nbsp;avoid?</h3>\n\n\n<p>Common lead generation mistakes include not defining your target audience, neglecting data quality, and relying on a single lead generation channel. Failing to nurture leads, ignoring customer feedback, and neglecting mobile optimization can also hinder success.&nbsp;</p>\n\n\n<p>Make sure you measure and analyze your lead generation efforts so you can optimize them. Don&#8217;t forget personalization and adapt to evolving trends. Lead generation is more effective when you avoid these&nbsp;mistakes.</p>\n\n<h3 class=\"wp-block-heading\">How can I improve my lead capture forms to maximize&nbsp;conversions?</h3>\n\n<p>Streamline the form by keeping it concise and requesting only essential information. Use a clear and compelling call&#8209;to&#8209;action (CTA) that conveys value and implement autofill and smart form features to reduce user effort. It’s also a good idea to A/B test different form layouts and CTA text to identify what resonates best with your audience.&nbsp;</p>\n\n<p>Lastly, reassure users about data security and provide social proof, like trust badges or testimonial snippets, to boost confidence. Regularly analyze form performance and iterate based on insights to optimize for higher&nbsp;conversions.</p>\n\n<h3 class=\"wp-block-heading\">Should I use CAPTCHA on lead capture&nbsp;forms?</h3>\n\n<p>No, using traditional CAPTCHA can frustrate users and reduce conversion rates. Instead, use AI&#8209;driven anti&#8209;spam solutions like Akismet. This powerful tool filters out spam submissions while providing a seamless experience for genuine users. It also helps you maintain the security of your forms without subjecting users to the inconvenience and frustration of&nbsp;CAPTCHA.</p>\n\n<h3 class=\"wp-block-heading\">What is Akismet, and how can it help with form conversion&nbsp;rates?</h3>\n\n<p>Akismet is an AI&#8209;powered anti&#8209;spam solution. It improves form conversion rates by filtering out spam submissions, ensuring you capture only legitimate leads. Eliminating CAPTCHA challenges streamlines the lead capture process and creates a user&#8209;friendly and frictionless experience. With fewer barriers, visitors are more likely to fill out forms, resulting in higher conversion&nbsp;rates.</p>\n\n<h3 class=\"wp-block-heading\">What types of companies generally use&nbsp;Akismet?</h3>\n\n<p>Akismet is a trusted choice for a wide range of companies, from small businesses and bloggers to ecommerce sites and <a href=\"https://akismet.com/enterprise/\">large enterprises</a>. Over 100 million sites use it to combat spam, making it a go&#8209;to solution. Microsoft, <a href=\"https://akismet.com/blog/convertkit-customerstory/\">ConvertKit</a>, Bluehost, and many others rely on Akismet, attesting to its credibility and reliability in fighting&nbsp;spam.</p>\n\n<h2 class=\"wp-block-heading\">Akismet: AI&#8209;powered anti&#8209;spam for lead generation&nbsp;forms</h2>\n\n\n<p>Lead generation forms are the lifeblood of any business that wants to convert website visitors into potential customers. But spam submissions create a challenging user experience and lead to missed opportunities.&nbsp;</p>\n\n\n<p>That&#8217;s where Akismet steps in as a reliable, AI&#8209;powered anti&#8209;spam solution. Integrating Akismet ensures a smoother, spam&#8209;free experience that ultimately improves conversion rates. Try it out today and focus on what matters most — nurturing high&#8209;quality&nbsp;leads.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Dec 2023 14:15:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Rob Pugh\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"HeroPress: Being useful to people, with WordPress – Être utile aux autres, avec WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=6298\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:148:\"https://heropress.com/essays/being-useful-to-people-with-wordpress/#utm_source=rss&utm_medium=rss&utm_campaign=being-useful-to-people-with-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:26756:\"<img width=\"1024\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/2023/12/122223-min.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: I started by going back to my roots.\" /><div class=\"wp-block-group is-layout-constrained wp-block-group-is-layout-constrained\"><div class=\"wp-block-group__inner-container\">\n<p><a href=\"https://heropress.com/feed/#fr\">Cet essai est également disponible en français.</a></p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-hi-computer\">Hi Computer</h2>\n\n\n\n<p>I was born in 1996, straddling the X and Y generations. I had the good fortune to live a happy childhood where I was very much supported by my parents, each in their own way, in my passions. They both taught me to trust myself and to try things out, for which I&#8217;m very grateful. When I was a child, personal computers were already democratized, but many people didn&#8217;t have one. This was my case until I was 10, when my parents decided to buy one.</p>\n\n\n\n<p>Upon gaining access to my first computer, I was intrigued by how it works and the possibilities it offered. It allowed me to explore new creative way (so much time on Pivot Animator) and introduced me to the realm of online games! Unfortunately for my parents, my experimentation led to the death of two computers.</p>\n\n\n\n<p>I had a strong fondness for browser games like Travian, Shakes &amp; Fidget, Hordes… It was this passion that led me into the world of content creation for the web. Spending a substantial amount of time on these games&#8217; forums, a friend and I created our first forum for our gaming guild. Using an online forum creation tool, we could inject some code for customization—a kind of initiation into Content Management Systems (CMS) and coding for me! I remember thoroughly enjoying it, investing a lot of time in managing this small, private forum.</p>\n\n\n\n<p>In 2011, as I entered high school, I finally obtained what felt like a treasure trove to me at that time &#8211; my very own personal computer! Enthused by graphic design, I began crafting visuals using a portable version of Photoshop, mainly for the gaming forums where I spent a significant amount of time. I dedicated myself to creating banners, avatars, and wallpapers centered around the game themes that united us, providing these creations for my friends and forum users.<br /></p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-discover-a-new-world\">Discover a new world</h2>\n\n\n\n<p>I had a strong desire to pursue this creative path, so in 2014, I opted for a web design program in Laval. The curriculum covered a wide array of skills: programming, mathematics, graphics design, photography, video editing, among others. I&#8217;ve consistently found mathematical and logical areas challenging, making the foundational aspects of the course in these subjects quite laborious for me. Conversely, I derived immense enjoyment from everything connected to graphic design.</p>\n\n\n\n<div class=\"wp-block-kadence-image kb-image6298_571a4b-06\"><img width=\"1024\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/2023/12/1-discover-1024x1024.jpg\" alt=\"Man looking through the eye piece of a video camera.\" class=\"kb-img wp-image-6320\" /></div>\n\n\n\n<p>My first encounter with WordPress came during an internship related to my studies. The company I joined specialized in selling products online through a small e-commerce platform they had internally built using WordPress and WooCommerce. My tasks involved managing the website: integrating visuals, updating content, configuring plugins, improving the interface using a page builder, and handling product management. It evoked a similar feeling to when I first created my gaming blog—there was a multidisciplinary spirit and a creative vibe. I enjoyed this hybrid approach that blended both creativity and technical aspects.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-leveling\">Leveling</h2>\n\n\n\n<p>At the end of 2016, I made a move to settle in the south of France and initiated my first freelance endeavor alongside pursuing additional training in web design at Aix-Marseille University. My freelance work involved various graphic design projects and community management tasks. Despite realizing the challenges of generating sufficient income, I remained motivated by the sense of independence and freedom. I began experimenting with WordPress through personal projects. Over the course of two years, I self-educated extensively. I ventured into managing web hosting and a small server, acquainted myself with Linux and Ubuntu, learned to customize themes, and made simple PHP additions. I navigated through trial and error, learning from mistakes, and gradually honed my overall understanding of the tool, becoming better at adapting it to suit my needs.</p>\n\n\n\n<div class=\"wp-block-kadence-image kb-image6298_5dc9a3-bf\"><img width=\"1024\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/2023/12/2-leveling-1024x1024.jpg\" alt=\"View down old European street from the third floor window,\" class=\"kb-img wp-image-6321\" /></div>\n\n\n\n<p>During a second company internship, I embarked on creating a website where I developed my first custom theme using PHP templates and a few custom fields. It was simple, but I felt quite proud to build a theme &#8220;from scratch&#8221; without relying on page builders or additional tools. Shortly after, a significant milestone occurred in my freelance journey: I sold my first website! It was an e-commerce platform built on WordPress and WooCommerce for a local publishing house. This venture introduced me to new challenges such as SEO, ensuring site security, and providing client training in WordPress usage and essential plugins for the site. I felt incredibly proud to apply my skills to a tangible project and gain professional recognition.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-team-up\">Team Up</h2>\n\n\n\n<p>After that project, I wanted a change. I liked working on my own, but I felt very lonely. Every day felt the same, and I struggled to stay motivated. After feeling excited about selling my first &#8216;real&#8217; web project, things started to feel like a series of failures, which stressed me out because my savings were running low. I sent out my resume hoping to find a job that suited me. I had a few interviews with digital service companies (named ESN in French), and it was disheartening. I felt like my wide range of skills didn&#8217;t matter, and whenever I talked about WordPress, they said it wasn&#8217;t &#8216;technical&#8217; enough.</p>\n\n\n\n<p>After six months of searching, I finally found a job I was excited about at a web agency in Avignon. It felt like I&#8217;d been looking for a long time, but now I see I was lucky to find this opportunity quickly. I started as a front-end developer and mostly worked on WordPress projects, doing various tasks like crafting or customizing themes, configuring or developing plugins, keeping websites running smoothly, training clients and agency staff. Collaborating with complementary roles where everyone understood each other’s tasks was so nice. Finding a common way to handle different missions was so exciting! This team synergy, the great diversity of tasks, sharing our experiences and perspectives, greatly boosted my motivation and skill development.</p>\n\n\n\n<div class=\"wp-block-kadence-image kb-image6298_8ff45f-a9\"><a href=\"https://heropress.com/wp-content/uploads/2023/12/3-teamup.jpg\" class=\"kb-advanced-image-link\"><img width=\"1024\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/2023/12/3-teamup-1024x1024.jpg\" alt=\"Office space with tables covered with computer monitors.\" class=\"kb-img wp-image-6322\" /></a></div>\n\n\n\n<p>I worked for four years in this agency, whose strategy evolved significantly as its size exploded (from 20 to 100 employees in three years). Choices tended towards large, architectured projects with less hybrid solutions. Over time, I felt less connected to the agency&#8217;s decisions and the kind of clients they had. I wondered about the meaning and impact of my work. Was I making things better for people? Was what I did ethical? In the end, did it really matter? </p>\n\n\n\n<p>For a while, I&#8217;ve been interested in eco-design, privacy, and web quality topics. I&#8217;ve been reading a lot of articles written by folks that resonated to me (like Framasoft, Designers Éthiques, Whodunit, Opquast&#8230;). There was a stark disparity between my professional experience and their meaningful discourse. The work atmosphere also changed; I didn&#8217;t feel the teamwork that I enjoyed when I first started, but more like a &#8216;fog&#8217; of disagreements and noises.</p>\n\n\n\n<p>This was tough for me: I worried about going to work and had trouble sleeping. I truly felt like my time was slipping away. I left in March 2023, and what a good decision it was!</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-shifting-for-better\">Shifting for better</h2>\n\n\n\n<p>I started by going back to my roots; I need to slow down, reassess my desires to figure out where I stand, to do something different. I return to Brittany and settle in Saint-Malo near my family. My primary desire is to reclaim my time. Seven years in the South… what I missed the most was the sea. I know I had the Mediterranean nearby, but strangely it didn&#8217;t have the same effect on me. I&#8217;ve always wanted to surf, so I buy an old used board, a wetsuit, and I go into the water almost every day! It clears my mind and boosts my confidence. I&#8217;ve never been much of an athlete, but this really resonates with me.</p>\n\n\n\n<p>I&#8217;m not particularly skilled with my hands, nor have I learned how to do things. I want to learn, with ecological and sustainable issues in mind. I sign up for participatory workshops and meet incredibly interesting people. We share our experiences, our knowledge, life moments… and it feels good.</p>\n\n\n\n<p>I start reading a lot again &#8211; science fiction, fantasy, essays, classics, and discussions on forums, especially those on wordpress.org.</p>\n\n\n\n<p>I come across a discussion about creating a WordPress site using a smartphone. &#8220;Wait, is something like this possible?&#8221; Through the conversation, I notice the name of a contributor: <a href=\"https://heropress.com/essays/alice-robert-and-wordpress/\">Mark-Andrew</a>. I visit his site and I&#8217;m blown away; the guy creates sites for people who need them for free, &#8220;Free Websites for good Humans.&#8221; It&#8217;s simple, yet I find it incredibly inspiring. For me, Mark-Andrew has found a way to give meaning to his skills and align it with his lifestyle.</p>\n\n\n\n<div class=\"wp-block-kadence-image kb-image6298_f15404-e9\"><a href=\"https://heropress.com/wp-content/uploads/2023/12/4-shifting-1.jpg\" class=\"kb-advanced-image-link\"><img width=\"1024\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/2023/12/4-shifting-1-1024x512.jpg\" alt=\"Two pictures in one.  On the left, someone surfing in the distance.  On the right a man holding a wooden framework.\" class=\"kb-img wp-image-6324\" /></a></div>\n\n\n\n<p>That&#8217;s what I want to do. I&#8217;ve learned a lot about the WordPress ecosystem, and I continue to learn every day. Why not try to help those in need with this open, free, and community-oriented solution? That would make sense!</p>\n\n\n\n<p>This is the path I want to travel &#8211; to make this accessible solution available to all who need it to express themselves and create. Furthermore, I want to contribute to the WordPress community. I&#8217;m considering starting with translations into French, but I hope to also contribute to the new site editor, which I find simply fantastic. We&#8217;ll see how it goes!</p>\n\n\n\n<p>WordPress taught the jack-of-all-trades kid to trust himself and feel useful. For that, thank you. And thank you, Mark-Andrew; I hope we&#8217;ll meet for a surfing session (On the water or the asphalt as you wish).</p>\n\n\n\n<p>Thank you for taking the time to read me <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f60a.png\" alt=\"😊\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<div class=\"wp-block-group is-layout-constrained wp-block-group-is-layout-constrained\"><div class=\"wp-block-group__inner-container\">\n<h1 class=\"wp-block-heading\" id=\"fr\">Être utile aux autres, avec WordPress</h1>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-salut-internet\">Salut Internet</h2>\n\n\n\n<p>Je suis né en 1996, à cheval entre la génération X et Y. J&#8217;ai eu la chance de vivre une enfance heureuse où j&#8217;ai été très soutenu par mes parents, chacun à sa manière, dans mes passions. Ils m&#8217;ont tous deux appris à me faire confiance et à essayer des choses, pour cela, je conçois beaucoup de gratitude à leur égard.  Quand j&#8217;étais enfant, l&#8217;informatique pour le grand publique était déjà démocratisé, mais beaucoup de gens n&#8217;avaient pas d&#8217;ordinateur personnel. Ce qui fut mon cas jusqu&#8217;à mes 10 ans où mes parents en on acquit un.</p>\n\n\n\n<p>Lorsque j&#8217;ai eu accès à ce premier ordinateur, j&#8217;ai tout de suite été intéressé par son fonctionnement et ce que je pouvais faire avec. Cela m&#8217;a donné accès à de nouvelles activités créatives (que de temps passé sur Pivot Animator) et aussi à l&#8217;univers du jeu sur PC ! Malheureusement pour mes parents, mes expérimentations ont conduit à la mort de deux ordinateurs. J&#8217;aimais beaucoup les jeux sur navigateur (Travian, Shakes &amp; Fidget, Hordes…) et c&#8217;est cet engouement qui m&#8217;a mis le doigt dans l&#8217;engrenage de la création de contenu pour le web. Je passais pas mal de temps sur les forums de ces jeux, et j&#8217;ai créé avec un ami un premier forum pour notre guilde de joueurs. Nous utilisions un outil en ligne de création de forum dans lequel nous pouvions injecter un peu de code pour la personnalisation. Ma toute première expérience avec un CMS et du code en somme ! Je me souviens avoir adoré ça et passé un temps fou sur ce petit forum privé.</p>\n\n\n\n<p>En 2011, arrivant au lycée, j&#8217;ai enfin eu accès au saint Graal, mon propre ordinateur personnel ! Je m&#8217;intéressais à la création graphique, et j&#8217;ai commencé à produire des visuels avec une version portable de Photoshop, toujours pour les forums de jeux sur lesquels je passais du temps. Je créais pour mes amis et des utilisateurs : des bannières, des avatars et fonds d&#8217;écrans sur les thèmes des jeux qui nous rassemblaient.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-tellement-de-choses-a-apprendre\">Tellement de choses à apprendre</h2>\n\n\n\n<p>J&#8217;avais envie de continuer sur cette voie créative et je me suis orienté en 2014 vers une formation de création pour le web à Laval. La palette de compétence enseignée était assez vaste : programmation, mathématiques, infographie, photographie, vidéo… J&#8217;ai toujours eu du mal avec les domaines mathématiques et logiques, et le socle de la formation sur ces sujets étaient assez laborieux pour moi. En revanche, je prenais beaucoup de plaisir à tout ce qui rapportait à la création graphique.</p>\n\n\n\n<div class=\"wp-block-kadence-image kb-image6298_2c4713-e3\"><img width=\"1024\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/2023/12/1-discover-1024x1024.jpg\" alt=\"Man looking through the eye piece of a video camera.\" class=\"kb-img wp-image-6320\" /></div>\n\n\n\n<p>Ma première utilisation de WordPress s&#8217;est présentée lors d&#8217;un stage lié à ma formation. L&#8217;entreprise que j&#8217;avais rejoint vendais des produits en ligne sur un petit e-commerce qu&#8217;ils avaient créé en interne avec WordPress et WooCommerce. J&#8217;avais pour tâche de m&#8217;occuper du site : intégrer des visuels, mettre à jour les contenus, configurer des plugins, ajuster l&#8217;interface avec un constructeur de page, gérer les produits…  Je retrouvais le même sentiment que lorsque j&#8217;avais créé mon premier blog de jeu, un esprit multidisciplinaire et un sentiment très créatif. J&#8217;aimais beaucoup cette approche très hybride de la création et de la technique.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-premiers-essais\">Premiers essais</h2>\n\n\n\n<p>Fin 2016, je suis parti m&#8217;installer dans le sud de la France où j&#8217;ai commencé ma première activité de freelance en parallèle d&#8217;une formation supplémentaire sur la création pour le web de l&#8217;université d&#8217;Aix-Marseille. Je réalisais quelques missions de création graphique et de community management. Je me suis rendu compte qu&#8217;il était difficile de dégager des revenus suffisants, mais j&#8217;étais motivé par les sentiments d&#8217;indépendance et de liberté. J&#8217;ai commencé à tester et à expérimenter sur WordPress à travers des petits projets personnels. Pendant deux ans, j&#8217;ai appris en autodidacte. Je me suis essayé à la gestion d&#8217;un hébergement web puis d&#8217;un petit serveur, j&#8217;ai découvert Linux et Ubuntu, j&#8217;ai appris à personnaliser des thèmes, à faire quelques ajouts simples en PHP. Je tâtonnais, je faisais des erreurs, je corrigeais… Petit à petit, je forgeais ma culture générale sur l&#8217;outil et j&#8217;arrivais de mieux en mieux à l&#8217;adapter à mes besoins.</p>\n\n\n\n<div class=\"wp-block-kadence-image kb-image6298_4071c3-b2\"><img width=\"1024\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/2023/12/2-leveling-1024x1024.jpg\" alt=\"View down old European street from the third floor window,\" class=\"kb-img wp-image-6321\" /></div>\n\n\n\n<p>Au cours d&#8217;un second stage en entreprise, je réalisais un site pour lequel je développais mon premier thème sur mesure avec des templates PHP et quelques champs personnalisés. Il était vraiment très simple, mais j&#8217;étais assez fier de bâtir un thème &#8220;from scratch&#8221; sans constructeur de page ni outils supplémentaires. Peu après, j&#8217;ai vécu une grande étape dans mon expérience de freelance : j&#8217;ai vendu un premier site internet ! Un e-commerce basé sur WordPress et WooCommerce pour une petite maison d&#8217;édition locale. Je me suis confronté à de nouvelles problématiques : Le SEO, la sécurité, la formation du client à l&#8217;usage de WordPress et des plugins supplémentaires sur lesquels reposait le site. J&#8217;étais super fier de mettre mes compétences au service d&#8217;un projet concret et de cette reconnaissance professionnelle.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-travailler-en-equipe\">Travailler en équipe</h2>\n\n\n\n<p>Après ce projet, j&#8217;ai eu besoin de changement. J&#8217;étais content d&#8217;être indépendant dans mon travail, mais je me sentais très seul. Les journées se ressemblaient beaucoup et je n&#8217;arrivais plus à trouver la motivation pour continuer. Après l&#8217;euphorie d&#8217;avoir vendu mon premier &#8220;vrai&#8221; projet web, j&#8217;avais l&#8217;impression d&#8217;être dans une spirale d&#8217;échecs et ça me stressait d&#8217;autant plus que mes économies commençaient sérieusement à s&#8217;amenuiser. J&#8217;ai diffusé mon CV en espérant trouver un poste qui puisse me correspondre. J&#8217;ai eu quelques entretiens avec des recruteurs d&#8217;entreprise de services numériques (ESN) et c&#8217;était franchement déprimant. J&#8217;avais le sentiment que mon profil touche-à-tout était sans valeur, et à chaque fois que je parlais un peu de WordPress, on me rétorquait que ce n&#8217;était pas assez &#8220;technique&#8221;. </p>\n\n\n\n<p>Après six mois de recherche, j&#8217;ai finalement trouvé un poste qui me faisait super envie dans une agence web à Avignon. J&#8217;ai eu l&#8217;impression que cette période de recherche avait été très longue. Mais rétrospectivement, je me sens chanceux d&#8217;avoir eu cette opportunité aussi rapidement. </p>\n\n\n\n<div class=\"wp-block-kadence-image kb-image6298_6c0ba1-95\"><a href=\"https://heropress.com/wp-content/uploads/2023/12/3-teamup.jpg\" class=\"kb-advanced-image-link\"><img width=\"1024\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/2023/12/3-teamup-1024x1024.jpg\" alt=\"Office space with tables covered with computer monitors.\" class=\"kb-img wp-image-6322\" /></a></div>\n\n\n\n<p>J&#8217;ai démarré en tant que développeur front-end et j&#8217;ai travaillé en majorité sur les projets WordPress qui comportaient beaucoup de missions différentes : développement ou personnalisation de thèmes, développement ou configuration de plugins, maintenance régulière des sites, formation des clients, formations des collaborateurs de l&#8217;agence…  Je trouvais trop bien de bosser avec des métiers complémentaires où chaque personne avait une bonne compréhension du travail des autres. Je découvrais un référentiel commun pour effectuer des missions différentes, c&#8217;était tellement enthousiasmant ! Cette synergie d&#8217;équipe, la grande diversité des missions, le partage de nos expériences et de nos points de vue ont beaucoup boosté ma motivation et ma montée en compétence. </p>\n\n\n\n<p>J&#8217;ai travaillé quatre ans dans cette agence dont la stratégie a beaucoup évolué tandis que sa taille explosait (de 20 à 100 collaborateurs en trois ans). Les choix se portaient plutôt sur des gros projets architecturés avec des solutions moins hybrides. Petit à petit, je me suis de moins en moins retrouvé dans les décisions et la typologie de clients de l&#8217;agence. Je me posais beaucoup de question sur le sens de mon travail et l&#8217;impact de celui-ci. Est-ce que j&#8217;apportais des solutions pour améliorer la vie des gens à mon échelle ? Est-ce que ce que je produisais était éthique ? À la fin, est-ce que c&#8217;était si important ?</p>\n\n\n\n<p>Depuis un bon moment, je m&#8217;intéressais aux sujets de l&#8217;éco-conception, de la vie privée, de la qualité web. Je lisais beaucoup d&#8217;articles écris par des associations, des entreprises et des acteurs du numérique qui m&#8217;inspiraient (Framasoft, Designer Éthiques, Whodunit, Opquast…). Je ressentais un énorme décalage entre mon expérience professionnelle et leurs discours qui avaient tellement de sens pour moi. L&#8217;ambiance de travail, elle aussi, avait complètement changé, je ne ressentais plus la synergie qui m&#8217;avait tant plu à mon arrivée, mais une espèce de &#8220;brouillard&#8221; de frictions, de cacophonie. <br />Cette situation était très difficile à vivre pour moi : j&#8217;angoissais à l&#8217;idée d&#8217;aller travailler et je dormais très mal. J&#8217;avais vraiment cette sensation que mon temps m&#8217;échappait. Je suis parti en mars 2023, et quelle bonne décision !</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-retrouver-du-sens\">Retrouver du sens</h2>\n\n\n\n<p>Je commence par revenir aux sources, j&#8217;ai besoin de ralentir, de poser mes envies pour savoir où j&#8217;en suis, de faire autre chose. Je rentre en Bretagne et je m&#8217;installe à Saint-Malo près de ma famille. Mon premier désir, c&#8217;est de me réapproprier mon temps. Sept ans dans le sud… ce qui m&#8217;a manqué le plus c&#8217;est la mer. Je sais bien que j&#8217;avais la méditerranée à côté, mais étrangement ça ne me fait pas le même effet. J&#8217;ai toujours eu envie de faire du surf, alors j&#8217;achète une vieille planche d&#8217;occasion, une combinaison, et je vais à l&#8217;eau presque tous les jours ! Ça me vide l&#8217;esprit et me donne confiance en moi, je n&#8217;ai jamais été un grand sportif, mais là, j&#8217;accroche.</p>\n\n\n\n<p>Je ne suis pas vraiment doué de mes mains, on ne peut pas dire que j&#8217;ai appris à le faire non plus. Je veux apprendre, avec les problématiques de l&#8217;écologie et du soutenable en tête. Je m&#8217;inscris à des chantiers participatifs et je rencontre des gens tellement intéressants. On partage notre expérience, nos savoirs, des moments de vie… et ça fait du bien.</p>\n\n\n\n<p>Je recommence à lire beaucoup, des livres de science-fiction, de fantasy, des essais, des classiques, mais aussi des discussions sur des forums et notamment ceux de wordpress.org.</p>\n\n\n\n<div class=\"wp-block-kadence-image kb-image6298_33c6f2-eb\"><a href=\"https://heropress.com/wp-content/uploads/2023/12/4-shifting-1.jpg\" class=\"kb-advanced-image-link\"><img width=\"1024\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/2023/12/4-shifting-1-1024x512.jpg\" alt=\"Two pictures in one.  On the left, someone surfing in the distance.  On the right a man holding a wooden framework.\" class=\"kb-img wp-image-6324\" /></a></div>\n\n\n\n<p>Je tombe sur une discussion concernant la création de site WordPress avec un smartphone. &#8220;Tiens c&#8217;est possible un truc pareil ?&#8221; Au fil de la discussion, je vois passer le nom d&#8217;un contributeur : <a href=\"https://heropress.com/essays/alice-robert-and-wordpress/\">Mark-Andrew</a>. Je visite son site et je prends une claque, le gars produit des sites gratuitement pour les personnes qui en ont besoin &#8220;Free Websites for good Humans&#8221;. C&#8217;est tout simple, mais je trouve ça super inspirant. Pour moi, Mark-Andrew a trouvé comment donner du sens à ses compétences et à accorder le tout avec son mode de vie.</p>\n\n\n\n<p>C&#8217;est ça que je veux faire. J&#8217;ai énormément appris sur l&#8217;écosystème WordPress et je continue chaque jour, pourquoi ne pas essayer d&#8217;en faire bénéficier ceux qui en auraient besoin ? Cela aurait du sens !<br />Voilà le chemin sur lequel je veux voyager, rendre accessible cette solution ouverte, gratuite et communautaire à tous ceux qui en ont besoin pour s&#8217;exprimer et créer. Pour aller plus loin, j&#8217;ai aussi envie de contribuer à la communauté WordPress, je pense commencer par la traduction en français, mais j&#8217;espère avoir le plaisir de contribuer aussi au nouvel éditeur de site que je trouve juste génial. On verra bien !</p>\n\n\n\n<p>WordPress à appris au gamin touche-à-tout à se faire confiance et se sentir utile. Alors pour ça, merci. Et merci Mark-Andrew, j&#8217;espère qu&#8217;on se rencontrera pour une session glisse.</p>\n\n\n\n<p>Merci d&#8217;avoir pris le temps de me lire <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f60a.png\" alt=\"😊\" class=\"wp-smiley\" /></p>\n</div></div>\n<p>The post <a href=\"https://heropress.com/essays/being-useful-to-people-with-wordpress/\">Being useful to people, with WordPress &#8211; Être utile aux autres, avec WordPress</a> appeared first on <a href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Dec 2023 08:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Quentin Le Duff\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"WordPress.org blog: WP Briefing: Episode 69: Reflections on State of the Word\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=16654\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://wordpress.org/news/2023/12/episode-69-reflections-on-state-of-the-word/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10692:\"<p>In this episode, WordPress Executive Director Josepha Haden Chomphosy reflects on the recent 2023 State of the Word, which took place in Madrid, Spain, and some of the highlights of the work across the WordPress open source project.</p>\n\n\n\n<p><em><strong>Have a question you’d like answered? You can submit them to&nbsp;<a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@WordPress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Host:&nbsp;<a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a><br />Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br />Logo:&nbsp;<a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br />Production:&nbsp;<a href=\"https://profiles.wordpress.org/bjmcsherry/\">Brett McSherry</a><br />Song: Fearless First by Kevin MacLeod</p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/12/state-of-the-word-2023-recap/\">State of the Word Recap</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/project/2023/05/17/wordpress-contributor-mentorship-program-pilot-program-proposal/\">WordPress Contributor Mentorship Program: Pilot Program Proposal</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/\">WordPress Developer Blog</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/project/2023/12/22/wordpress-end-of-year-celebrations/\">WordPress End of Year Celebrations!</a></li>\n\n\n\n<li><strong>Small List of Big Things</strong>\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2023/12/11/introducing-enhanced-content-safety-features-on-openverse/\" target=\"_blank\" rel=\"noreferrer noopener\">Introducing Enhanced Content Safety Features on Openverse</a>&nbsp;&#8211; Introducing new features for enhanced content safety on Openverse. </li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/12/alert-wordpress-security-team-impersonation-scams/\" target=\"_blank\" rel=\"noreferrer noopener\">Alert: WordPress Security Team Impersonation Scams</a>.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/plugins/2023/12/02/join-the-plugin-review-team/\" target=\"_blank\" rel=\"noreferrer noopener\">Join the Plugin Review Team!</a> &#8211; The Plugin Review Team is looking for new members; the deadline to apply is on December 31, 2023.</li>\n</ul>\n</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Transcripts</h2>\n\n\n\n<span id=\"more-16654\"></span>\n\n\n\n<p>[00:00:00] <strong>Josepha:</strong> Hello everyone, and welcome to the WordPress Briefing. The podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I’m your host, Josepha Haden Chomphosy. Here we go.</p>\n\n\n\n<p>[00:00:28] (Intro music)&nbsp;</p>\n\n\n\n<p>[00:00:40]&nbsp;<strong>Josepha:</strong> We wrapped up State of the Word earlier this month, and while I was sitting there being the only person to clap for the love of cake, I realized just how much we have been able to accomplish this year. And on the one hand, I shouldn&#8217;t be surprised.</p>\n\n\n\n<p>After all, progress is radical over time yet incremental in time. But all told, 2023 has been a big year for WordPress. There&#8217;s been some radical progress in a few places. There are the things you know because you&#8217;ve heard them all year. You heard them in State of the Word.</p>\n\n\n\n<p>We turned 20, for instance. We shipped three on-time releases. We had three well-organized flagship events, and we prototyped essential parts of phase 3. But there&#8217;s a lot of work that happens outside of flagship events and software releases, and I&#8217;d like to highlight a few examples of operational excellence in our community and ecosystem.</p>\n\n\n\n<p>[00:01:31] <strong>Josepha:</strong> First highlight goes to the contributors who are building community. Going back to 2021, we&#8217;ve been working to bring people back together in person.</p>\n\n\n\n<p>And in that year, we had 19 events. In 2022, we had 24 events, so a modest increase of just over 30%. But then, in 2023, the WordPress community banded together on a campaign to reignite passion in our Meetup groups and encourage playfulness in our WordCamp planning. And not only did we see a 57% increase in active Meetup groups, But we also saw a 116% increase in WordCamps, 54 WordCamps in all. That&#8217;s about a third of the way to our all-time annual high of 142.</p>\n\n\n\n<p>And to complement these in-person opportunities, Learn also shipped 104 pieces of new content and hosted 258 online workshops because location should never be a barrier to entry for joining WordPress.&nbsp;</p>\n\n\n\n<p>[00:02:32] <strong>Josepha:</strong> Second highlight goes to the contributors who are managing our directories. We do have a lot of directories. We have Plugins, Themes, Photos, Block plugins. We got a lot.</p>\n\n\n\n<p>And I&#8217;m sure that everyone saw the consistent and borderline pleading calls to join the Plugin team this year. And for folks who&#8217;ve been around a bit, you probably recall a similar set of consistent and pleading calls to join the Theme team a few years back. Concurrent with the work to refill that contribution pipeline, folks over in Meta and across the project generally, were working on automating as many checks as possible, loosening guidelines where it was reasonable, and modernizing as many processes as we could.</p>\n\n\n\n<p>I&#8217;m happy to share that the theme wait time is at a historic low, with their longest wait sometimes just at a week. And as anxious as I am about the plugin wait times, we&#8217;re actually seeing a lot of progress there as well. As we follow a process similar to the one that we did on themes, I imagine it&#8217;s only gonna get better. So, in 2023, we&#8217;ve onboarded six new team members. And since September, the number of plugins awaiting initial review has been cut in half.</p>\n\n\n\n<p>And then coming up in Q1 of 2024, we&#8217;ll have a project focused entirely on automating as many checks as possible. So I still need you, but I also need you to know that your work there matters and is having an impact.</p>\n\n\n\n<p>[00:03:55] <strong>Josepha:</strong> The third highlight goes to the contributors who are doing outreach. This year, we launched a mentorship program with an 89% completion rate because we&#8217;ve seen time and again that our most prolific contributors had someone at the start that they felt safe asking dumb questions with. We launched and nurtured the developer blog, which was a need identified by the community because there was no place for intermediate and advanced developers to get excited about their cool explorations. And there were 53 posts there this year with thirteen thousand views, which is a 251% increase for the record, which is a ridiculous increase, but it&#8217;s a lot. Thirteen thousand views is a lot.</p>\n\n\n\n<p>We have focused on documentation as we suggested in Porto of 2022. And marketing, I know not always our favorite topic, but marketing, our ability to talk about ourselves to more than just ourselves, has increased dramatically this year.&nbsp;</p>\n\n\n\n<p>Not only have we started rolling out a modern design across our website, but we also are present and engaged on eight different platforms with 20-plus episodes of this very podcast and also video content that netted us seven and a half million views this year. That&#8217;s a lot of numbers, and there&#8217;s a post that goes with it.</p>\n\n\n\n<p>[00:05:10] <strong>Josepha:</strong> Check out the show notes. But if you&#8217;re not gonna check out the show notes because you listen to this on Pocket Casts or Google or something, go to make.WordPress.org/project, and it&#8217;ll be over there. But the point is, it&#8217;s been a banner year for the software, and I am grateful for every tester, designer, and developer that showed up for it. But I also know that what makes WordPress truly irreplaceable is our ecosystem, and it&#8217;s contributions like this and the contributors who do them that make our ecosystem vibrant and responsive and thriving on into the future.</p>\n\n\n\n<p>So, thank you all for the contributions you make to WordPress. Thank you for the shining example of how to do open source at scale, and thank you for another great year together.&nbsp;</p>\n\n\n\n<p>[00:06:04] <strong>Josepha:</strong> Which brings us now to our small list of big things. It is indeed a small this time. First up, I would like to introduce our enhanced content safety features on Openverse. By default, search results now exclude openly licensed media containing sensitive textual content. But this new feature adds additional filtering based on titles, tags, and descriptions of the work as well.</p>\n\n\n\n<p>[00:06:27] <strong>Josepha:</strong> The second thing on our small list of big things is that there is just a general alert. There&#8217;s a WordPress security team impersonation scam that&#8217;s going on out there. The team is aware of multiple ongoing phishing scams impersonating both the WordPress team and the WordPress security team in an attempt to convince administrators to install a plugin on their website which contains malware. I&#8217;ll include a link to that post just in case you have anyone that you think might need to be aware of that, but also all of our site administrators know. Like, WordPress is not gonna email you asking for passwords or anything ever. </p>\n\n\n\n<p>[00:07:02] <strong>Josepha:</strong> And item number three, I would like you to join the Plugin review team. I know I just said it in the body of the episode. But, the Plugin review team is looking for new members still who believe in our mission of guiding plugin authors in responsibly transforming their innovative ideas into reality and ensuring a great WordPress plugin experience for end users. There is a deadline to apply; it&#8217;s December 31st. And so you can get that done over the holidays, over a glass of eggnog if that&#8217;s how you choose to celebrate whatever it is that you do. </p>\n\n\n\n<p>And that&#8217;s it for your small list of big things.&nbsp;</p>\n\n\n\n<p>Don&#8217;t forget to follow us on your favorite podcast app or subscribe directly on WordPress.org/news. You&#8217;ll get a friendly reminder whenever there&#8217;s a new episode. If you liked what you heard today, share it with a fellow WordPresser. Or, if you had questions about what you heard, you can share those with me at wpbriefing@WordPress.org. I&#8217;m your host, Josepha Haden Chomphosy. See you again in a couple of weeks.&nbsp;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 26 Dec 2023 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"Do The Woo Community: Goodbye 2023 and Hello 2024\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=78744\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://dothewoo.io/goodbye-2023-and-hello-2024/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:345:\"<p>As we look at the past year, and what 2024 holds, we are growing even more globally and elevating more voices. </p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/goodbye-2023-and-hello-2024/\">Goodbye 2023 and Hello 2024</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 21 Dec 2023 13:12:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"WPTavern: #104 – Thomas Fanchin on Community Engagement in WordPress Sponsorship\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=151915\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://wptavern.com/podcast/104-thomas-fanchin-on-community-engagement-in-wprdpress-sponsorship\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:42029:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, community engagement in WordPress sponsorship.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast, player of choice, or by going to WPTavern.com forward slash feed forward slash podcast. And you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you and hopefully get you, or your idea, featured on the show. Head to WPTavern.com forward slash contact forward slash jukebox, and use the form there.</p>\n\n\n\n<p>So on the podcast today, we have Thomas Fanchin. Thomas is a WordPress enthusiast and is the partnership manager for Weglot, which is a solution for translating websites, not limited to WordPress.</p>\n\n\n\n<p>His role means that he&#8217;s immersed in the WordPress community. He&#8217;s passionate about connecting with, and learning from, others in the community. Thomas talks on the podcast about Weglot&#8217;s involvement in WordPress initiatives and events.</p>\n\n\n\n<p>We get into how they decide what to sponsor, and what they hope to get in return. Thomas discusses the difficulties in tracking the effectiveness of marketing efforts at events. They&#8217;ve tried all manner of approaches, and we chat about the complex nature of measuring the return on investment, and whether it&#8217;s enough to have brand visibility as the only outcome.</p>\n\n\n\n<p>The conversation turns to the unique engagement opportunities within the WordPress and open source community. And whether these events are different from other, more corporate, events held elsewhere.</p>\n\n\n\n<p>Weglot operates both within and beyond the WordPress ecosystem, and Thomas shares the company&#8217;s focus on adaptability and replication in other communities. While profitability comparisons between WordPress and Shopify events are not easy to measure, thomas acknowledges both platforms are strong partners for Weglot, expressing interest in engaging with new content management systems and communities.</p>\n\n\n\n<p>Thomas wants to explore some innovative sponsor initiatives beyond typical events in the near future. He thinks that guest posts, supporting meetups, and sharing personal expertise might be potential ways for companies to effectively engage in the WordPress space.</p>\n\n\n\n<p>But not everything is new, and Thomas talks about Weglot&#8217;s approach towards flagship events, like WordCamp Asia and WordCamp US. They are hard at work already figuring out what they&#8217;re going to bring along, and how they&#8217;re always trying to think outside of the box.</p>\n\n\n\n<p>If you&#8217;re interested in learning about the intricacies of sponsorship, the impact of sponsored engagements at events, and the future landscape of sponsor initiatives within the WordPress community, this episode is for you.</p>\n\n\n\n<p>If you&#8217;re interested in finding out more, you can find all of the links in the show notes by heading to WPTavern.com forward slash podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so, without further delay, I bring you Thomas Fanchin.</p>\n\n\n\n<p>I am joined on the podcast today by Thomas Fanchin. Hello, Thomas.</p>\n\n\n\n<p>[00:03:46] <strong>Thomas Fanchin:</strong> Hey. How&#8217;s it going?</p>\n\n\n\n<p>[00:03:48] <strong>Nathan Wrigley:</strong> Good, thank you. Very nice to have you on the podcast. We&#8217;ve intended to do this podcast before, but we had some gremlins and so we finally got to it. And I appreciate you staying the course, Thomas. Really appreciate it.</p>\n\n\n\n<p>Just to give people some context, we&#8217;re going to be talking a little bit about sponsorship, perhaps about events today. But I guess it would be important to give you an opportunity to say who you are, and why your voice matters in this space. So a little time for a bio. Would you just tell us, Thomas, who you are and what your background is with WordPress. Who you work for, that kind of thing.</p>\n\n\n\n<p>[00:04:17] <strong>Thomas Fanchin:</strong> Oh gosh. That&#8217;s a lot of information. I&#8217;m going to try to stay brief. Who am I? I work at Weglot, as a partnership manager there. My day to day task consisting interacting with tech partners, but also a lot with communities, including WordPress.</p>\n\n\n\n<p>I started my journey within WordPress during my time when I was a student. I wanted to create a website. It was a pet website, back in the days I wanted to launch my own business. So that&#8217;s how I discovered WordPress. But I didn&#8217;t know anything about the community. I was trying to do everything by myself.</p>\n\n\n\n<p>When I started to work at Weglot, that&#8217;s when I started to interact a little bit with people from the community, meetup organiser, WorldCamps, organisers. But also just people doing podcasts and other things, inside of WordPress. Once you get to interact with people inside of the WordPress community, you&#8217;re just always going to talk with a lot of people, and do a lot of stuff around WordPress. So that&#8217;s how I got into where I&#8217;m right now today</p>\n\n\n\n<p>[00:05:23] <strong>Nathan Wrigley:</strong> We should probably explain exactly what Weglot does, because people may or may not understand what it does. But obviously it puts you squarely in the international localisation space. So just give us a, again, almost like a bio for Weglot. What does it do?</p>\n\n\n\n<p>[00:05:36] <strong>Thomas Fanchin:</strong> Yeah. So Weglot is basically a transition plugin, that allow you to translate our website into multiple language. It&#8217;s super simple plugin to use. It&#8217;s easy to set up. If you ever want to try it, just go for it and let us know what are your thoughts about it?</p>\n\n\n\n<p>[00:05:52] <strong>Nathan Wrigley:</strong> Okay, so we&#8217;re going to talk a little bit today about the WordPress community, and about decisions that Weglot have made, in terms of where their endeavors lie. Obviously, every company in the WordPress space would love to grow and grow, and one of the ways that people do that is to sponsor events. They might sponsor particular online events, or WordCamps, and things like that.</p>\n\n\n\n<p>So we&#8217;re going to dig into that a little bit. We&#8217;re not talking about what you&#8217;re going to do in the future, that&#8217;s up to you to decide. But in the past, what kind of things have Weglot done to get themselves out there in front of the WordPress community?</p>\n\n\n\n<p>[00:06:27] <strong>Thomas Fanchin:</strong> We have sponsored quite a few WordCamps and meetups, in the past. During my first year, we&#8217;ve sponsored around 50 WordCamps, and it was almost the same with the meetups. Like, we sponsored maybe 30 meetups, something like that. Which was great. There was definitely a lot of logistic behind it.</p>\n\n\n\n<p>And back then, we were thinking about becoming global sponsors. Because at some point it was hard for us to keep up with all the events, and for logistic matters too. We thought about it. And also, we were starting to think, yeah, what&#8217;s the next big move? What can we do more? What can we do better?</p>\n\n\n\n<p>So we tried the global sponsorship, for two years now. It was also super interesting. With the global sponsorship came also new challenges. We also started to invest more into Five for the Future. I would say, yeah, we&#8217;re still super invested and trying to support more initiatives, and support more of the WordPress community.</p>\n\n\n\n<p>[00:07:31] <strong>Nathan Wrigley:</strong> When you sit down with all of the decision makers in Weglot, how do you decide what it is that you are going to do? Because, obviously I&#8217;m not a sponsor, I have never sponsored anything, but I&#8217;ve spoken to quite a few people from different companies. And if we just take the example of WordCamp, let&#8217;s just stick with WordCamp and maybe some of the bigger events.</p>\n\n\n\n<p>My understanding is that most of the companies who support that with sponsorship, they don&#8217;t generally think about it as something which they can measure a return on investment immediately. So let&#8217;s say that they sponsor, and they put $50,000 into sponsoring a particular WordCamp. They&#8217;re not thinking, okay, we need to get that $50,000 back, or $100,000, or some multiple thereof.</p>\n\n\n\n<p>It&#8217;s more about just being a good citizen. Making sure that people are aware that the company exists. And we&#8217;re in financial times at the moment, where every dollar spent is really something that has to be thought about. So I just wondered if you wanted to give us an idea, why do you sponsor? Why have you been a global sponsor? What have you hoped to get out of it, and has it delivered what you wanted?</p>\n\n\n\n<p>[00:08:40] <strong>Thomas Fanchin:</strong> It&#8217;s another big question. So I&#8217;m going to try to reply with as much elements as I can. I think, first of all, it depends on the company culture. So if you are a company and you were built, or you are based, around one specific community, then it becomes easier for you to just talk about budget for the community support. Because, I mean, the company is originally based around it. Maybe the owners are already aware of what it is.</p>\n\n\n\n<p>And if you take, for example, Weglot, for us, the community, it&#8217;s equel feedback. So a lot of people from the team used to do support tickets, back in the days. And a lot of us are still doing it. So it make the connection between the users, the community, the support, which is our frontline, and the company. So it&#8217;s just a connection for us. Which can help us when it comes to decisioning to, yeah, we&#8217;re going to support this, or we&#8217;re going to sponsor this event.</p>\n\n\n\n<p>The other part that is also super important, obviously is the visibility part. You mentioned it. It&#8217;s super important for us to be visible, for people to be aware of the product, of what it does.</p>\n\n\n\n<p>And there is also the giving back part. Because obviously you are a company, you are growing and it&#8217;s good. But when you grow, you make the community also, the people that help you to grow, grow with you. So basically, it&#8217;s like creating a win win situation between your company growth, and the community.</p>\n\n\n\n<p>I think when you combine the three, it&#8217;s let&#8217;s say, easier to set up budget, and to have this type of discussion. And it also depends maybe on your marketing strategy too. We can get into that.</p>\n\n\n\n<p>For us, we divided into two type of strategies. So there is growth marketing, and there you have some KPIs, and it&#8217;s based on performance. And you have brand marketing. Brand marketing is not based on performance. But the Weglot brand, it&#8217;s combined with community, and with events. So we cannot dissociate both, which is good for us as a brand, and good also for the community. And it&#8217;s not based on performance.</p>\n\n\n\n<p>The thing that mattered to us, is that the product, again, is visible. And when someone think about multilingual, we want him to think about Weglot. We know that there are agencies, freelancers, partners, people within the WordPress space, but also outside of the WordPress space, who think about Weglot, because they have met us somewhere in Asia, during WordCamp Asia, or at an event five years ago, or at a meetup, or during a conference. But it&#8217;s hard to track that. But we know that it&#8217;s working.</p>\n\n\n\n<p>[00:11:23] <strong>Nathan Wrigley:</strong> When you say you know that it&#8217;s working, is that just an intuition that you anecdotally hear that people, when you maybe ask them, where did you hear about us? It may have been that they can link back to a sponsorship at a particular event. Or, is it more anecdotal than that? You just get a sense that there&#8217;s an uptick in sales immediately after events, and things like that.</p>\n\n\n\n<p>[00:11:43] <strong>Thomas Fanchin:</strong> Yeah. I think the tracking part is really hard to measure. We&#8217;ve tried a couple of things in the past, like coupon deals. It didn&#8217;t work out. We tried QR code too, because I know like a lot of us are trying to flash the QR code, and it wasn&#8217;t the best solution too. We tried to have people fill up forms. It wasn&#8217;t the best solution. And in terms of logistic, it&#8217;s just super hard to maintain.</p>\n\n\n\n<p>I know some companies are trying like this massive gift by participating an event, by entering your actual information, and so on. But I&#8217;m not sure that it has the best return on investment for them. It&#8217;s more a visibility thing, I think. I&#8217;m not sure. Maybe it&#8217;s working. If it&#8217;s working, it&#8217;s awesome and it&#8217;s cool. But I think it&#8217;s more a visibility matter.</p>\n\n\n\n<p>I think there is no real tracking that you can set up to measure this type of action. Which is why we separate both, and you have growth marketing and brand marketing. Both goals are set aside.</p>\n\n\n\n<p>[00:12:44] <strong>Nathan Wrigley:</strong> We are in a very interesting community, in that we&#8217;re quite unique I think. The open source movement, but WordPress particular. In that we turn up to these events, and we know that there&#8217;s going to be sponsors there, and we may interact with those sponsors. But on some level, the open source, the nature of open source has this kind of no sponsorship feel to it, if you know what I mean? There&#8217;s this kind of, everything is free, and we give our time for free, and all of that kind of thing.</p>\n\n\n\n<p>So I just wonder if you collide with that. You turn up to these events, you&#8217;ve paid a lot of money to be a part of the sponsorship area, and maybe the crowd that have turned up are not, you know, that willing to engage with you. Maybe in a different environment, a much more corporate environment, people would be willing to make that trade a little bit more, and they might be more willing to come and talk with you, because, I don&#8217;t know, they&#8217;ve got a different agenda.</p>\n\n\n\n<p>Do you sense that a little bit? Is there something about this community which makes it harder to advertise towards them? And if that&#8217;s the case, I presume that you have to keep juggling that.</p>\n\n\n\n<p>[00:13:45] <strong>Thomas Fanchin:</strong> I guess the goal is to try to be really innovative, in a way that people come and interact with you. So, it&#8217;s really your role, as a sponsor to try to make sure that you do not cross a certain line. And that everything that you put out there, in terms of content, the booth, the people that are here, the people with whom you are working to, are aligned with the community culture, with the company culture too. That way you make sure that people come and interact with you.</p>\n\n\n\n<p>I don&#8217;t see people as really like hostile toward us. Working at Weglot for the past five years, I&#8217;ve only had positive feedback about what we do inside of a community, and also about the product itself. From time to time, people don&#8217;t like it. It&#8217;s totally fine. And it&#8217;s good, because that way you can, yeah, like amazing feedbacks. To be honest, I don&#8217;t see anything wrong within the community and how it&#8217;s working out. From my perspective, and from the sponsor perspective too, I don&#8217;t know about what others might think, but that&#8217;s just my thoughts.</p>\n\n\n\n<p>[00:14:57] <strong>Nathan Wrigley:</strong> In your introduction, when you were describing Weglot, you mentioned that WordPress is one aspect of that. But I&#8217;m reading between the lines, I could be wrong. Is it the case that Weglot operates outside the WordPress ecosystem as well? And if that&#8217;s the case, do you have a different approach to your marketing in the different markets? So firstly, let&#8217;s answer that question. Does it operate outside of WordPress? And if the answer to that is yes, what kind of things do you bolt onto? Is it other CMSs, or what?</p>\n\n\n\n<p>[00:15:25] <strong>Thomas Fanchin:</strong> So the two founders of Weglot, they always had these goals of creating a solution for translation, that could be used on any website on the market. That was the purpose of the tool. We started to launch it on WordPress, but we also made a version for Shopify. And now you have this general integration that you can use on any website. And so the answer is yes. You can use Weget outside of WordPress.</p>\n\n\n\n<p>Regarding question two, I think it&#8217;s a similar approach. It might be because of the company culture, and because of where we started. WordPress is like a big part of what we do inside of different communities. We believe that what we are doing here is really positive. And if something is working, and it&#8217;s positive, what you are going to try to do is to replicate it in other communities.</p>\n\n\n\n<p>It&#8217;s really what we try to do, but at the same time, of course, you need to adapt yourselves to the other communities. Because, I don&#8217;t know, maybe it&#8217;s not the same people inside of a community. Maybe it&#8217;s more like corporate people. Maybe it&#8217;s people that are not interested about open source. Maybe it&#8217;s people who don&#8217;t know at all about how to code. I don&#8217;t know. There is various communities out there. And yeah, I would say like, we try to adapt ourself, and at the same time we try to replicate what&#8217;s working.</p>\n\n\n\n<p>[00:16:47] <strong>Nathan Wrigley:</strong> This is going to be a difficult question to answer, potentially, because you may not have the numbers hand. But do you know if, let&#8217;s take the example of Shopify. Do you know if Shopify gives Weglot a greater level of profitability? For every dollar spent on events, or on advertising on Facebook, or Google, or whatever it may be, wherever those dollars get spent. Do you know if there is a greater profitability in one of those communities, than there is in another?</p>\n\n\n\n<p>[00:17:15] <strong>Thomas Fanchin:</strong> That&#8217;s the big question. What I can say is that WordPress and Shopify, they are one of our big partners, with a strong attachment to WordPress. Because when the two founders launch Weglot, it was during WordCamp Paris. So that&#8217;s what I can say.</p>\n\n\n\n<p>I don&#8217;t have the specific numbers in mind, but it&#8217;s true that there is a lot of new communities and new CMSs out there that are emerging. And it&#8217;s definitely super interesting to interact with them for me as a partner manager. And to discover new CMSs, new communities, that comes with new people from like various communities out there.</p>\n\n\n\n<p>[00:17:54] <strong>Nathan Wrigley:</strong> So we&#8217;ve spent quite a bit of time talking about sponsoring events, but obviously sponsoring could be in all sorts of different directions. And I think you mentioned things like Five for the Future. I&#8217;m wondering if that&#8217;s something that Weglot explore. So, you know, if you&#8217;re listening to this podcast and you are working for a company, and you&#8217;re trying to think of innovative, interesting ways, and obviously you could sponsor a WordCamp, that one&#8217;s fairly straightforward.</p>\n\n\n\n<p>Are there any other things that you do? So for example, do you sponsor particular individuals to contribute to the code base? Do you sponsor some smaller events like meetups, or anything like that? Do you do things like Five for the Future, or any other things that we may not have heard of? So anything outside the normal typical WordPress events.</p>\n\n\n\n<p>[00:18:34] <strong>Thomas Fanchin:</strong> I think it&#8217;s a quite interesting topic, because I think like everyone within the WordPress space, like companies, they can do like various innovative initiatives. We are all like super, super busy with our agendas. But you could contribute by providing, I don&#8217;t know, guest posts, content in the areas where you are an expert. For example, for us it would be like multilingual.</p>\n\n\n\n<p>So if you have a content team, or people from your content team that could help others. You could also, let&#8217;s say, help meet up organisers with their venues. At Weglot, from time to time, there is like this marketing community. They come to have breakfast at Weglot in the morning. It&#8217;s not cool for the employees because you get to work and everybody is eating, and you need to work. You could also do that.</p>\n\n\n\n<p>From a personal standpoint, I did a couple of talks during meetups, around multilingual. I mean, I&#8217;m not the best. I&#8217;m sure there is plenty of people with more knowledge than me. But I have my own expertise, and my experience, and I can share it. And so far I&#8217;ve received just positive feedbacks. There is various stuff that you could do at a personal level inside of a company.</p>\n\n\n\n<p>And yeah, of course we are also doing Five for the Future. We are sponsoring, I think, right now, three contributors inside of the community team, and the Polyglot team too. It&#8217;s quite interesting. It&#8217;s something totally new for us. We never did it in the past. And what we try to have various people who are really enthusiastic about the community, and who loves to do plenty of stuff. It will be like, I don&#8217;t know, recruitment, just someone that would come like to the Weglot team and work. We try to have the same type of people with whom we&#8217;re collaborating there, which is awesome.</p>\n\n\n\n<p>We also supported, you mentioned meetups, we also supported a few meetups in different ways, because we try to always adapt the budget. And also the way that we support those meetups, because some of them, they need money for the venue. Other needs equipment. And there is like layers of people out there who have specific needs, so we try to adapt ourself.</p>\n\n\n\n<p>We&#8217;re also doing something quite interesting. There&#8217;s the Weglot community there, where we invite our ambassadors, inside of the company, for one or two days. And they get to meet everyone from the company, and they get to teach about what they do inside of specific communities, and how it helps Weglot.</p>\n\n\n\n<p>It&#8217;s super interesting because it helps the company culture. When you are growing, and you have more and more people coming inside of the company, it&#8217;s interesting to learn the basics, but also to understand what we are doing inside of WordPress, or inside of other communities too.</p>\n\n\n\n<p>Because obviously for us, it&#8217;s simple. We know what the community is about. We know what we&#8217;re doing. We know what&#8217;s WordPress, what&#8217;s a meetup, what&#8217;s a WordCamp. But maybe like for others, it&#8217;s a little bit more, not hard to understand, but there is less visibility on this type of action. Which is why it&#8217;s super interesting to have community people to come and just interact with the team.</p>\n\n\n\n<p>One thing that is quite interesting, because you mentioned that we are present on different communities, and we also have different ambassadors. And this year we&#8217;re making a community day in March, if I&#8217;m right. If I&#8217;m wrong, my event manager is going to be mad at me. And some of them will be outside of WordPress. And they would meet each other and attend like conference during the day, and teach to each other what they do in different space. And also about their approach, because it&#8217;s not the same approach. So it&#8217;s going to be quite interesting to have those type of interaction. But yeah, maybe I&#8217;m being too long.</p>\n\n\n\n<p>[00:22:12] <strong>Nathan Wrigley:</strong> No, that&#8217;s really interesting. You mentioned the ambassadors. Who are they then? it sounds like they&#8217;re people who are closely aligned with what you do, but not employees. They&#8217;re just people that use your services and products, but they&#8217;re not on the payroll. But they&#8217;re willing to give some of their time over to your endeavors. That&#8217;s interesting.</p>\n\n\n\n<p>[00:22:28] <strong>Thomas Fanchin:</strong> Yeah. The ambassador program is something that we have put together because we started to sponsor quite a few WordCamps. And it was hard for us to be able to travel from point A, to point B, to point C. You could imagine having an event in France, another one in Spain, and another one in England. So it&#8217;s hard to commute. At the end you would be like totally tired. And it&#8217;s not the goal. The goal is, of course, to have a nice balance between personal life and work life.</p>\n\n\n\n<p>We found out that there was plenty of people who were attending WordCamps, and were willing to do it for companies like us. We tried to find some community people who shared the same thoughts as we do, inside of Weglot. Love the product, want to talk about it, and want to participate inside of a community, That&#8217;s how it started.</p>\n\n\n\n<p>Now we have a few ambassadors who are working with us. We try now, since this year, it&#8217;s the first time that we did the community day, so we try to have the ones that are representing us in like various countries, to come up in Paris with us and discuss with the team.</p>\n\n\n\n<p>[00:23:40] <strong>Nathan Wrigley:</strong> That&#8217;s a really nice initiative. I like that. I also just like the fact that there&#8217;s people who are so into what you do as a product, that they&#8217;re willing to donate their time. It&#8217;s almost like a little microcosm of the WordPress project inside the Weglot project. You&#8217;ve got volunteers who are helping you out. Yeah. That&#8217;s fascinating.</p>\n\n\n\n<p>I&#8217;m going to just encourage the listeners of the podcast to go to the show notes, and I&#8217;m going to link to a piece on the make.wordpress.org website by Cate DeRosia. It was published on the 29th of November 2023, and it&#8217;s called, Should We Allow Sponsor Demo Rooms or Tracks at Events. I&#8217;m also going to link to a piece over on Post Status by Marieke van de Rakt. The name of that piece escapes me at the moment. But it was all about the WordPress community getting divided into participants on the one hand, and sponsors and companies on the other hand.</p>\n\n\n\n<p>And I&#8217;m interested about this. I&#8217;m interested to know from your perspective. Now we&#8217;ve talked a little bit about how you make a return on investment, or whether that&#8217;s necessary or not. But I&#8217;m wondering if, as the years have gone on, you mentioned that you&#8217;ve been involved in WordPress for five years or more. Have you still got the same excitement for attending these kind of events, or do you wish there to be some kind of change?</p>\n\n\n\n<p>And in Cate DeRosia&#8217;s piece, she&#8217;s basically saying, do we need to think a little bit outside of the box in order to get sponsors to attend these events? It sounds, the undercurrent, I guess is that it&#8217;s harder than ever to get the sponsors, enough sponsors, to cover the cost of the events.</p>\n\n\n\n<p>So I&#8217;m just wondering if the people in the comments, you have any ideas on how your sponsor dollars could be spent? Such that you feel you&#8217;re getting more value than you are at the moment.</p>\n\n\n\n<p>[00:25:21] <strong>Thomas Fanchin:</strong> From a personal point of view, it&#8217;s definitely super amazing to be able to travel to this event. Because you get to travel from all over the globe, thanks to WordPress, which is super cool. I&#8217;ve never been in Asia, and I went to Bangkok earlier this year, which was awesome.</p>\n\n\n\n<p>And you get to spend time there with people with whom you have a close relationship now, thanks to WordPress. And people with whom you are friends now during this event, and that you&#8217;re not probably going to meet throughout the year, which is just amazing.</p>\n\n\n\n<p>And from a, more of a sponsor level, I would say maybe five years ago there was more engagement. If you take an event like WordCamp Europe, we&#8217;ve talked a little bit about it, let&#8217;s talk about it again here. Yeah there were for sure like, maybe more participants and more engagement in WordCamp Europe in Berlin, than maybe now the last WordCamp Europe in Athens. It was like a really huge event, with way more sponsors than five years ago.</p>\n\n\n\n<p>People I believe, at least that&#8217;s my thoughts, were a little bit lost with all the sponsors, and all the tracks, and everything that was happening. It was still an amazing event. I love it. It was awesome. But yeah, maybe there was a little bit less engagement.</p>\n\n\n\n<p>And there were also other events, like in Asia, where it was just like WordCamp Asia, was just amazing. I&#8217;ve spoke with so many people that were interested about the product, about what we do. And it was something new, because it was the first time too. So I guess we&#8217;ll see like this year, next year, and the coming years how it&#8217;ll evolve. But I&#8217;m sure it could be positive.</p>\n\n\n\n<p>Yeah, maybe right now there is less engagement. But if we go back to the beginning of this conversation, I think the job of a lot of sponsors here, is to try to be innovative to attract people. It could be your booth. It could be the activities that we are doing.</p>\n\n\n\n<p>I think right now it is just, we are at a stage where we should all start to think about outside of the box, and think about crazy ideas that we could put together, to have people come interact with your product. But also with what you do inside of a company.</p>\n\n\n\n<p>[00:27:44] <strong>Nathan Wrigley:</strong> Yeah, I think Cate&#8217;s piece really is raising that question. So, maybe it&#8217;s off the back of data saying what you&#8217;ve just said, where the engagement is maybe down. And it&#8217;s curious that you found that the engagement was up in WordCamp Asia. So maybe that&#8217;s because they were doing things differently. Maybe they had a different, just a whole different approach, and they&#8217;re trying innovative new things. Certainly speaking to some of the organisers, that was very much the intent, was to try out some new things. And from your perspective, that seems to work.</p>\n\n\n\n<p>But as attendees of the events will know, the ticket price is incredibly low. And that is largely offset by sponsors. And so if sponsors, like Weglot, determine that the engagement, it&#8217;s going down. Maybe we shouldn&#8217;t sponsor this particular event. That then jeopardises the event in the future. So Cate&#8217;s piece, I guess, is trying to figure out if there are things which would attract the sponsors.</p>\n\n\n\n<p>So she&#8217;s suggesting things like demo rooms, and various other things are suggested in the chat. But she&#8217;s thinking things like, could we have a standalone room just for demos, for sponsors? Would it be possible to offer them different kind of packages? What would those packages contain? Could there be maybe some, I don&#8217;t know, an event which is at the end of the event as a whole, where the sponsors get up and get to give away prizes or something like that.</p>\n\n\n\n<p>The point is thinking out the box. And we did an episode a few weeks ago, which again I&#8217;ll link to in the show notes, where we&#8217;re talking about next gen events. And all of that, again, seems to be talking about a picture of, these events are after the pandemic at least. We&#8217;re struggling to get them back. We&#8217;re struggling for the sponsors to be interested. We&#8217;re struggling to get the numbers back. And so being innovative matters.</p>\n\n\n\n<p>Do you think that you&#8217;ll be, in the next five years, sponsoring these events at the same level, or do you have an intuition that you&#8217;ll be going your own route and trying things own way?</p>\n\n\n\n<p>[00:29:32] <strong>Thomas Fanchin:</strong> Yeah. If we&#8217;re talking about the flagship events, I know that next year we will still support all of them, which is great. I already know that for WordCamp Europe, we are going to have a really nice booth there. And everyone is right now working to be as innovative as possible, to make sure that everyone has a super nice experience entering into the Weglot booth. I hope it&#8217;s going to be amazing.</p>\n\n\n\n<p>In WordCamp Asia, I know that we are working right now on the booth, the concept and everything that we&#8217;re going to do there, which is awesome. And I think it&#8217;ll be the same for WordCamp US.</p>\n\n\n\n<p>On a more global perspective, I know that this year, we are not going to be global sponsors. But the reason behind it, is that we want to diversify the way that we support WordPress. And we are going to try to invest more into new initiatives, but also into contribution space, and into Five for the Future.</p>\n\n\n\n<p>But yeah, it doesn&#8217;t mean that we are stopping anything. We are still going to support the flagships, and other WordCamps too. We are going to be just more selective into the WordCamps that we are supporting.</p>\n\n\n\n<p>But I think, for us, it&#8217;s more the logistics behind supporting like all the events. It was hard to follow up. And we always had that goal in mind, that if we were going to be global sponsor, we wanted to have someone representing us in all the WordCamps.</p>\n\n\n\n<p>And unfortunately, we were not able to maintain that. It&#8217;s cool, not cool, but it&#8217;s like amazing to support all these events. But you need to make sure that, at least you have someone out there, and not only is there like an empty table with no goodies or with some goodies and no one there.</p>\n\n\n\n<p>And even the logistic behind like sending goodies in like, all the places in the world, it&#8217;s like crazy. And we were lucky. Now we have our event manager who is working with us, and she put together an amazing program for the goodies itself. So it was like something that she set up only for that. And we were able to work with ambassadors from a lot of places, which is also like super cool, because now we have more and more people working with us. But still it was hard for us to be able to be present everywhere, as we wanted to. So it&#8217;s part of the reason why. What was the initial question again? Maybe I got lost.</p>\n\n\n\n<p>[00:31:57] <strong>Nathan Wrigley:</strong> Yeah, it was really about whether or not you see the landscape in the next five years being the same as in the last five years. So, obviously money is tight everywhere.</p>\n\n\n\n<p>[00:32:07] <strong>Thomas Fanchin:</strong> I was speaking about this year, and about how we were going to support also like meetups too. So, I&#8217;m in touch with some meetup organisers too, and we&#8217;re going to support their meetups.</p>\n\n\n\n<p>I know that a lot of sponsors are struggling, and as we talk about it earlier, it&#8217;s hard to keep a track on everything that we&#8217;re doing. And for sure, if there is room for new types of sponsorship, or new types of visibility action that we can put together, it would be awesome.</p>\n\n\n\n<p>The thing that you have to keep in mind, is that it&#8217;s cool to have these new ideas, but we need to make sure that it aligns with the community. And that we don&#8217;t cross that line that we spoke about earlier. The more that people are positive about the new ideas that we have, and the better it is for us, because it means more people are going to engage.</p>\n\n\n\n<p>The last thing that you want to have is to put out there like some, I don&#8217;t know, new ideas, or new things to get more visibility. And what is going to happen is that you have less engagement, and then sponsors are going to be, okay, it&#8217;s not working. There is less engagement than before.</p>\n\n\n\n<p>[00:33:13] <strong>Nathan Wrigley:</strong> Yeah. I think the endeavor at the moment seems to be to try a lot of these new ideas out on what they&#8217;re calling next gen events. Whether that name will stick around or not, I don&#8217;t know. But the intention, really, is to try these out on the smaller events. So try out some new things, try a different approach at a variety of different events. Who knows what that will be, but there was an example of a much smaller, newer event in the UK not that long ago. See how they go, and see if any of the ideas from those can percolate up into the bigger events, possibly.</p>\n\n\n\n<p>But you&#8217;re right, you risk alienating the community at your peril. If at the end of the day you go over a boundary that the community seemingly can&#8217;t tolerate, then you risk polluting the entire river, which would be a complete disaster.</p>\n\n\n\n<p>So I guess we&#8217;re going to see. Let&#8217;s see how these things change in the future. Let&#8217;s see how companies cope with the realities of post 2023. Over the next few years, see what their purse strings are like, and let&#8217;s hope these events are continued to be sponsored by companies like Weglot.</p>\n\n\n\n<p>Thomas, just a quick one. If anybody has listened to this and thought, do you know what, I&#8217;m struggling with the same sorts of things, it would be nice to chat to Thomas, see if there&#8217;s any alignment. Maybe there&#8217;s some sort of opportunities to work together. Where would be the best place to get in touch with you?</p>\n\n\n\n<p>[00:34:24] <strong>Thomas Fanchin:</strong> Maybe on LinkedIn. You could all reach out to me on LinkedIn. I&#8217;m not posting every day, but i&#8217;m really reachable by message. So if anyone wants to reach out, talk about WordPress, talk about Five for the Future, or contribution, or you have a new podcast idea, you&#8217;re looking for support. Or you just want to discuss a little bit about partnership, feel free to reach out to me there.</p>\n\n\n\n<p>I also have a Twitter account. It&#8217;s my name, so Thomas Fanchin. Have a look at it on both LinkedIn and Twitter. You will find me, I&#8217;m almost sure.</p>\n\n\n\n<p>And otherwise, you could just reach out to the support team. If you want to reach out, support@weglot.com, and just say that you want to talk with Thomas, and I would be tagged. So that&#8217;s also easy if you want to reach out to me. So yeah, it up to you.</p>\n\n\n\n<p>[00:35:14] <strong>Nathan Wrigley:</strong> Thank you Thomas. I really appreciate you talking to me on the podcast today. Thanks so much indeed.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://www.linkedin.com/in/thomas-fanchin-b31333137/\">Thomas Fanchin</a>.</p>\n\n\n\n<p>Thomas is a WordPress enthusiast and is the partnership manager for <a href=\"https://www.weglot.com/\">Weglot</a>, which is a solution for translating websites, not limited to WordPress. His role means that he’s immersed in the WordPress community. He’s passionate about connecting with, and learning from, others in the community.</p>\n\n\n\n<p>Thomas talks on the podcast about Weglot&#8217;s involvement in WordPress initiatives and events. We get into how they decide what to sponsor and what they hope to get in return.</p>\n\n\n\n<p>Thomas discusses the difficulties in tracking the effectiveness of marketing efforts at events. They’ve tried all manner of approaches, and we chat about the complex nature of measuring the return on investment, and whether it’s enough to have brand visibility as the only outcome.</p>\n\n\n\n<p>The conversation turns to the unique engagement opportunities within the WordPress and open source community, and whether these events are different from other, more corporate, events held elsewhere.</p>\n\n\n\n<p>Weglot operates both within and beyond the WordPress ecosystem, and Thomas shares the company&#8217;s focus on adaptability and replication in other communities. While profitability comparisons between WordPress and Shopify events are not easy to measure, Thomas acknowledges both platforms as strong partners for Weglot, expressing interest in engaging with new content management systems (CMS) and communities.</p>\n\n\n\n<p>Thomas wants to explore some innovative sponsor initiatives beyond typical events in the near future. He thinks that guest posts, supporting meetups, and sharing personal expertise might be potential ways for companies to effectively engage with the WordPress space.</p>\n\n\n\n<p>But not everything is new, and Thomas talks about Weglot&#8217;s approach towards flagship events like WordCamp Asia and WordCamp US. They are hard at work already figuring out what they’re going to bring along and how they’re always trying to think outside the box.</p>\n\n\n\n<p>If you&#8217;re interested in learning about the intricacies of sponsorships, the impact of sponsor engagement at events, and the future landscape of sponsor initiatives within the WordPress community, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p><a href=\"https://wordpress.org/five-for-the-future/\">Five for the Future</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/polyglots/\">Translate WordPress</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/community/2023/11/29/should-we-allow-sponsor-demo-rooms-or-tracks-at-events/\">Should We Allow Sponsor Demo Rooms or Tracks at Events?</a></p>\n\n\n\n<p><a href=\"https://wptavern.com/podcast/80-angela-jin-on-how-and-why-wordcamps-might-change-in-the-future\">Angela Jin on How and Why WordCamps Might Change in the Future</a></p>\n\n\n\n<p><a href=\"https://wptavern.com/podcast/98-marieke-van-de-rakt-on-uniting-the-wordpress-community-for-a-stronger-future\">Marieke van de Rakt on Uniting the WordPress Community for a Stronger Future</a></p>\n\n\n\n<p><a href=\"https://twitter.com/thomas_fch\">Thomas on X</a></p>\n\n\n\n<p><a href=\"https://www.linkedin.com/in/thomas-fanchin-b31333137/\">Thomas on LinkedIn</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 20 Dec 2023 15:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"Do The Woo Community: A Post State of the Word Chat with Rocio Valdivia, Pooja Derashri &amp; José Ramón\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=78732\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://dothewoo.io/a-post-state-of-the-word-chat-with-rocio-valdivia-pooja-derashri-jose-ramon/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:503:\"<p>Listen to insights and experiences in the Spanish WordPress community, features and updates announced at SOTW, plus getting involved in the WordPress community. </p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/a-post-state-of-the-word-chat-with-rocio-valdivia-pooja-derashri-jose-ramon/\">A Post State of the Word Chat with Rocio Valdivia, Pooja Derashri &#038; José Ramón</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 20 Dec 2023 08:50:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:254:\"HeroPress: My Journey From an Intern to WordPress Themes Team Reps – मेरो यात्रा: एक प्रशिक्षार्थीबाट वर्डप्रेस थिम्स टीम प्रतिनिधिसम्म\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=6254\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:184:\"https://heropress.com/essays/my-journey-from-an-intern-to-wordpress-themes-team-lead/#utm_source=rss&utm_medium=rss&utm_campaign=my-journey-from-an-intern-to-wordpress-themes-team-lead\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:59265:\"<img width=\"1024\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/2023/12/121923-min.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: Being part of WordCamps is like unlocking a door to a whole new world.\" /><p><a href=\"https://heropress.com/feed/#nepali\">यो लेख नेपाली भाषामा पनि उपलब्ध छ।</a></p>\n\n\n\n<p><em>Writing this essay brings me immense joy!</em>&nbsp;</p>\n\n\n\n<p>I am from a remote corner of Nepal, where a unique culture emerged, the tradition of taking computer classes after completing <span title=\"School Leaving Certificate\"><a href=\"https://en.wikipedia.org/wiki/School_Leaving_Certificate_(Nepal)\">SLC</a></span>. It was a time when nearly 2-5% of students embraced this opportunity. I also joined them in the excitement of learning how to use a computer.</p>\n\n\n\n<p>Our teacher kept emphasizing the importance of learning how to type. But sometimes, when he wasn&#8217;t around, we would search for the Internet icon, hoping to find interesting things. Sadly, we didn&#8217;t have an internet connection, but we still tried our best.   </p>\n\n\n\n<p>Also, in our little learning space, every chance to use a computer felt special. These early experiences, a mix of fear and curiosity, laid the foundation for our technology journey.&nbsp;</p>\n\n\n\n<p>It&#8217;s proof of our eagerness to learn, even when resources were limited.&nbsp;</p>\n\n\n\n<p>Looking back, those moments of exploring and trying to connect with the wider digital world were like planting seeds of curiosity. Which later grew into a strong love for technology.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-a-glimpse-into-my-roots\">A Glimpse into My Roots</h2>\n\n\n\n<p>Let&#8217;s stroll through my tech journey, from mastering algorithms to leading the WordPress theme team. It all began after completing ISC (Intermediate of Science) and believe it or not, it happened in a government school.</p>\n\n\n\n<p>After finishing school, I had to choose a path, and I went with IT. Now, the funny part is, that I was at a friend&#8217;s house one day, and I saw this cool digital ID card. I asked my friend about it, and he said it was the college ID card. At that moment, I thought, <strong>&#8220;If I study IT, I can get a modern ID card like this!&#8221;</strong></p>\n\n\n\n<p><strong><em>The interesting twist is that I ended up being the topper in the entrance exam for IT.</em></strong>&nbsp;</p>\n\n\n\n<p>When I joined, there were only 15-16 students. Surprisingly, only 7 of us made it through the entire degree because many decided to go to India, and some just realized IT wasn&#8217;t their thing. At that time, only a few people were keen on the IT field.</p>\n\n\n\n<p>During my studies, programming code seemed like a puzzle to me. It was challenging to wrap my head around it. However, when we started experimenting and learning to give commands, the real-time working of it all was still a mystery.</p>\n\n\n\n<p>As I neared the completion of my bachelor&#8217;s degree, technology was booming, and companies began realizing the importance of having a website. Simultaneously, I got involved in some social sector work, and people there started asking about IT. To understand this field better, I participated in IT events, and that&#8217;s when it hit me, I needed to do something significant in this field.</p>\n\n\n\n<p>Fast forward, armed with a bachelor&#8217;s in Information Technology from Purbanchal University. In the 3rd &#8211; 4th semester, I wasn&#8217;t entirely sure what I would be working on afterwards.&nbsp;</p>\n\n\n\n<p><strong><em>But being in this field made me realize that your degree doesn&#8217;t define what you can achieve. It&#8217;s the passion and dedication that truly matter.</em></strong></p>\n\n\n\n<p>Following my bachelor&#8217;s, the next step in my journey was pursuing a master&#8217;s degree to become a specialist. This led me to Sikkim Manipal University, where I immersed myself in the world of Information Technology from 2015 to 2017.</p>\n\n\n\n<p>Well, it wasn&#8217;t just about learning Computer Science. It was a hands-on experience with a keen focus on the latest technology and software development.&nbsp;</p>\n\n\n\n<p>During my time there, I specialized in object-oriented software development, using the newest tools and systems available. The tech adventure included delving into courses like algorithm analysis, web applications programming, and more.&nbsp;</p>\n\n\n\n<p><strong><em>Providing me with a robust skill set to navigate the ever-evolving tech world.</em></strong></p>\n\n\n\n<p>As I lead the WordPress theme team today, my journey from being an intern is a vibrant mix of continuous learning, personal growth, and a profound passion for shaping the digital landscape.&nbsp;</p>\n\n\n\n<p><strong><em>Join me in this exciting tech adventure, where every challenge is an opportunity to innovate and evolve!</em></strong></p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-attending-and-organizing-my-first-wordpress-meetup\">Attending and Organizing My First WordPress Meetup</h2>\n\n\n\n<p>Here&#8217;s an interesting part of how I got involved in WordPress. Back then, we used to install WordPress, add content to websites, and get paid NPR 5,000 for a website. We were thrilled with that!</p>\n\n\n\n<p>Later on, during the <strong>&#8220;<a href=\"https://en.wikipedia.org/wiki/Bibeksheel_Nepali\">Bibeksheel Nepali</a>&#8221; </strong>movement led by the late <a href=\"https://kafleg.com.np/an-open-letter-to-matt-mullenweg/\"><strong>Mr Ujwal Thapa</strong></a>, I got to know him. We participated in walking events together, covering the stretch from Mechi to Lumbini for a few days.&nbsp;</p>\n\n\n\n<p>During that time, Mr. Thapa emphasized the importance of contributing to the community and working together. He taught me that it&#8217;s not just about me learning and earning, everyone should have that opportunity. That changed my entire mindset!</p>\n\n\n\n<p>Now, let me take you back to 2010 when I attended my first WordPress meetup. In a gathering of 40-50 people, we discussed the basics of WordPress and how to create a site.&nbsp;</p>\n\n\n\n<p>After 2 years in 2012, I got a chance to organise a WordPress meetup. It was there that I discovered someone who created WordPress themes.&nbsp;</p>\n\n\n\n<p>I was both shocked and enthusiastic! That night, I went home, and searched for &#8220;Catch Themes&#8221; and &#8220;Graph Paper Press,&#8221; and that&#8217;s when my exploration began.</p>\n\n\n\n<p>After that, I stopped using themes from others and started exploring Catch Box of Catch Themes.&nbsp;</p>\n\n\n\n<p>Back then, I had just heard about WordPress and was eager to explore its potential. Little did I know that this casual meetup would mark the beginning of an incredible journey.</p>\n\n\n\n<p>But the experience was exhilarating, bringing together WordPress enthusiasts, sharing ideas, and building a sense of community.&nbsp;</p>\n\n\n\n<p><strong><em>It felt like planting a seed that would grow into something much larger.</em></strong></p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-volunteering-in-first-wordcamp-to-leading-contributor-day-in-wc-asia\">Volunteering in First WordCamp to Leading Contributor Day in WC Asia</h2>\n\n\n\n<p>Now moving into my WordCamp journey!&nbsp;</p>\n\n\n\n<p>After completing my bachelor&#8217;s, I came to Kathmandu in 2014. Luckily, I had the opportunity to volunteer at a WordCamp event with the help of Mr. Ujwal Thapa. Knowing the organizers made it easy for me to blend in among them.&nbsp;</p>\n\n\n\n<p>It was an exciting experience for me! From that point on, my world has revolved around WordPress, and I haven&#8217;t seen anything quite like it.</p>\n\n\n<div class=\"kb-gallery-wrap-id-6254_16174c-0b alignnone wp-block-kadence-advancedgallery\"><ul class=\"kb-gallery-ul kb-gallery-non-static kb-gallery-type-grid kb-gallery-id-6254_16174c-0b kb-gallery-caption-style-bottom-hover kb-gallery-filter-none kb-gallery-magnific-init\"><li class=\"kadence-blocks-gallery-item\"><div class=\"kadence-blocks-gallery-item-inner\"><a href=\"https://heropress.com/wp-content/uploads/2023/12/45717552634_4b10a9f688_k.jpg\" class=\"kb-gallery-item-link\"><div class=\"kb-gal-image-radius\"><div class=\"kb-gallery-image-contain kadence-blocks-gallery-intrinsic kb-gallery-image-ratio-land32 kb-has-image-ratio-land32\"><img src=\"https://heropress.com/wp-content/uploads/2023/12/45717552634_4b10a9f688_k-1024x579.jpg\" width=\"1024\" height=\"579\" alt=\"\" class=\"wp-image-6259\" /></div><div class=\"kadence-blocks-gallery-item__caption\">WordCamp Biratnagar 2018</div></div></a></div></li><li class=\"kadence-blocks-gallery-item\"><div class=\"kadence-blocks-gallery-item-inner\"><a href=\"https://heropress.com/wp-content/uploads/2023/12/contributorday_tableleads_organizers.jpg\" class=\"kb-gallery-item-link\"><div class=\"kb-gal-image-radius\"><div class=\"kb-gallery-image-contain kadence-blocks-gallery-intrinsic kb-gallery-image-ratio-land32 kb-has-image-ratio-land32\"><img src=\"https://heropress.com/wp-content/uploads/2023/12/contributorday_tableleads_organizers-1024x683.jpg\" width=\"1024\" height=\"683\" alt=\"\" class=\"wp-image-6260\" /></div><div class=\"kadence-blocks-gallery-item__caption\">Contributor Day table leads and organizers of WC Asia 2023</div></div></a></div></li><li class=\"kadence-blocks-gallery-item\"><div class=\"kadence-blocks-gallery-item-inner\"><a href=\"https://heropress.com/wp-content/uploads/2023/12/ujwal_3.jpg\" class=\"kb-gallery-item-link\"><div class=\"kb-gal-image-radius\"><div class=\"kb-gallery-image-contain kadence-blocks-gallery-intrinsic kb-gallery-image-ratio-land32 kb-has-image-ratio-land32\"><img src=\"https://heropress.com/wp-content/uploads/2023/12/ujwal_3.jpg\" width=\"960\" height=\"720\" alt=\"\" class=\"wp-image-6261\" /></div><div class=\"kadence-blocks-gallery-item__caption\">Mr Ujwal Thapa speaking in WordPress Meetup</div></div></a></div></li><li class=\"kadence-blocks-gallery-item\"><div class=\"kadence-blocks-gallery-item-inner\"><a href=\"https://heropress.com/wp-content/uploads/2023/12/with_worpdressers.jpg\" class=\"kb-gallery-item-link\"><div class=\"kb-gal-image-radius\"><div class=\"kb-gallery-image-contain kadence-blocks-gallery-intrinsic kb-gallery-image-ratio-land32 kb-has-image-ratio-land32\"><img src=\"https://heropress.com/wp-content/uploads/2023/12/with_worpdressers-1024x768.jpg\" width=\"1024\" height=\"768\" alt=\"\" class=\"wp-image-6262\" /></div><div class=\"kadence-blocks-gallery-item__caption\">WordCamp Asia 2023</div></div></a></div></li></ul></div>\n\n\n<p>On to the year 2015, I ventured into the theme reviewing team, delving into the intricate world of WordPress themes. The learning curve was steep, but the satisfaction of contributing to the WordPress ecosystem was unparalleled. Since 2018, I have been working as a team reps.</p>\n\n\n\n<p>My WordCamp journey became a tapestry of experiences, from <strong>WordCamp Nepal in 2014</strong> to various international events like <strong>WordCamp Tokyo in 2017</strong>, <strong>WordCamp Bangkok in 2019</strong>, and more.</p>\n\n\n\n<p>Further, I got the golden chance to organize <a href=\"https://biratnagar.wordcamp.org/2018/\"><strong>WordCamp Biratnagar 2018</strong></a><strong> </strong>as a lead. At that moment, there were very few companies who relied on WordPress to earn. It was a hassle to convince people to attend and let them know about WordPress. But we made it successful though!</p>\n\n\n\n<p>The years rolled on, and by 2023, I found myself organizing <strong>WordCamp Kathmandu </strong>once again, alongside events in Sylhet, Mumbai, and Manila. The swift of WordCamps continued into 2024, with Nepal and Asia taking the spotlight again.</p>\n\n\n\n<p>Reflecting on these years, I&#8217;ve not just attended events, I&#8217;ve woven connections, shared laughter, and learned valuable lessons. Also, personal anecdotes, like meeting fellow WordPress enthusiasts in unexpected places, make these WordCamps memorable.</p>\n\n\n\n<p>Looking forward, I&#8217;m thrilled about the upcoming WordCamps and the new experiences they&#8217;ll bring. Each event adds something special to my journey with WordPress, like a unique stroke on a canvas. The adventure goes on, driven by my love for WordPress and the incredible community that makes it all meaningful.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-growth-in-career-from-volunteer-to-full-time-wordpress\">Growth in Career From Volunteer to Full-time WordPress</h2>\n\n\n\n<p>In the vibrant world of WordPress, I wear multiple hats with pride. By day, I&#8217;m a WordPress Developer and Theme Reviewer, channeling my passion into crafting digital experiences that stand out. </p>\n\n\n\n<p>My role as a team representative for the WordPress.org themes team, contributing full-time isn&#8217;t just a job, it&#8217;s a joyous commitment that I hold close to my heart.</p>\n\n\n\n<p><strong><em>Adding a special touch to this journey is the honor of being sponsored by Rank Math.&nbsp;</em></strong></p>\n\n\n\n<p>This collaboration with <a href=\"https://rankmath.com/\"><strong>Rank Math</strong></a><strong> </strong>goes beyond the professional, it&#8217;s a shared dedication to the vibrant WordPress community that fuels my passion.</p>\n\n\n\n<p>Now, let me share a bit about how this sponsorship unfolded. Well, <strong>Rank Math </strong>was on the lookout for someone to sponsor, and in that pivotal moment, I had the privilege of connecting with <strong>Bhanu Ahluwalia</strong>, the Co-founder of Rank Math.&nbsp;</p>\n\n\n\n<p>Our conversation became more than just a chat; it became the catalyst that made the sponsorship a reality. Working full-time suddenly transformed from a dream to a tangible experience.&nbsp;</p>\n\n\n\n<p>Beyond the lines of code, my free time transforms into moments of contribution. I find comfort in adding my touch to the WordPress documentation team, weaving words that guide fellow enthusiasts through the vast WordPress landscape.&nbsp;</p>\n\n\n\n<p><strong>My involvement extends:</strong></p>\n\n\n\n<ul>\n<li>As a WordCamp speaker</li>\n\n\n\n<li>Organize WordCamp as a lead organizer</li>\n\n\n\n<li>Volunteer in different WordCamps and tech events</li>\n\n\n\n<li>Worke in diverse fields like core contributions, and translation, and even dived into theme/plugin development.</li>\n</ul>\n\n\n\n<p><strong>If you&#8217;re curious about my take on these standards, you can catch a glimpse of my <a href=\"https://wordpress.tv/speakers/ganga-kafle/\">WordCamp presentation video</a>.</strong></p>\n\n\n\n<p>But my WordPress journey isn&#8217;t confined to screens, it extends to the heartbeat of meetups and open-source platforms. Actively participating and engaging with the community is not just a routine, it&#8217;s a source of inspiration and connection.</p>\n\n\n\n<p>When I&#8217;m not crafting code or contributing, you&#8217;ll find me at the seat of WPEntire, my WordPress blog, sharing insights and experiences. It&#8217;s not just a blog, it&#8217;s a canvas where my WordPress journey finds another expressive outlet.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-10-years-of-volunteering-and-getting-sponsored-by-rank-math\">10 Years of Volunteering and Getting Sponsored By Rank Math</h2>\n\n\n\n<p>I&#8217;ve been part of the WordPress community for more than ten years, volunteering and sharing my love for technology. It&#8217;s been an exciting journey, from learning the ropes to contributing to a global community.</p>\n\n\n\n<p>Being a volunteer isn&#8217;t just about coding; it&#8217;s a personal adventure of growth and connection. Every bit of code feels like a step in a journey filled with innovation and learning.</p>\n\n\n\n<p>A significant part of this journey has been the support from Rank Math. Their sponsorship isn&#8217;t just financial help; it&#8217;s a vote of confidence. It encourages me to keep contributing to a community that has become a vital part of my life.</p>\n\n\n\n<p>This collaboration with Rank Math goes beyond code. It&#8217;s a shared belief in WordPress and the power of working together. As I look back at the past ten years, I see a story of learning, growing, and building friendships.&nbsp;</p>\n\n\n\n<p>Every WordCamp and meetup is like adding a stroke to my WordPress story. I&#8217;m excited about what the future holds, and the support from Rank Math adds a personal touch to my journey with WordPress.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-a-gateway-to-explore-the-world\">A Gateway to Explore the World</h2>\n\n\n\n<p>Being part of WordCamps is like unlocking a door to a whole new world. It&#8217;s not just about learning techie stuff, it&#8217;s about meeting people from all over and discovering how big and diverse our world is.</p>\n\n\n\n<p>Imagine a big gathering where folks who love working with WordPress come together. It&#8217;s like a big family reunion but with people from different countries and cultures. In this mix, we share ideas, solve problems, and learn from each other.</p>\n\n\n\n<p>For me, WordCamps has been a game-changer. They go beyond talking about websites. They help us understand each other&#8217;s worlds.&nbsp;</p>\n\n\n\n<p>When I spoke at WordCamp Manila and WordCamp Mumbai, it wasn&#8217;t just about WordPress tricks. It was about learning how people in different places use WordPress to solve unique challenges.</p>\n\n\n\n<p>At WordCamp Asia, being in charge of a team with people from all over was a bit like having a superhero squad. We had different skills and backgrounds, and that made us strong. It taught me that when we bring our unique strengths together, amazing things happen.</p>\n\n\n\n<p>But WordCamps aren&#8217;t just about work. They&#8217;re about making friends from places you&#8217;ve never been. Sharing stories about how we do things in our hometowns and realizing that even though we&#8217;re different, we&#8217;re also pretty similar.</p>\n\n\n\n<p>So, WordCamps have become more than just events for me. They&#8217;ve opened up a whole world of friendships, learning, and exploring different cultures. It&#8217;s like having a passport to a global community where everyone speaks the language of WordPress and friendship.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-my-thoughts\">My Thoughts</h2>\n\n\n\n<p>Sure, if you&#8217;re in the IT field, you can find internships on your own by doing some research. Don&#8217;t hesitate to apply and use your resources.</p>\n\n\n\n<p>For those interested in WordPress, consider spending 3-6 months as an intern. Instead of just thinking about money, focus on learning and gaining experience.&nbsp;</p>\n\n\n\n<p>WordPress is not just for blogs, it&#8217;s also a place for programming where you can make money. Depending on your skills, you can find jobs in writing, front-end development, and more.</p>\n\n\n\n<p>Surprisingly, you can even work as an HR for US companies while living in Nepal without being there physically. Being a developer is also not too difficult. If you work within the WordPress community, companies might sponsor you.</p>\n\n\n\n<p>Remember, as WordPress grows, more companies will want people like you. Technology and WordPress are always changing. For developers, it means earning in new ways. For others, it&#8217;s a chance for something new; bloggers can improve their blogs, and writers can create fresh content.</p>\n\n\n\n<p>So, WordPress offers opportunities for everyone involved. Ways of working and patterns might change, but you’ll never be outdated!</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"nepali\">मेरो यात्रा: एक प्रशिक्षार्थीबाट वर्डप्रेस थिम्स टीम प्रतिनिधिसम्म</h2>\n\n\n\n<p>यो निबन्ध लेख्दा मलाई अपार आनन्द मिलेको छ !</p>\n\n\n\n<p>म नेपालको एउटा दुर्गम कुनाबाट आएको हुँ, जहाँ एक अनौठो संस्कृतिको उदय भयो, एसएलसी पूरा गरेपछि कम्प्युटर कक्षा लिने परम्परा। यो एक समय थियो जब लगभग २-५% विद्यार्थीहरूले यो अवसरलाई अँगालेका थिए!</p>\n\n\n\n<p>हाम्रा शिक्षकले टाईपिङ्ग गर्न सिक्नुको महत्त्वलाई जोड दिनुहुन्थ्यो तर कहिलेकाहीँ, जब उहाँ वरपर हुनुहुन्थ्यो, हामी रोचक चीजहरू फेला पार्ने आशामा इन्टरनेट आइकनको प्रयोग गर्थ्यौं। दुर्भाग्यवश, हामीसँग इन्टरनेट जडान थिएन, तर हामीले अझै पनि सक्दो प्रयास गर्थ्यौं।&nbsp;</p>\n\n\n\n<p>हाम्रो सानो सिक्ने ठाउँमा, कम्प्युटर प्रयोग गर्ने हरेक मौका विशेष महसुस गर्थ्यौं। यी प्रारम्भिक अनुभवहरू, डर र जिज्ञासाको मिश्रणले हाम्रो टेक्नोलोजी यात्राको जग बसाल्यो।</p>\n\n\n\n<p>यो हाम्रो सिक्न उत्सुकताको प्रमाण हो, स्रोतहरू सीमित हुँदा पनि।</p>\n\n\n\n<p>फर्केर हेर्दा, अन्वेषण गर्ने र फराकिलो डिजिटल संसारसँग जोडिने प्रयास गर्ने ती क्षणहरू जिज्ञासाको बीउ रोप्ने जस्तै थिए। जुन पछि प्रविधिप्रतिको बलियो प्रेममा परिणत भयो।</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-म-र-धर-तलहर-म-एक-झलक\">मेरो धरातलहरुमा एक झलक</h2>\n\n\n\n<p>प्रबिधि बिषयमा बिज्ञता हासिल गर्नदेखि वर्डप्रेस थिम टोलीको नेतृत्व गर्नेसम्मको मेरो प्राविधिक यात्रामा घुमौं। यो सबै ISC पूरा गरेपछि सुरु भयो र पत्याउनुहोस् वा नपत्याउनुहोस् , यो एक सरकारी विद्यालयमा भयो।</p>\n\n\n\n<p>स्कूल सकिएपछि, मैले बाटो रोज्नुपर्&#x200d;यो, र म आईटीसँग गएँ। अब, रमाइलो पक्ष के हो, म एक दिन साथीको घरमा गएको थिएँ, र मैले त्यस दिन साथीको राम्रो डिजिटल आईडी कार्ड देखे। मैले मेरो साथीलाई यसको बारेमा सोधें, र उसले यो कलेजको परिचयपत्र हो भन्यो। त्यो पल, मैले सोचे, &#8220;यदि मैले आईटी पढे भने, मैले पनि&nbsp; यस्तो आधुनिक आईडी कार्ड पाउछु!&#8221;</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>चाखलाग्दो ट्विस्ट यो हो कि म IT को लागी प्रवेश परीक्षामा टपर पनि भएँ।</p>\n</blockquote>\n\n\n\n<p>म भर्ना हुँदा १५-१६ जना मात्र विद्यार्थी थिए। अचम्मको कुरा के छ भने, हामीमध्ये ७ जनाले मात्रै पूरा डिग्री हासिल गर्&#x200d;यौं किनभने धेरैले भारत जाने निर्णय गरे, र कतिपयले केहि समय पछि IT उनीहरूको कुरा होइन भन्ने महसुस गरे। त्यसबेला आईटी क्षेत्रमा थोरै मानिस मात्रै इच्छुक थिए । धेरैको रोजाई इन्जिनियर हुने हुन्थो।</p>\n\n\n\n<p>मेरो अध्ययनको क्रममा, प्रोग्रामिङ कोड मलाई के हो के हो जस्तो लाग्थ्यो। मेरो दिमागमा सहजै बस्नु चुनौतीपूर्ण थियो। जब हामीले प्रयोगशालामा प्रयोग गर्न थाल्यौं, आदेशहरू दिन सिक्यौं, त्यै पनि त्यो अझै रहस्यमय थियो ।</p>\n\n\n\n<p>जब मेरो स्नातक डिग्री पूरा गर्ने समय नजिक थियो, टेक्नोलोजी फस्टाउँदै थियो, र कम्पनीहरूले वेबसाइट हुनुको महत्त्व महसुस गर्न थाले। यससँगै म केही सामाजिक क्षेत्रको काममा संलग्न भएँ र त्यहाँका मानिसहरूले IT बारे सोध्न थाले। यस क्षेत्रलाई अझ राम्ररी बुझ्नको लागि, मैले IT कार्यक्रमहरूमा भाग लिएँ, र जब यसले मलाई छोयो, मैले यस क्षेत्रमा केही महत्त्वपूर्ण गर्न आवश्यक ठानेको थिए ।</p>\n\n\n\n<p>पूर्वाञ्चल विश्वविद्यालयबाट सूचना प्रविधिमा स्नातक हासिल गरे। पहिला तेश्रो चौथो सेमेस्टर सम्म पनि पछि&nbsp; म पछि के काम गर्नेछु भनेर पूर्णतया निश्चित थिएन।</p>\n\n\n\n<p><strong>तर यस क्षेत्रमा भएकोले मलाई तपाईको डिग्रीले तपाईले के हासिल गर्न सक्नुहुन्छ भनेर परिभाषित गर्दैन भन्ने महसुस गरायो। यो जोश र समर्पण हो जुन साँच्चै महत्त्वपूर्ण छ।</strong></p>\n\n\n\n<p>मेरो स्नातक पछि, मेरो यात्राको अर्को चरण एक विशेषज्ञ बन्नको लागि मास्टर डिग्री पछ्याउँदै थियो। यसले मलाई सिक्किम मणिपाल विश्वविद्यालयमा पुर्यायो, जहाँ मैले २०१५ देखि २०१७ सम्म सूचना प्रविधिको संसारमा डुबें।</p>\n\n\n\n<p>यो कम्प्यूटर विज्ञान सिक्ने बारेमा मात्र थिएन। यो नवीनतम प्रविधि र सफ्टवेयर विकासमा गहिरो ध्यान अनुभव गराउने थलो थियो।</p>\n\n\n\n<p>त्यहाँ मेरो समयको दौडान, उपलब्ध नयाँ उपकरण र प्रणालीहरू प्रयोग गरेर वस्तु-उन्मुख सफ्टवेयर विकासमा विशेषज्ञता हासिल गरें। मैले यहाँ धेरै प्रोग्रमिंग भाषाहरु र अन्य कुराहरु सिके ।</p>\n\n\n\n<p>यसले मलाई सधैं विकसित हुँदै गइरहेको प्राविधिक संसारमा हिनडुल गर्नको लागि बलियो सीप प्रदान गर्दै थियो।</p>\n\n\n\n<p>आज मैले वर्डप्रेस थिम टोलीको नेतृत्व गर्नु, इन्टर्नबाट मेरो यात्रा निरन्तर सिकाइ, व्यक्तिगत वृद्धि, र डिजिटल परिदृश्यलाई आकार दिनको लागि गहिरो जोशको जीवन्त मिश्रण हो।</p>\n\n\n\n<p>यो रोमाञ्चक प्राविधिक साहसिक कार्यमा मसँग सामेल हुनुहोस्, जहाँ हरेक चुनौती नवीनता र विकास गर्ने अवसर हो!</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-म-र-पह-ल-वर-डप-र-स-म-टअपम-सहभ-ग-ह-द-र-आय-जन-गर-द\">मेरो पहिलो वर्डप्रेस मिटअपमा सहभागी हुँदै र आयोजन गर्दै</h2>\n\n\n\n<p><br />यहाँ म कसरी वर्डप्रेसमा संलग्न भएँ को एक रोचक कहानी छ। त्यसबेला, हामीले वर्डप्रेस स्थापना गर्ने, वेबसाइटहरूमा सामग्री थप्ने र साइटका लागि नेपाली ५,000 लिने गर्दथ्यौं। हामी त्यो संग रोमाञ्चित भयौ!</p>\n\n\n\n<p>पछि स्वर्गीय <a href=\"https://kafleg.com.np/an-open-letter-to-matt-mullenweg/\">उज्वल थापाको</a> नेतृत्वमा भएको ‘<a href=\"https://en.wikipedia.org/wiki/Bibeksheel_Nepali\">विवेकशील नेपाली</a>’ आन्दोलनको क्रममा मैले उहाँलाई चिनेँ । मेचीदेखि लुम्बिनीसम्म केही दिनसम्म सँगै हिँड्ने कार्यक्रममा भाग लिए।</p>\n\n\n\n<p>सो क्रममा श्री थापाले समुदायमा योगदान र मिलेर काम गर्नुपर्नेमा जोड दिए । उनले मलाई सिक्ने र कमाउने मात्र होइन, सबैले त्यो अवसर पाउनुपर्छ भनेर सिकाए। यसले मेरो सम्पूर्ण मानसिकता परिवर्तन गर्यो।&nbsp;</p>\n\n\n\n<p>अब, म तपाइँलाई २०१० मा फिर्ता लैजान चाहन्छु जब मैले मेरो पहिलो वर्डप्रेस भेटघाटमा भाग लिएको थिएँ। करिब ४०-५० व्यक्तिहरूको भेलामा, हामीले वर्डप्रेसको आधारभूत कुराहरू र कसरी साइट सिर्जना गर्ने बारे छलफल गर्यौं।</p>\n\n\n\n<p>२०१२ मा २ वर्ष पछि, मैले वर्डप्रेस मिटअप आयोजना गर्ने मौका पाएँ। त्यहाँ मैले वर्डप्रेस थिम सिर्जना गर्ने व्यक्ति हरुलाई चिने ।</p>\n\n\n\n<p>म स्तब्ध र उत्साहित दुवै थिएँ । त्यो रात, म घर गएँ, र &#8220;क्याच थिम&#8221; र &#8220;ग्राफ पेपर प्रेस&#8221; खोजेँ र त्यही बेला मेरो अन्वेषण सुरु भयो।</p>\n\n\n\n<p>त्यस पछि, मैले अरूबाट बनेका थिमहरू प्रयोग गर्न छोडें र क्याच थिमको थिम क्याच बक्स अन्वेषण गर्न थाले।</p>\n\n\n\n<p>त्यसबेला, मैले भर्खरै वर्डप्रेसको बारेमा सुनेको थिएँ र यसको सम्भाव्यता अन्वेषण गर्न उत्सुक थिएँ। यो अनौपचारिक भेटघाटले अविश्वसनीय यात्राको सुरुवात गर्नेछ भन्ने कुरा मलाई कमै थाहा थियो।</p>\n\n\n\n<p>तर त्यो बेलाको अनुभव रमाइलो थियो, वर्डप्रेस उत्साहीहरूलाई सँगै ल्याउने, विचारहरू साझा गर्ने, र समुदायको भावना निर्माण गर्ने।</p>\n\n\n\n<p><strong>यो एउटा बीउ रोपेको जस्तो महसुस भयो जुन पछि धेरै ठूलो बन्नेछ।</strong></p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-पह-ल-वर-डक-य-म-पम-स-वय-स-वक-भएर-सहभ-ग-ह-द-र-वर-डक-य-म-प-एश-य-क-कन-ट-र-ब-य-टर-ड-म-अग-व-ई-गर-द\">पहिलो वर्डक्याम्पमा स्वयंसेवक भएर सहभागी हुँदै र वर्डक्याम्प एशियाको कन्ट्रिब्यूटर डे मा अगुवाई गर्दै</h2>\n\n\n\n<p>अब मेरो वर्डक्याम्प यात्रामा जाउँ ।&nbsp;</p>\n\n\n\n<p>मैले स्नातक पूरा गरेपछि, म २०१४ मा काठमाडौं आएँ। सौभाग्यवश, मैले श्री उज्ज्वल थापाको सहयोगमा वर्डक्याम्प कार्यक्रममा स्वयंसेवक हुने मौका पाएँ। आयोजकहरू चिन्दा मलाई तिनीहरूबीच घुलमिल हुन सजिलो भयो।</p>\n\n\n\n<p>यो मेरो लागि एक रोमाञ्चक अनुभव थियो । त्यस बिन्दु देखि, मेरो संसार वर्डप्रेसको वरिपरि घुमेको छ, र मैले यो जस्तो केहि देखेको छैन।</p>\n\n\n<div class=\"kb-gallery-wrap-id-6254_db195f-01 alignnone wp-block-kadence-advancedgallery\"><ul class=\"kb-gallery-ul kb-gallery-non-static kb-gallery-type-grid kb-gallery-id-6254_db195f-01 kb-gallery-caption-style-bottom kb-gallery-filter-none\"><li class=\"kadence-blocks-gallery-item\"><div class=\"kadence-blocks-gallery-item-inner\"><div class=\"kb-gal-image-radius\"><div class=\"kb-gallery-image-contain kadence-blocks-gallery-intrinsic kb-gallery-image-ratio-land32 kb-has-image-ratio-land32\"><img src=\"https://heropress.com/wp-content/uploads/2023/12/with_worpdressers-1024x768.jpg\" width=\"1024\" height=\"768\" alt=\"\" class=\"wp-image-6262\" /></div><div class=\"kadence-blocks-gallery-item__caption\">WordCamp Asia 2023 </div></div></div></li><li class=\"kadence-blocks-gallery-item\"><div class=\"kadence-blocks-gallery-item-inner\"><div class=\"kb-gal-image-radius\"><div class=\"kb-gallery-image-contain kadence-blocks-gallery-intrinsic kb-gallery-image-ratio-land32 kb-has-image-ratio-land32\"><img src=\"https://heropress.com/wp-content/uploads/2023/12/ujwal_3.jpg\" width=\"960\" height=\"720\" alt=\"\" class=\"wp-image-6261\" /></div><div class=\"kadence-blocks-gallery-item__caption\">Mr Ujwal Thapa speaking in WordPress Meetup</div></div></div></li><li class=\"kadence-blocks-gallery-item\"><div class=\"kadence-blocks-gallery-item-inner\"><div class=\"kb-gal-image-radius\"><div class=\"kb-gallery-image-contain kadence-blocks-gallery-intrinsic kb-gallery-image-ratio-land32 kb-has-image-ratio-land32\"><img src=\"https://heropress.com/wp-content/uploads/2023/12/contributorday_tableleads_organizers-1024x683.jpg\" width=\"1024\" height=\"683\" alt=\"\" class=\"wp-image-6260\" /></div><div class=\"kadence-blocks-gallery-item__caption\">Contributor Day table leads and organizers of WC Asia 2023</div></div></div></li><li class=\"kadence-blocks-gallery-item\"><div class=\"kadence-blocks-gallery-item-inner\"><div class=\"kb-gal-image-radius\"><div class=\"kb-gallery-image-contain kadence-blocks-gallery-intrinsic kb-gallery-image-ratio-land32 kb-has-image-ratio-land32\"><img src=\"https://heropress.com/wp-content/uploads/2023/12/45717552634_4b10a9f688_k-1024x579.jpg\" width=\"1024\" height=\"579\" alt=\"\" class=\"wp-image-6259\" /></div><div class=\"kadence-blocks-gallery-item__caption\">WordCamp Biratnagar 2018</div></div></div></li></ul></div>\n\n\n<p>२०१५ मा मैले वर्डप्रेस थिमहरूको जटिल संसारमा खोज्दै थिम समीक्षा टोलीमा प्रवेश गरें। सिक्ने क्रम ठाडो थियो, तर वर्डप्रेस संरचनामा योगदान गरेको सन्तुष्टि अतुलनीय थियो। २०१८ देखि, म टोली नेतृत्वको रूपमा काम गर्दैछु।</p>\n\n\n\n<p>मेरो वर्डक्याम्प यात्रा सन् <strong>२०१४ मा वर्डक्याम्प नेपाल</strong>देखि <strong>२०१७ मा वर्डक्याम्प टोकियो</strong>, <strong>२०१९ मा वर्डक्याम्प बैंकक</strong>, र थप अन्य विभिन्न अन्तर्राष्ट्रिय कार्यक्रमहरूसम्मको अनुभवको एउटा भण्डार बन्यो।</p>\n\n\n\n<p>यसबाहेक, मेरो नेतृत्वको रूपमा <strong><a href=\"https://biratnagar.wordcamp.org/2018/\">वर्डक्याम्प विराटनगर २०१८</a></strong> आयोजना गर्ने सुनौलो मौका पाएँ। त्यो क्षणमा, त्यहाँ धेरै कम कम्पनीहरू मात्र थिए जसले वर्डप्रेस मा भर परेर कमाउने गरेका थिए। मानिसहरूलाई उपस्थित हुन र उनीहरूलाई वर्डप्रेस बारे जानकारी दिन मनाउनको लागि यो झन्झट थियो। तर हामीले यसलाई सफल बनायौं!</p>\n\n\n\n<p>वर्षहरू बित्दै गए, र २०२३ सम्ममा, मैले सिल्हेट, मुम्बई र मनिलाका कार्यक्रमहरूसँगै फेरि एक पटक वर्डक्याम्प काठमाडौंको आयोजना गरेको थिए। वर्डक्याम्पहरुको आँधी २०२४ मा जारी रह्यो, नेपाल र एशियाले फेरि केन्द्र बनायो ।</p>\n\n\n\n<p>यी वर्षहरूलाई प्रतिबिम्बित गर्दै, मैले कार्यक्रमहरूमा मात्र भाग लिएको छैन, मैले समुदायको एउटा राम्रो संजाल बुनेको छु, खुसिहरु साझा गरेको छु, र बहुमूल्य पाठहरू सिकेको छु। व्यक्तिगत उपाख्यानहरू, जस्तै अप्रत्याशित ठाउँहरूमा वर्डप्रेसका उत्साहीहरूलाई भेट्दा यी वर्डक्याम्पलाई यादगार बनाउँदछ।</p>\n\n\n\n<p>अगाडि हेर्दै, म आगामी वर्डक्याम्पहरु र तिनीहरूले ल्याउने नयाँ अनुभवहरू बारे रोमाञ्चित छु। प्रत्येक घटनाले वर्डप्रेसको साथ मेरो यात्रामा केहि विशेष थप्छ, जस्तै क्यानभासमा अद्वितीय स्ट्रोक। साहसिक कार्य जारी छ, वर्डप्रेसको लागी मेरो प्रेम र यो सबै अर्थपूर्ण बनाउने अविश्वसनीय समुदाय द्वारा संचालित।</p>\n\n\n\n<h2 class=\"wp-block-heading\">कर्ममा वृद्धि: स्वयंसेवक सेवामा बाट पूर्ण-समय वर्डप्रेसमा</h2>\n\n\n\n<p>वर्डप्रेसको जीवन्त संसारमा, म गर्वका साथ धेरै टोपीहरू लगाउँछु। दिनहुँ, म एक वर्डप्रेस विकासकर्ता र थिम समीक्षक हुँ, मेरो लगाबलाई डिजिटल अनुभवहरू बनाउनमा सहजीकरण गर्दैछ, जुन अलिक फरक देखिन्छ।</p>\n\n\n\n<p>WordPress.org थिम टोलीका लागि टोली प्रतिनिधिको रूपमा मेरो भूमिकामा, पूर्ण-समय योगदान गर्नु भनेको जागिर मात्र होइन, यो मेरो हृदयको नजिक रहेको खुशीको प्रतिबद्धता हो।</p>\n\n\n\n<p>यस यात्रामा विशेष स्पर्श थप्नु भनेको Rank Math द्वारा प्रायोजित हुनुको सम्मान हो।</p>\n\n\n\n<p><a href=\"https://rankmath.com/\">Rank Math</a> सँगको यो सहकार्य जागिर भन्दा बाहिर जान्छ, यो जीवन्त वर्डप्रेस समुदायको लागि साझा समर्पण हो जसले मेरो जोशलाई बढाउँछ।</p>\n\n\n\n<p>अब मलाई यो प्रायोजन कसरी भयो भन्ने बारे केही कुरा गर्नुछ।&nbsp; ठिक छ, Rank Math कसैलाई प्रायोजित गर्ने खोजीमा थियो, र त्यो निर्णायक क्षणमा, मैले Rank Math का सह-संस्थापक भानु अहलुवालिया सँग जोडिने सुअवसर पाएको थिएँ।</p>\n\n\n\n<p>हाम्रो वार्तालाप कुराकानी मात्र होइन; यो प्रायोजनलाई वास्तविकता बनाउने उत्प्रेरक बन्यो। पूर्ण-समय काम गर्दा अचानक सपनाबाट मूर्त अनुभवमा परिवर्तन भयो।</p>\n\n\n\n<p>कोडको रेखाहरू भन्दा बाहिर, मेरो खाली समय योगदानको क्षणहरूमा परिवर्तन हुन्छ। मैले वर्डप्रेस कागजात टोलीमा मेरो विज्ञता थप्दा सान्त्वना पाउँछु, शब्दहरू बुनाई जसले साथीहरुलाई उत्साही बनाउछ र विशाल वर्डप्रेस परिदृश्य मार्फत मार्गदर्शन गर्दछ।</p>\n\n\n\n<p>मेरो संलग्नता विस्तार हुन्छ:</p>\n\n\n\n<ul>\n<li>म वर्डक्याम्प वक्ताको रूपमा उभिएको छु&nbsp;</li>\n\n\n\n<li>एक प्रमुख आयोजक रूपमा वर्डक्याम्प संचालन र सफलता पुर्बक सम्पन्न गरेको छु&nbsp;</li>\n\n\n\n<li>विभिन्न वर्डक्याम्पहरु र प्राविधिक कार्यक्रमहरूमा स्वयंसेवकको रूपमा सहयोगी हात दिएको छु&nbsp;</li>\n\n\n\n<li>वर्डप्रेसको मुख्य फायालमा योगदान, र अनुवाद जस्ता विविध क्षेत्रहरूमा काम गरे, र थिम र प्लगिन विकासमा पनि डुबेको छु&nbsp;</li>\n</ul>\n\n\n\n<p>यदि तपाइँ यी मापदण्डहरूमा मेरो लिने बारे उत्सुक हुनुहुन्छ भने, तपाइँ मेरो वर्डक्याम्प <a href=\"https://wordpress.tv/speakers/ganga-kafle/\">प्रस्तुतीकरण भिडियोको झलक</a> हेर्न सक्नुहुन्छ।</p>\n\n\n\n<p>तर मेरो वर्डप्रेस यात्रा स्क्रिनमा मात्र सीमित छैन, यो भेटघाट र खुला स्रोत प्लेटफर्महरूको मुटुको धड्कनमा विस्तार हुन्छ। सक्रिय रूपमा सहभागी हुनु र समुदायसँग संलग्न हुनु एक दिनचर्या मात्र होइन, यो प्रेरणा र जडानको स्रोत हो।</p>\n\n\n\n<p>जब म कोड बनाउँदै वा योगदान गरिरहेको छैन, तपाईंले मलाई <a href=\"https://www.wpentire.com/\">WPEntire</a> को सीटमा भेट्टाउनुहुनेछ, मेरो वर्डप्रेस ब्लग, अन्तर्दृष्टि र अनुभवहरू साझा गर्दै। यो केवल एक ब्लग होइन, यो एक क्यानभास हो जहाँ मेरो वर्डप्रेस&nbsp; यात्राले अर्को अभिव्यक्त दिने ठाउँ फेला पार्छ।</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-१०-वर-षक-स-व-म-rank-math-ब-ट-प-र-य-ज-त-ह-द\">१० वर्षको सेवामा Rank Math बाट प्रायोजित हुँदै</h2>\n\n\n\n<p>म दशवर्षदेखि वर्डप्रेस समुदायको हिस्सा भएको छु, स्वयंसेवा गर्दै र टेक्नोलोजीको लागि मेरो प्रेम साझा गर्दै। यो एक रोमाञ्चक यात्रा भएको छ, सिक्ने देखि विश्वव्यापी समुदायमा योगदान गर्न सम्म।</p>\n\n\n\n<p>स्वयंसेवक हुनु भनेको कोडिङ मात्र होइन; यो वृद्धि र जडान को एक व्यक्तिगत साहस हो । कोडको प्रत्येक अंश नवीनता र सिकाइले भरिएको यात्रामा एक कदम जस्तै महसुस गर्दछ।</p>\n\n\n\n<p>यो प्रायोजन आर्थिक सहयोगको बारेमा मात्र होइन, यो मेरो वर्डप्रेस यात्राको व्यक्तिगत अध्याय हो, अविश्वसनीय जडानहरू र साझा प्रतिबद्धतालाई मुख्य आकर्षण गर्दै जसले यस समुदायलाई विशेष बनाउँछ।</p>\n\n\n\n<p><a href=\"https://rankmath.com/\">Rank Math</a> संग यो सहयोग र सहकार्य कोड बाहिर जान्छ। यो वर्डप्रेसमा साझा विश्वास र सँगै काम गर्ने शक्ति हो। जब म विगत सात वर्षलाई फर्केर हेर्छु, म सिक्ने, बढ्दै जाने र मित्रता निर्माण गर्ने कथा देख्छु।</p>\n\n\n\n<p>प्रत्येक वर्डक्याम्प र भेटघाट मेरो वर्डप्रेस कथामा तलाथप्नु जस्तै हो। म भविष्यमा के हुन्छ भन्ने बारे उत्साहित छु, र Rank Math को समर्थनले वर्डप्रेसको साथ मेरो यात्रामा व्यक्तिगत स्पर्श थप्छ। म खुसि छु ।</p>\n\n\n\n<h2 class=\"wp-block-heading\">विश्वलाई अन्वेषण गर्ने एक प्रवेशद्वार</h2>\n\n\n\n<p>वर्डक्याम्पको एउटा अंग हुनु भनेको नयाँ संसारको ढोका खोल्नु हो। यो प्राविधिक सामानहरू सिक्ने मात्र होइन, यो सबै ठाउँका मानिसहरूलाई भेट्ने र हाम्रो संसार कति ठूलो र विविध छ भनेर पत्ता लगाउने बारेमा पनि हो।</p>\n\n\n\n<p>एउटा ठूलो जमघटको कल्पना गर्नुहोस् जहाँ वर्डप्रेससँग काम गर्न मन पराउने मानिसहरू एकसाथ आउँछन्। यो एउटा ठूलो पारिवारिक पुनर्मिलन जस्तो छ तर विभिन्न देश र संस्कृतिका मानिसहरूसँग। यस मिश्रणमा, हामी विचारहरू साझा गर्छौं, समस्याहरू समाधान गर्छौं, र एकअर्काबाट सिक्छौं।</p>\n\n\n\n<p>मेरो लागि, वर्डक्याम्पहरु एक खेल-परिवर्तक भएको छ। तिनीहरू वेबसाइटहरूको बारेमा कुरा गर्न बाहिर जान्छन्। तिनीहरूले हामीलाई एकअर्काको संसार बुझ्न मद्दत गर्छन्।</p>\n\n\n\n<p>जब मैले वर्डक्याम्प मनिला र वर्डक्याम्प मुम्बईमा बोले, यो केवल वर्डप्रेस बारेमा मात्र थिएन। यो विभिन्न ठाउँहरूमा मानिसहरूले अनौठो चुनौतीहरू समाधान गर्न वर्डप्रेस प्रयोग गर्ने तरिका सिक्ने बारेमा पनि थियो।</p>\n\n\n\n<p>वर्डक्याम्प एशियामा एक टोलीको इन्चार्ज हुनु भनेको सुपरहिरो भएको जस्तो थियो। हामीसँग विभिन्न सीप र पृष्ठभूमिहरू थिए, र यसले हामीलाई बलियो बनायो। यसले मलाई सिकायो कि जब हामी हाम्रो अद्वितीय शक्तिहरू सँगै ल्याउँछौं, आश्चर्यजनक चीजहरू हुन्छन्।</p>\n\n\n\n<p>तर वर्डक्याम्पहरु कामको बारेमा मात्र होइन। तिनीहरू तपाईं कहिल्यै नगएको ठाउँहरूबाट साथीहरू बनाउने बारेमा पनि हुन्। हामी हाम्रो गृहनगरमा कसरी काम गर्छौं भन्ने बारे कथाहरू सुनाउदै र महसुस गर्दै कि हामी फरक भए तापनि, हामी पनि धेरै समान छौं।</p>\n\n\n\n<p>त्यसो भए, वर्डक्याम्पहरू मेरो लागि घटनाहरू भन्दा बढी भएका छन्। तिनीहरूले मित्रता, सिक्ने, र विभिन्न संस्कृतिहरू अन्वेषण गर्ने सम्पूर्ण संसार खोलेका छन्। यो विश्वव्यापी समुदायमा पासपोर्ट भएको जस्तै हो जहाँ सबैले वर्डप्रेस र मित्रताको भाषा बोल्छन्।</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-म-र-भ-वन-हर\">मेरा भावनाहरू</h2>\n\n\n\n<p>पक्का, यदि तपाईं आईटि क्षेत्रमा हुनुहुन्छ भने, तपाईंले केही अनुसन्धान गरेर आफैंमा इन्टर्नशिपहरू फेला पार्न सक्नुहुन्छ। लागू गर्न र आफ्नो स्रोतहरू प्रयोग गर्न नहिचकिचाउनुहोस्।</p>\n\n\n\n<p>वर्डप्रेसमा रुचि राख्नेहरूका लागि, एक इन्टर्नको रूपमा ३-६ महिना खर्च गर्न तयार हुनुहोस्। पैसाको बारेमा मात्र सोच्नुको सट्टा, सिक्ने र अनुभव प्राप्त गर्नमा ध्यान केन्द्रित गर्नुहोस्।</p>\n\n\n\n<p>वर्डप्रेस ब्लगहरूको लागि मात्र होइन, यो प्रोग्रामिङको लागि ठाउँ पनि हो जहाँ तपाईं पैसा कमाउन सक्नुहुन्छ। तपाइँको सीपको आधारमा, तपाइँ लेखन, डिजाईन विकास गर्न, र थप मा काम पाउन सक्नुहुन्छ।</p>\n\n\n\n<p>अचम्मको कुरा के छ भने, तपाईं शारीरिक रूपमा त्यहाँ नभई नेपालमा बसेर अमेरिकी कम्पनीहरूमा एचआरको रूपमा काम गर्न सक्नुहुन्छ। विकासकर्ता बन्न पनि गाह्रो छैन। यदि तपाइँ वर्डप्रेस समुदाय भित्र काम गर्नुहुन्छ भने, कम्पनीहरूले तपाइँलाई प्रायोजित गर्न सक्छन्।</p>\n\n\n\n<p>याद गर्नुहोस्, वर्डप्रेस बढ्दै जाँदा, धेरै कम्पनीहरूले तपाईंजस्ता मानिसहरू चाहन्छन्। टेक्नोलोजी र वर्डप्रेस सधैं परिवर्तन हुँदैछ। विकासकर्ताहरूको लागि, यसको अर्थ नयाँ तरिकामा कमाइ हुन्छ। अरूको लागि, यो केहि नयाँ को लागी एक मौका हो; ब्लगरहरूले आफ्नो ब्लगहरू सुधार गर्न सक्छन्, र लेखकहरूले नयाँ सामग्री सिर्जना गर्न सक्छन्।</p>\n\n\n\n<p>त्यसोभए, वर्डप्रेसले संलग्न सबैका लागि अवसरहरू प्रदान गर्दछ। काम गर्ने तरिका र ढाँचाहरू परिवर्तन हुन सक्छ, तर तपाईं कहिल्यै पुरानो हुनुहुने छैन!</p>\n<p>The post <a href=\"https://heropress.com/essays/my-journey-from-an-intern-to-wordpress-themes-team-lead/\">My Journey From an Intern to WordPress Themes Team Reps &#8211; मेरो यात्रा: एक प्रशिक्षार्थीबाट वर्डप्रेस थिम्स टीम प्रतिनिधिसम्म</a> appeared first on <a href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 20 Dec 2023 02:15:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Ganga Kafle\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"Gutenberg Times: State of the Word, Redesign Developer resources, Block Theme updates — Weekend Edition 278\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=26698\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:114:\"https://gutenbergtimes.com/state-of-the-word-redesign-developer-resources-block-theme-updates-weekend-edition-278/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:23681:\"<p>Howdy, </p>\n\n\n\n<p>2023 is coming to the end. This is the last edition for 2023, as I take a few vacation days over the Holidays and be with ailing family members. In January, it&#8217;ll be six years of almost weekly news about the block editor, and its progress into a first class site building tool. Thank you for being a faithful subscriber to the Gutenberg Times, and all your encouraging comments over all those years.</p>\n\n\n\n<p>For a highlight reel of 2023, I recommend you watch <a href=\"https://www.youtube.com/watch?v=c7M4mBVgP3Y&t=1s\">the recording of the State of the Word 2023 by Matt Mullenweg</a>, if you missed it on the live stream. It was a great presentation with an outlook for 2024 and beyond. If you are not the video-watching type, you&#8217;ll also find quite a few links to Recap posts below. </p>\n\n\n\n<p>Wishing you and yours festive Holidays, and a prosperous, healthy and happy New Year! </p>\n\n\n\n<p>Yours, 💕<br /><em>Birgit</em></p>\n\n\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-word-press-release-information\">Developing Gutenberg and WordPress</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#1-state-of-the-word\">State of the Word</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#2-list-of-recap-posts-from-around-the-word-press-space\">List of Recap posts from around the WordPress space</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-q-amp-a-after-state-of-the-word-2023\">Q &amp; A after State of the Word 2023</a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#1-gutenberg\">Gutenberg Updates</a></li><li><a href=\"https://gutenbergtimes.com/feed/#5-strong-upcoming-events-strong\">Upcoming events</a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a></li><li><a href=\"https://gutenbergtimes.com/feed/#7-theme-development-for-full-site-editing-and-blocks\">Theme Development for Full Site Editing and Blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </a></li></ul></div>\n</div></div>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"1-state-of-the-word\">State of the Word</h3>\n\n\n\n<p><a href=\"https://www.youtube.com/watch?v=c7M4mBVgP3Y&t=1s\"><strong>State of the Word</strong> recording</a> is available on YouTube. </p>\n\n\n\n<p>What stood out for me in terms of what&#8217;s coming next year?Here is my list: </p>\n\n\n\n<ul>\n<li><strong><a href=\"https://wordpress.org/data-liberation/\">Data Liberation</a></strong> is a massive initiative. Empowering users to take their site with them from one CMS to another is such a pain right now. It&#8217;s not only from Squarespace or Wix to WordPress, it&#8217;s also from one WordPress host to another, and also from one-Page Builder to Core. A giant step towards an open web. <a href=\"https://github.com/wordpress/data-liberation\"> GitHub repository</a> and WP Slack channel:  <a href=\"https://wordpress.slack.com/archives/C069AKUBPHB\" target=\"_blank\" rel=\"noreferrer noopener\">#data-liberation</a>.</li>\n\n\n\n<li>The promise of connecting the Block editor to Custom fields is intriguing. <strong>Mario Santos</strong> posted a <a href=\"https://github.com/WordPress/gutenberg/issues/53300#issuecomment-1808020238\">proposal for the first iteration in WordPress 6.5</a>. </li>\n\n\n\n<li>The <a href=\"https://github.com/WordPress/gutenberg/discussions/categories/interactivity-api\"><strong>Interactivity API</strong></a>, has been mentioned in a few Weekend Editions. It has been used internally for a few core blocks, in WordPress 6.4 and  will become a public API in WordPress 6.5. </li>\n\n\n\n<li><strong>Patterns </strong>will become first class citizens of the site editor with their upcoming partially syncing feature. It means you can change the styling of a pattern that&#8217;s used over multiple pages without updating the content. </li>\n\n\n\n<li><strong><a href=\"https://developer.wordpress.org/playground/\">WordPress Playground</a></strong> will also change how we preview and develop for WordPress. We use it as another way to work with the <a href=\"https://github.com/bph/gutenberg/discussions/81\">Gutenberg Nightly</a>. </li>\n\n\n\n<li>Mullenweg revealed that <strong>WordCamp US </strong>will be in <strong>Portland, Oregon </strong>with two contributor days and a two &#8211; day conference, <strong>September 17 &#8211; 20, 2024</strong>. Sounds like an exciting new format!  Furthermore, I am excited about more WordCamps in 2024, especially in Europe with the shorter travel distances for me now. For now, I only have plans to be at <a href=\"https://asia.wordcamp.org/2024/\">WordCamp Asia</a> in Taipei, Taiwan and <a href=\"https://europe.wordcamp.org/2024/\">WordCamp Europe </a>in Torino. </li>\n</ul>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"2-list-of-recap-posts-from-around-the-word-press-space\">List of Recap posts from around the WordPress space</h4>\n\n\n\n<p><strong>Matt Mederios</strong> was probably the first to publish a <strong><a href=\"https://thewpminute.com/state-of-the-word-2023/\">State of the Word 2023 Recap</a>. </strong></p>\n\n\n\n<p><a href=\"https://twitter.com/ioanamuresan\"><strong>Ioana Mureşan</strong> </a>wrote the article on the WPTavern <a href=\"https://wptavern.com/state-of-the-word-2023-hola-wordpress\"><strong>State of the Word 2023: ¡Hola WordPress!</strong></a> and includes demo videos from the talk so you can review them in due time. I bookmarked this article for later reference, too. </p>\n\n\n\n<p><strong>Joost de Valk</strong> wrote for the Post Status blog: <a href=\"https://poststatus.com/state-of-the-word-2023-excitement-all-around/\"><strong>State of the Word 2023: excitement all around!</strong></a></p>\n\n\n\n<p><a href=\"https://twitter.com/tomwillmot\"><strong>Tom Willmot</strong></a>, CEO of Human Made, published his recap: <a href=\"https://humanmade.com/wordpress-for-enterprise/state-of-the-word-2023-takeaways-for-enterprise/\"><strong>State of the Word 2023: Takeaways for Enterprise</strong></a>. </p>\n\n\n\n<p><strong>Courtney Robertson</strong> posted here recap for GoDaddy: <a href=\"https://www.godaddy.com/resources/news/wordpress-state-of-the-word-2023\"><strong>WordPress State of the Word 2023</strong></a></p>\n\n\n\n<p><strong>Torque Magazine</strong> also reported on the event: <a href=\"https://torquemag.io/2023/12/envisioning-the-future-of-wordpress-state-of-the-word-2023/\"><strong>Envisioning the Future of WordPress: State of the Word 2023</strong></a></p>\n\n\n\n<p>Last but no least, there is the <a href=\"https://wordpress.org/news/2023/12/state-of-the-word-2023-recap/\"><strong>State of the Word 2023 Recap</strong></a> on the WordPress.org site by <strong>Nicholas Garofalo</strong></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<h4 class=\"wp-block-heading\" id=\"3-q-amp-a-after-state-of-the-word-2023\">Q &amp; A after State of the Word 2023</h4>\n\n\n\n<p>The recording of the <a href=\"https://www.youtube.com/watch?v=S01uBD2pyQY\"><strong>Q &amp; A portion of the State of the Word</strong></a> is also available on YouTube. Due to time constrains , only a few questions, could be answered. Matt Mullenweg started answering the <a href=\"https://make.wordpress.org/project/2023/12/12/overflow-questions-from-state-of-the-word-2023/\">overflow questions</a> online. </p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"1-gutenberg\">Gutenberg Updates</h3>\n\n\n\n<p><strong><a href=\"https://github.com/WordPress/gutenberg/releases/tag/v17.3.0-rc.1\">Gutenberg 17.3 RC 1</a></strong> is available now for testing. The stable release is scheduled for Dec. 20, 2023. Release lead is <strong>Madhu Dollu</strong>, JavaScript Developer at Automattic. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Jamie Marsland</strong> interviewed <strong>Matias Ventura</strong> to get the <a href=\"https://www.youtube.com/watch?v=GWN5Vyq3pRE\"><strong>WordPress Gutenberg &#8211; The Inside Story!</strong></a> If you haven&#8217;t been around the project for that long, listening to the two of them discuss the Genesis of the project and its early days, gives you a great insight in how decisions were made, about the scope and the four phases of the project. The list of chapters makes it possible to view the one hour and twenty minutes video in several sittings. It&#8217;s a fabulous conversation where both men bring in context and can look at bigger pictures. You might not agree with some decisions made, but listening to Ventura, you will be in a better place understanding the context of decisions in terms of user experience and use cases, and their place in the project. </p>\n\n\n\n<a href=\"https://www.youtube.com/watch?v=GWN5Vyq3pRE\"><img width=\"652\" height=\"197\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/12/Screenshot-2023-12-12-at-16.46.31.png?resize=652%2C197&ssl=1\" alt=\"Matias Ventura in a conversation with Jamie Marsland. \" class=\"wp-image-26733\" /></a>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"has-accent-color has-light-background-background-color has-text-color has-background has-link-color wp-elements-b21294d93d10468b5f9c6136fdd74073\">🎙️ Latest episode:  <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-94-state-of-the-word-gutenberg-17-2-17-3-and-17-4-wordpress-6-5-migrating-from-classic-theme-to-block-theme/\">Gutenberg Changelog #94 – State of the Word, Gutenberg 17.2, 17.3 and 17.4, WordPress 6.5, Migrating from Classic Theme to Block Theme</a> with Sarah Norris</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"5-strong-upcoming-events-strong\">Upcoming events</h3>\n\n\n\n<p><strong>Dec 19th, 23 &#8211; 16:00 UTC</strong> : <a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/297143342/\"><strong>Developer Hours: Modern WordPress development with the wp-scripts package</strong></a></p>\n\n\n\n<p><strong>Jan 16, 24 &#8211; 21:00 UTC</strong> <a href=\"https://make.wordpress.org/core/2023/11/23/hallway-hangout-lets-explore-wordpress-6-5/\"><strong>Hallway&nbsp;Hangout: Let’s explore WordPress 6.5</strong></a></p>\n\n\n\n<a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/297143342/\"><img width=\"600\" height=\"338\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/12/image.png?resize=600%2C338&ssl=1\" alt=\"Announcement graphic of the next Developer hours on Dec 19 at 16:00 UTC \" class=\"wp-image-26749\" /></a>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p><strong>Jamie Marsland</strong> found that WordPress users have trouble understanding the interdependency between global width and custom content width with Block themes and created <a href=\"https://www.pootlepress.com/2023/12/beginners-guide-to-customizing-page-width-options-in-wordpress-gutenberg/\"><strong>Beginners Guide to Customizing Page Width Options in WordPress Gutenberg</strong></a>. &#8220;The page width options in WordPress Gutenberg, combined with the ability to set these values in global styles in block themes, offer an unprecedented level of control and flexibility in web design.&#8221; Marsland wrote. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his video, <a href=\"https://www.youtube.com/watch?v=GyYgMdrXJiY\"><strong>Creating a one-page website</strong></a>, <strong>Wes Theron</strong> takes you through the steps on building a one-page website with WordPress. Theron starts with a discussion of what kind of content would be placed on a one-page website, goes through an example of a business website, and walks through the various steps on how to add each section to a page.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Thomas Zwirner</strong> created a single block plugin called <a href=\"https://wordpress.org/plugins/download-list-block-with-icons/\"><strong>Download list with icons</strong></a>. It provides you with a block to manage a download list with file type-specific icons. No configuration is necessary. The Block can be used immediately after installation.</p>\n\n\n\n<a href=\"https://wordpress.org/plugins/download-list-block-with-icons/\"><img width=\"652\" height=\"236\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/12/Screenshot-2023-12-14-at-17.44.30.png?resize=652%2C236&ssl=1\" alt=\"Screenshot of the download list block\" class=\"wp-image-26758\" /></a>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Jacob Martella</strong> <a href=\"https://twitter.com/ViewFromTheBox/status/1732075066727288918\">introduced </a>the <a href=\"https://crosswindsframework.com/\">Crosswind Framework</a>, a set of tools, out of the box templates, patterns, and themes and additional blocks for your building websites with WordPress and the Site Editor. Its promise is a complete, nocode way to build websites. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>The <a href=\"https://wordpress.org/plugins/create-block-theme/\"><strong>Create Block Theme</strong></a> plugin by WordPress core contributors has received an update: with improved child theme export, increases consistency over the plugin pages and forms, and regularly updated Google Fonts available locally. </p>\n\n\n\n<p><strong>Ganesh Dahal</strong> recently published a <a href=\"https://developer.wordpress.org/news/2023/12/05/a-walk-through-tutorial-on-using-create-block-theme-plugin/\"><strong>A walk-through tutorial on using the Create</strong></a> Block Theme plugin, that should help you get started and take full advantage of the Theme building plugin. </p>\n\n\n\n<p>Brian Gardner shared the updates for his themes: <a href=\"https://wordpress.org/themes/frost/\"><strong>Frost</strong></a> - is now sporting, among other refinements,  a progress bar pattern, better shadow presets, hover styles in theme.json.  The Power Studio<a href=\"https://wordpress.org/themes/powder-studio/\"><strong> Theme</strong></a> just landed in the WordPress theme repository and offers a wide variety of wireframe patterns, styles, and templates, and color choices inspired by Tailwind CSS. </p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"7-theme-development-for-full-site-editing-and-blocks\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p>At WordCamp Vancouver,  <strong>Flynn O&#8217;Connor</strong> gave a talk on <strong><a href=\"https://wordpress.tv/2023/11/13/exploring-block-themes/\">Exploring block themes</a></strong>, that is now available on WordPress TV. From the description: &#8220;This session provides an exploration of block themes, the modern approach to building in WordPress. We will examine how block themes differ from traditional PHP-based themes and highlight their core components, including theme.json. Reviewing the advantages of block themes and how they empower users to easily customize the visual appearance of their websites without touching the code. This session offers valuable insights into the world of block themes and their impact on the future of WordPress development.&#8221; </p>\n\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<div class=\"toolbelt-video-wrapper\"></div>\n</div>\n\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Anne McCarthy</strong> made a call for response in the <a href=\"https://wordpress.slack.com/archives/C015GUFFC00/p1702356362566639\">#fse-outreach-experiments </a>channel: <strong><a href=\"https://wordpress.slack.com/archives/C015GUFFC00/p1702356362566639\">Opportunity to share your theme building workflow with contributors working on theme tooling</a></strong>. McCarthy already identified about 30+ theme builders who were active in the channel before. If you want to participate in the initiative, chime in on the Slack thread, or email me at pauli@gutenbergtimes.com. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Maggie Cabrera</strong> shared her experience on being co-developer lead for the 2024 default theme in an <a href=\"https://onemaggie.com/2023/12/open-letter-to-a-future-default-theme-lead/\"><strong>Open letter to a future default theme lead</strong></a>. &#8220;While most of the work will be reviewing contributors’ work, the key part of your role is keeping an eye on the big picture and being ready to make high-level decisions. You won’t always have the answers, but you will have people around you to help you figure out the best outcome.&#8221; she wrote. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Ellen Bauer</strong> gives you a view behind the scenes, and shares <a href=\"https://www.youtube.com/watch?v=hXq6pp7IvIE\"><strong>how she creates patterns for a WordPress Block Theme</strong></a>. She first shows you her pattern building workflow and then builds a project pattern. </p>\n\n\n\n\n<p><strong> <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2022&#8221;</a> </strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test, and Meta team from Jan. 2021 on. Updated by yours truly.  <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\"><em>The index 2020 is here</em></a></p>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p><strong>Nick Diego</strong> announced the <a href=\"https://make.wordpress.org/meta/2023/12/15/developer-resources-gets-a-refresh/\">Developer Resources redesign going public.</a> The design is now block theme based and allows for much better on page navigation and helps developers with breadcrumbs and expandable right side navigation. Developer Resources are available via <a href=\"https://developer.wordpress.org/\">developer.WordPress</a>.org and houses all Handbooks for Block Editor, Themes, Plugins, Playground, and Common APIs. </p>\n\n\n\n<img width=\"652\" height=\"311\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/12/Screenshot-2023-12-16-at-13.18.58.png?resize=652%2C311&ssl=1\" alt=\"Screenshot of developer.wordpress.org\" class=\"wp-image-26771\" />\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Jonathan Bossenger</strong> recording his tutorial on the <a href=\"https://wordpress.tv/2023/12/15/new-wordpress-developer-apis-the-interactivity-api/\"><strong>Interactivity API, as new WordPress API </strong></a>now experimental and hopefully becoming a public API in WordPress 6.5. &#8220;he main goal of the Interactivity API is to provide a standard and simple way to handle the frontend interactivity of Gutenberg blocks. This standard would make it easier for developers to create rich, interactive user experiences, from simple cases like counters or popups to more complex features like instant search, or carts and checkouts. In this session, you will learn more about this new developer API, through a live&#8221; Bossenger wrote in the tutorial&#8217;s description. </p>\n\n\n\n<a href=\"https://wordpress.tv/2023/12/15/new-wordpress-developer-apis-the-interactivity-api/\"><img width=\"652\" height=\"369\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/12/Screenshot-2023-12-16-at-14.40.40.png?resize=652%2C369&ssl=1\" alt=\"Still image from the Tutorial Video \" class=\"wp-image-26784\" /></a>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Also at WordCamp Vancouver, Ryan Welcher talked about <a href=\"https://wordpress.tv/2023/11/13/extending-wordpress-using-the-slotfill-system/\"><strong>Extending WordPress using the SlotFill&nbsp;system</strong></a> - &#8221;The SlotFill system can be used to extend blocks and the UI for the Block Editor and Site Editor screens, making it a critically important tool for any WordPress developer. This talk will take a deep dive into how this system works, show how and where you can currently extend WordPress, and finally, how to create your own custom SlotFills!&#8221;</p>\n\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Bartosz Gadomski</strong> wrote a post about <a href=\"https://bartoszgadomski.com/filtering-the-theme-json-file-values-such-as-default-color-palette-and-other-global-styles-in-wordpress/\"><strong>Filtering the theme.json file values (such as default color palette and other global styles) in WordPress</strong></a> and dives deeper into the <a href=\"https://make.wordpress.org/core/2022/10/10/filters-for-theme-json-data/\">four new filters</a> available since WordPress 6.1 to access values programmatically. </p>\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<p class=\"has-text-align-right has-small-font-size\"><em>Questions? Suggestions? Ideas? Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or send me a message on WordPress Slack or Twitter @bph</em>. </p>\n\n\n\n<p class=\"has-text-align-right has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p>Featured Image: Palace Neptuno, Madrid, with State of the Word 2023 displays.</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too, and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 16 Dec 2023 13:45:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Matt: What’s in My Bag, 2023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=101009\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://ma.tt/2023/12/the-bag-post/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:16401:\"<img width=\"604\" height=\"340\" src=\"https://i0.wp.com/ma.tt/files/2023/11/2023-11-bag-1024x576.jpeg?resize=604%2C340&ssl=1\" alt=\"\" class=\"wp-image-107037\" />\n\n\n\n<ol>\n<li><a href=\"https://www.apple.com/shop/buy-mac/macbook-pro/16-inch\">16” M3 Max MacBook Pro</a>, with all the memory and storage. I went from carrying two laptops earlier in the year, a 14” as well to just this. I like the Space Black color because it’s novel but might go back to silver next time. Brand new so just a few stickers so far!</li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B09V4LZS9S/?tag=photomatt08-20\">Black Magic Mouse</a>, steady and useful when I’m doing lots of emails. Looking to replace this, as it uses Lightning. At home I’ve been using the <a href=\"https://www.amazon.com/gp/product/B07Z81WS5L/?tag=photomatt08-20\">Mojo Pro Performance Silent Gaming Mouse</a> because it’s wired and quiet when you click, so something wireless and quiet could be nice for when on the go… I do like the gestures of the Magic Mouse though. I&#8217;ll be testing out some new mice over the holidays.</li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B09P8CNRK1/?tag=photomatt08-20\">Universal Airplane Phone Holder</a>, also good along with #4 for mounting an iPhone for using the <a href=\"https://support.apple.com/en-us/HT213244\">Continuity camera</a> or <a href=\"https://ma.tt/files/2023/11/IMG_1637-scaled.jpg\">selfies</a> (after taking that he said &#8220;please don&#8217;t go to jail&#8221;). Also super cheap, &lt;$20 for two.</li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B0B5S7X6BN/?tag=photomatt08-20\">Capstone Continuity Camera mount for MacBook laptops</a>, easy way to mount your iPhone to your laptop to use as a webcam. Looks amazing, but a bit of a pain, which is why I’m excited about #6.</li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B09MF6TJLW/?tag=photomatt08-20\">Anker 655 USB-C 8-in-1 Hub</a>. I use this mostly for Ethernet, but since everything is USB-C now I can also use this with either phone or the iPad. I seem to have bad luck with USB hubs, I’m always burning through them, but this one has lasted a while. This thing is heavy! I could go smaller/lighter here.</li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B0CM8V52PG/?tag=photomatt08-20\">Opal Tadpole webcam</a>, this is the <a href=\"https://opalcamera.com/\">Opal</a> product everyone has been waiting for. Quality close to iPhone at a smaller size, plugs in via USB-C so you don’t have to worry about connectivity or charging, doesn’t need any special software, looks amazing. Only fits a laptop though, not a bigger monitor. The way the cable works is really clever, great design.</li>\n\n\n\n<li>This is one of my most delightful new additions, a <a href=\"https://www.amazon.com/gp/product/B083SCPFQK/?tag=photomatt08-20\">Pixel G1s RGB Video Light</a>, it can cast warm light for a Zoom call or you can send it to a specific color to enhance the ambience of room for a party. It can rotate through a rainbow of colors. I ended up giving this to all my friends, and now when we&#8217;re in the same place we can instantly vibe out a room with two or three of these devices, and turn off any unpleasant default lighting a space may have. It charges via USB-C, natch. Hat tip: <a href=\"https://rjwalters.info/\">Robb Walters</a>.</li>\n\n\n\n<li><a href=\"https://pro.ultimateears.com/pages/ue-premier\">UE Premier custom headphones</a>. The best aural experience you can have. Invest the time in visiting an audiologist to get earphones and earplugs customized for your ears.</li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B00E9W11QM?tag=photomatt08-20\">Belkin Rockstar headphone splitter</a>, great for sharing audio with others, especially if they have #8.</li>\n\n\n\n<li>Small USB-C to 1/8th inch converter, to be extra though <a href=\"https://www.amazon.com/dp/B09F8M9PDG/?tag=photomatt08-20\">upgrade to this one from Belkin with power</a>.</li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B0BKGR5B76/?tag=photomatt08-20\">Rolling Square inCharge XL 6-in-1 Multi Charging Cable</a>, nice compact all-in-one I’ve been playing with. They make some <a href=\"https://www.amazon.com/stores/RollingSquare/page/FAB0F15F-9BCA-46AF-A453-A2157CD94CC9?tag=photomatt08-20\">other interesting accessories</a>. A 100w Swiss army knife of cables, and the thing they do combining Lightning and Micro-USB is so cool.</li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B0C85BVS5V/?tag=photomatt08-20\">Baseus has made a retractable 100w/5a USB-C beautiful cord</a>. This is probably the one you’ll want to carry around. Someday it will replace all other cables when we achieve USB-C nirvana.</li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B08JG2YRFB/?tag=photomatt08-20\">Chafon USB-C multi-cable is my ultimate workhorse</a>, what I use the most. It’s available at different lengths. I like the way the attachments can be moved around, but there is some fragility being entered at every connection so I like to travel with these not linked so they don’t bend or break.</li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B0BY8Q69DC?tag=photomatt08-20\">Tiny Miisso 6000mah battery pack with cables built in</a>.</li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B0C34DL6Z7/?tag=photomatt08-20&th=1\">Pixel Fold</a>. I always try to have an Android device for testing and the pixel fold has been a interesting one, because I found myself using it in ways that feel like sci-fi. Reading a book on the Kindle where you can turn the pages it&#8217;s really nice. It&#8217;s just a fun tool.</li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B0B1N7SGMZ/?tag=photomatt08-20&th=1\">Pixel Buds Pro</a>, they sound remarkably good. Airpods for Android.</li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B0CHWRXH8B/?tag=photomatt08-20\">Airpods Pro</a>, now with USB-C as God intended. I have a little robot on mine. Just amazing, and how great that you can buy them anywhere in the world. This is the first thing I’d replace if I lost it.</li>\n\n\n\n<li><a href=\"https://www.apple.com/shop/buy-iphone/iphone-15-pro\">iPhone 15 Pro</a>, now that it has USB-C, my favorite iPhone ever. No notes.</li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B00T9CHYOU/?tag=photomatt08-20\">Maruman N196A Nemosine Notebook</a>, great paper. I have a small Pilot Couleur pen tucked into the spiral binding. Both brands are Japanese and I think I picked them up on a trip there, probably at the amazing <a href=\"https://store.tsite.jp/daikanyama/english/\">Daikanyama T-Site</a>.</li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B00Q5VZ8PU/?tag=photomatt08-20\">OHTO Needle Point Knock 0.7mm pen</a>, a nice daily driver. I was carrying around a <a href=\"https://www.montblanc.com/en-us/ballpoint-pens_cod19971654707127749.html\">Montblanc Heritage Egyptomania Doué ballpoint pen</a> but I lost it somewhere.</li>\n\n\n\n<li><a href=\"https://ugmonk.com/pages/analog\">Notecards from Ugmonk Analog</a>. I really enjoy everything they make, great company, I keep these on every desk as well. These cards are often what drives my day.</li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B08B495319/?tag=photomatt08-20\">Kindle Paperwhite Signature Edition, finally with USB-C</a>! I prefer the <a href=\"https://www.amazon.com/dp/B07F7TLZF4/?tag=photomatt08-20\">Oasis</a>, but they inexplicably haven’t updated it to be USB-C, so I carry the Paperwhite instead.</li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B0BJLF3QVN/?tag=photomatt08-20\">11-inch iPad Pro</a>, always great in a pinch. I have the pen in case I magically develop an ability to draw and the keyboard and alway-connected 5G makes this great for hopping on Slack or <a href=\"https://texts.com/\">Texts</a>.</li>\n\n\n\n<li><a href=\"https://www.bestbuy.com/site/insignia-35w-foldable-compact-dual-usb-c-port-wall-charger-for-iphone-ipad-macbook-air-samsung-smartphones-tablets-and-more-white/6504662.p?skuId=6504662\">35w dual USB-C charger, from Insignia</a> I probably picked up at Best Buy. <a href=\"https://www.amazon.com/gp/product/B09N94ZVFX/?tag=photomatt08-20\">Here is a 40w Amazon alternative I recommend and usually carry</a>. This is one of the items I give away the most, so I must have given away my Highsay version.</li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B091Z6JNX4/?tag=photomatt08-20\">Ugreen 100w 4-port compact charger</a>, this is what I break out when I want to charge my laptop quickly.</li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B09H6PJDWB/?tag=photomatt08-20\">Belkin 37-Watt Dual USB Car Charger</a>, I use this very rarely now but it’s great in a pinch, especially on older cars that have very weak USB ports.</li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B0CG9192B4/?tag=photomatt08-20\">Epicka travel adapter</a>. Nice that it has some built-in ports, but I rarely use them. I probably should switch back to the smaller and lighter Muji adapter.</li>\n\n\n\n<li><strong>Still my favorite power cable:</strong> <a href=\"https://www.amazon.com/dp/B0BVW27Y1Y/?tag=photomatt08-20\">Baseus 60w</a>. I tried the higher watt models, they didn&#8217;t always work on planes. This is a 6-foot extension cord and can charge a laptop directly. Really a joy. When they do an all-USB-C version I&#8217;ll probably upgrade..</li>\n\n\n\n<li><a href=\"https://www.apple.com/shop/product/MT0H3AM/A/apple-watch-magnetic-fast-charger-to-usb-c-cable-1-m\">Apple Watch Magnetic Fast Charger</a>, of course with USB-C</li>\n\n\n\n<li>This year, I’ve been focused more on my overall health. As I’m getting into the habit of moving my body everyday, the <a href=\"https://www.apple.com/apple-watch-ultra-2/\">Apple Watch Ultra 2</a> has been motivating because it’s great at letting me know how much I don’t run. Jokes aside, I’m a data person so seeing the numbers of my habits have helped me optimize my goals.&nbsp;</li>\n\n\n\n<li>A candle can make a space feel cozy. Though I don’t travel with my own candle, I like to have my trusted <a href=\"https://www.amazon.com/dp/B08GLRLH25/?tag=photomatt08-20\">Rechargeable Candle Lighter</a>. Light fire with USB!&nbsp;</li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B000MF60UC/?tag=photomatt08-20\">Swiss Army Card</a>, let’s talk about cool gadgets. I use every feature of this card on a regular basis during my travels. It’s incredibly compact and slim. I’ve had to reorder this card a couple of times because they will confiscate the tiny knife.&nbsp;</li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B01KYTR0HM/?tag=photomatt08-20\">Petzl e+LITE Headlamp</a>, as a former boy scout, I’m always prepared for anything including a potential blackout.&nbsp;&nbsp;</li>\n\n\n\n<li><a href=\"https://lockpicktools.com/folding-pocket-set/\">Lockpick set</a>.</li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B08VW8QH4N/?tag=photomatt08-20\">Carabiner</a> is always good to have on hand.</li>\n\n\n\n<li>You know, a <a href=\"https://www.amazon.com/dp/B09HS3JKDC/?tag=photomatt08-20\">Disposable mask</a> is just good practice. This mask shape is my favorite and very comfortable.&nbsp;</li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B0062ALC9U/?tag=photomatt08-20\">Immunity Throat Spray</a> was recommended to me by Paul Stamets. I’m not sure if it’s a placebo, but I haven’t gotten sick. Thus, 3 sprays twice a day will keep the doctor away… for me at least.&nbsp;</li>\n\n\n\n<li>Lately, I’ve been curious about the quality of air. I carry the <a href=\"https://www.amazon.com/dp/B07YY7BH2W/?tag=photomatt08-20\">Aranet4 CO2 monitor</a> to gain insight about different spaces.&nbsp;<a href=\"https://www.hsph.harvard.edu/healthybuildings/2021/09/09/impacts-of-indoor-air-quality-on-cognitive-function/\">Higher CO2 literally makes your brain slower</a>!</li>\n\n\n\n<li>Winter is coming… <a href=\"https://www.amazon.com/dp/B08FD7W4SD/?tag=photomatt08-20\">BioDerma Chapstick</a> is my go-to for dry lips.&nbsp;</li>\n\n\n\n<li>I must admit I don’t really eat the mints from this <a href=\"http://www.marunao.com/cms_en/products/308/\">Marunao Mint Case</a>. However, I have a high admiration for this elegantly crafted case. It has a soft finish feel and a satisfying magnetic closure.</li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B07BKMY834?tag=photomatt08-20\">Kikkerland Red Plaid Earphone Case</a> is where I store my custom molded ear plugs.&nbsp;</li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B07DX1G5YM?tag=photomatt08-20\">SmartMouth travel packets</a> was the best recommendation I received in 2019. It really tackles mouth hygiene well for all day freshness.&nbsp;</li>\n\n\n\n<li>Cloth card holder / wallet, simple minimalist way to carry some extra cards and a few bills. I believe <a href=\"https://tim.blog/\">Tim</a> uses one of these as well.</li>\n\n\n\n<li><a href=\"https://twitter.com/helenhousandi/status/746057671531429889\">WordPress ring</a>.</li>\n\n\n\n<li><a href=\"https://www.sea2see.org/products/treviso-sun?variant=20495073771618\">Sea2See Sunglasses.</a> Sunglasses made from recycled plastic collected from the ocean. I discovered this from a goodie bag at the <a href=\"https://brilliantminds.co/\">Brilliant Minds conference</a> and have since purchased more to have it everywhere I go.</li>\n\n\n\n<li>Small plastic holder I got from my sister that helps me carry around stickers without them getting crinkled.</li>\n\n\n\n<li>Hermes business card holder. There are some occasions where exchanging business cards is a ritual. Also great to wedge it in a door jamb to keep it from autolocking.&nbsp;</li>\n\n\n\n<li>Passport, never leave home without it. Always be ready for adventure! My passport photo is actually AI-generated, because, why not? We live in the metaverse.</li>\n\n\n\n<li><a href=\"https://www.sleepmastereurope.com/\">Eye Mask</a>. I like these because the material feels nice on the skin and the wraparound is excellent for blocking out the light and some sound since it covers your ears. Great for sleeping or just needing a moment away from overstimulating environments. Similar one <a href=\"https://us.drowsysleepco.com/products/eye-mask\">here</a> (the version I have doesn’t appear readily available outside of Europe).&nbsp;</li>\n\n\n\n<li>REI Goretex mittens. They’re shell liners, lightweight and water resistant. The ones I have are an older version and no longer in stock. <a href=\"https://www.rei.com/product/194829/rei-co-op-minimalist-gtx-mittens-20?color=BLACK\">Version 2.0 available.</a> There&#8217;s no bad weather, only bad clothing.</li>\n\n\n\n<li>Gloves, nice in the winter but I carry them year round in case I need to carry wood or something. Also the fingertips have the conductive material that makes it touchscreen compatible for devices.</li>\n\n\n\n<li>This is a <a href=\"https://www.amazon.com/dp/B0035N09CS/?tag=photomatt08-20\">grey wool buff</a>, which works as a scarf, a hat, or an eye cover if I’m trying to sleep. I tried this out because of one of <a href=\"http://tynan.com/gear2017\">Tynan’s also-great gear posts</a>.</li>\n\n\n\n<li><a href=\"https://www.gorewear.com/us/en-us/m-gore-windstopper-thermo-beanie-100391\">Gore Thermo Beanie</a>, my favorite feature are the slits by the ears for sunglasses. Kept my eyes and ears protected while in Antarctica with Tim. He and I recorded a podcast episode in our tent talking about our personal fears, bucket lists, and more. <a href=\"https://pca.st/qmwhc7zz\">Have a listen</a>!</li>\n\n\n\n<li><a href=\"https://aersf.com/collections/backpacks/products/fit-pack-3\">Aer Fit Pack 3 backpack</a>, embroidered black-on-black with Automattic and WordPress logos. I upgraded this year from version 2 to 3, which changed some of the interior pockets a bit, and most notably added outside side pockets, which I have found super useful. This is the bag that makes it all work.</li>\n</ol>\n\n\n\n<p>Not pictured: <a href=\"https://flipperzero.one/\">Flipper Zero</a>, which was actually in my pocket and I forgot to put it in the photo. I have found this device really handy and fun to play with, just a delightful piece of technology.</p>\n\n\n\n<p>Here&#8217;s what I was rocking earlier in the year:</p>\n\n\n\n<img width=\"604\" height=\"453\" src=\"https://i0.wp.com/ma.tt/files/2023/11/bag-early-2023-1024x768.jpg?resize=604%2C453&ssl=1\" alt=\"\" class=\"wp-image-106304\" />\n\n\n\n<p>I&#8217;m not going to label it all, just posting for posterity. It&#8217;s mostly the same except I gave up on carrying around the Airpods Max, the grippy tripod, and haven&#8217;t found a great disco phone light yet.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 15 Dec 2023 12:43:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"Do The Woo Community: Resources and Opportunities in WordPress for Speaking, Contributing and Connecting\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=78697\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://dothewoo.io/community-jobs-resources/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:402:\"<p>WordCamp opportunities, supporting underrepresented and connecting the WordPress community with resources and sites.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/community-jobs-resources/\">Resources and Opportunities in WordPress for Speaking, Contributing and Connecting</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 15 Dec 2023 12:31:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:11:\"\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"HeroPress: Better Development With WordPress, WP Photos, And More!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://heropress.com/?p=6201\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:171:\"https://heropress.com/better-development-with-wordpress-wp-photos-and-more/#utm_source=rss&utm_medium=rss&utm_campaign=better-development-with-wordpress-wp-photos-and-more\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9783:\"<img width=\"1024\" height=\"768\" src=\"https://heropress.com/wp-content/uploads/2023/12/839655ae1936ee3c0.52974282-1024x768.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Boy in a boat on a Bangladesh beach at sunset.\" /><div class=\"kb-row-layout-wrap kb-row-layout-id6201_381c02-47 alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top kb-theme-content-width\">\n\n<div class=\"wp-block-kadence-column kadence-column6201_11d963-76 inner-column-1\"><div class=\"kt-inside-inner-col\">\n<h2 class=\"kt-adv-heading6201_1ef628-4f wp-block-kadence-advancedheading\"><a href=\"https://heropress.com/\">HeroPress.com</a> &#8211; <a href=\"https://heropress.com/essays/wordpress-taught-better-developer/\">How WordPress Taught Me To Be a Better Developer</a></h2>\n\n\n\n\n\n<div class=\"wp-block-image is-style-default\">\n<img width=\"300\" height=\"300\" src=\"https://heropress.com/wp-content/uploads/2016/05/ed_finkler-300x300.jpg\" alt=\"Ed Finkler\" class=\"wp-image-999\" /></div>\n\n\n\n<p>Ed Finkler was a WordPress developer for a long time and then moved on to &#8220;real programming&#8221;. He&#8217;s on the of few that still have respect for The WordPress Way, and is grateful for what it taught him.</p>\n\n\n\n<p><em>Ultimately what I find most satisfying in life is not the particular actions I’ve chosen, but <strong>the impact they have upon the people around me</strong>.</em></p>\n\n\n\n<p>Ed&#8217;s essay is <a href=\"https://heropress.com/essays/wordpress-taught-better-developer/\">available</a> on <a href=\"https://heropress.com\">HeroPress.com</a>.</p>\n</div></div>\n\n</div></div>\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-6201_108596-f6\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n<div class=\"kb-row-layout-wrap kb-row-layout-id6201_71411b-5e alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top kb-theme-content-width\">\n\n<div class=\"wp-block-kadence-column kadence-column6201_18957b-7a inner-column-1\"><div class=\"kt-inside-inner-col\">\n<h2 class=\"kt-adv-heading6201_a44261-b0 wp-block-kadence-advancedheading\"><a href=\"https://hallwaychats.com\">WPPhotos.Info</a></h2>\n\n\n\n\n\n<div class=\"wp-block-image\">\n<img width=\"300\" height=\"225\" src=\"https://heropress.com/wp-content/uploads/2023/12/975656edaa198dd64.92618733-scaled-1-300x225.jpg\" alt=\"\" class=\"wp-image-6206\" /></div>\n\n\n\n<p>This week&#8217;s <a href=\"https://wpphotos.info\">WPPhotos Info</a> is called &#8220;<a href=\"https://wpphotos.info/thermosolar-plant/\">Thermosolar plant in Seville</a>&#8220;. </p>\n\n\n\n<p>This photo was taken by <a href=\"https://wordpress.org/photos/author/nilovelez/\">Nilo Velez</a> and it is the thermosolar plant inside the Heineken factory in Seville. They use it to boil water and save energy when they are making beer.</p>\n\n\n\n<p><a href=\"https://wpphotos.info/thermosolar-plant/\">Read more of the story at WPPhotos.info!</a></p>\n</div></div>\n\n</div></div>\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-6201_92eb7e-24\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n<div class=\"kb-row-layout-wrap kb-row-layout-id6201_700552-40 alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top kb-theme-content-width\">\n\n<div class=\"wp-block-kadence-column kadence-column6201_feb2c3-de inner-column-1\"><div class=\"kt-inside-inner-col\">\n<h2 class=\"kt-adv-heading6201_646446-89 wp-block-kadence-advancedheading\"><a href=\"https://wppodcasts.com\">WP Podcasts</a></h2>\n\n\n\n\n\n\n<a href=\"https://wppodcasts.com\"><img src=\"https://heropressnetwork.com/wp-content/uploads/2024/01/pocket_casts_single_315.png\" alt=\"Pocket Casts image\" class=\"wp-image-4316\" /></a>\n\n\n\n\n<p>There were <em>eighteen</em> WordPress podcast episodes released this week! There&#8217;s also a new podcast this week, <a href=\"https://wppodcasts.com/podcast/the-wordpress-edge/\">The WordPress Edge</a>!</p>\n\n\n\n<ul>\n<li><a href=\"https://underrepresented-in-tech.castos.com/episodes/our-thoughts-on-feminism#new_tab\">Our Thoughts on Feminism</a> from <a href=\"https://wppodcasts.com/podcast/underrepresented-in-tech/\">Underrepresented in Tech</a></li>\n\n\n\n<li><a href=\"https://wp-tonic-show-a-wordpress-podcast.castos.com/episodes/891-wp-tonic-this-week-in-wordpress-saas-the-challenges-of-building-kadencewp-on-wordpress#new_tab\">#891 – WP-Tonic This Week in WordPress &amp; SaaS: The Challenges of Building KadenceWP On WordPress</a> from <a href=\"https://wppodcasts.com/podcast/wp-tonic/\">WP-Tonic</a></li>\n\n\n\n<li><a href=\"https://unbilleteachattanooga.com/episodio-240/#new_tab\">Episodio 240: Así nos lo montamos para ir a tantos eventos</a> de <a href=\"https://wppodcasts.com/podcast/un-billete-a-chattanooga/\">Un billete a Chattanooga</a></li>\n\n\n\n<li><a href=\"https://share.transistor.fm/s/2ca52c75#new_tab\">State of the Word 2023</a> from <a href=\"https://wppodcasts.com/podcast/the-wp-minute/\">The WP Minute</a></li>\n\n\n\n<li><a href=\"https://viewsource.fm/s2/5#new_tab\">We want to see more releases like WordPress 6.4</a> from <a href=\"https://wppodcasts.com/podcast/viewsource/\">viewSource</a></li>\n\n\n\n<li><a href=\"https://dothewoo.io/page-builders-documentation-and-an-scaling-for-swifties/#new_tab\">Page Builders, Documentation and an Scaling for Swifties</a></li>\n\n\n\n<li>Posted onDecember 8, 2023 <a href=\"https://wppodcasts.com/podcast/do-the-woo-a-woocommerce-podcast/\">Do the Woo &#8211; A WooCommerce Podcast</a></li>\n</ul>\n\n\n\n<p>There are new episodes every single day, so be sure to stop by <a href=\"https://wppodcasts.com\">WPPodcasts.com</a> and search for things that interest you!</p>\n</div></div>\n\n</div></div>\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-6201_ddcc4c-63\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n<div class=\"kb-row-layout-wrap kb-row-layout-id6201_2a1478-17 alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top kb-theme-content-width\">\n\n<div class=\"wp-block-kadence-column kadence-column6201_1e2866-6e inner-column-1\"><div class=\"kt-inside-inner-col\">\n<h2 id=\"wpphotos\" class=\"kt-adv-heading6201_fc6775-27 wp-block-kadence-advancedheading\"><a href=\"https://wordpress.org/photos\">WP Photos</a></h2>\n\n\n\n<p>Here are some of the great photos submitted to the <a href=\"https://wordpress.org/photos\">WPPhotos</a> project this week!</p>\n\n\n\n\n<a href=\"https://heropress.com/wp-content/uploads/2023/12/2246576df3eb751b6.70554510-2048x1536-1.jpg\"><img width=\"1024\" height=\"768\" src=\"https://heropress.com/wp-content/uploads/2023/12/2246576df3eb751b6.70554510-2048x1536-1-1024x768.jpg\" alt=\"\" class=\"wp-image-6229\" /></a><a href=\"https://wordpress.org/photos/author/sharankrishna/\">sharankrishna</a>\n\n\n\n<a href=\"https://heropress.com/wp-content/uploads/2023/12/13965785a624c15b8.38688020-scaled.jpeg\"><img width=\"768\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/2023/12/13965785a624c15b8.38688020-768x1024.jpeg\" alt=\"\" class=\"wp-image-6226\" /></a><a href=\"https://wordpress.org/photos/author/sheelagc44/\">sheelagc44</a>\n\n\n\n<a href=\"https://heropress.com/wp-content/uploads/2023/12/84657976a91e6c58.90548471-scaled.jpg\"><img width=\"576\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/2023/12/84657976a91e6c58.90548471-576x1024.jpg\" alt=\"\" class=\"wp-image-6224\" /></a><a href=\"https://wordpress.org/photos/author/vishalrana2404/\">vishalrana2404</a>\n\n\n\n<a href=\"https://heropress.com/wp-content/uploads/2023/12/257657926fd43a316.15730428-scaled.jpeg\"><img width=\"1024\" height=\"768\" src=\"https://heropress.com/wp-content/uploads/2023/12/257657926fd43a316.15730428-1024x768.jpeg\" alt=\"\" class=\"wp-image-6228\" /></a><a href=\"https://wordpress.org/photos/author/devtanbir/\">Tanbir Ahmod</a>\n\n\n\n<a href=\"https://heropress.com/wp-content/uploads/2023/12/497657723b56b1e82.88549465-scaled.jpg\"><img width=\"1024\" height=\"768\" src=\"https://heropress.com/wp-content/uploads/2023/12/497657723b56b1e82.88549465-1024x768.jpg\" alt=\"\" class=\"wp-image-6225\" /></a><a href=\"https://wordpress.org/photos/author/smrajib/\">smrajib</a>\n\n\n\n<a href=\"https://heropress.com/wp-content/uploads/2023/12/40665771219281808.24779285-scaled.jpg\"><img width=\"1024\" height=\"689\" src=\"https://heropress.com/wp-content/uploads/2023/12/40665771219281808.24779285-1024x689.jpg\" alt=\"\" class=\"wp-image-6227\" /></a><a href=\"https://wordpress.org/photos/author/anildulal/\">anildulal</a>\n\n\n\n\n<p></p>\n\n\n\n<p>Be sure to check out the <a href=\"https://wordpress.org/photos/\">hundreds of other great photos</a>!</p>\n</div></div>\n\n</div></div>\n\n\n<p></p>\n\n\n\n<p>The header photo for this post is a <a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/839655ae19/\">photo</a> by <a href=\"https://wordpress.org/photos/author/ardhrubo/\">Dhrubo</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.</p>\n\n\n\n\n\n\n<p>That&#8217;s it for this week! If you&#8217;d like to get this post in your email every week, <a href=\"https://heropressnetwork.com/newsletter\">make sure you sign up</a>!</p>\n\n<p>The post <a href=\"https://heropress.com/better-development-with-wordpress-wp-photos-and-more/\">Better Development With WordPress, WP Photos, And More!</a> appeared first on <a href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 15 Dec 2023 08:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Sun, 21 Jan 2024 23:38:45 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:13:\"last-modified\";s:29:\"Sun, 21 Jan 2024 23:30:31 GMT\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:4:\"gzip\";s:7:\"alt-svc\";s:19:\"h3=\":443\"; ma=86400\";s:4:\"x-nc\";s:9:\"HIT ord 2\";}}s:5:\"build\";s:14:\"20231106184314\";}','no'),(303249,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1705923525','no'),(303250,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1705880325','no'),(303251,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1705923525','no'),(303252,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2024/01/data-liberation-in-2024/\'>Data Liberation in 2024</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2024/01/episode-70-a-look-ahead-at-wordpress-in-2024/\'>WP Briefing: Episode 70: A Look Ahead at WordPress in 2024</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://gutenbergtimes.com/podcast/gutenberg-changelog-95-gutenberg-17-5-early-testing-of-wordpress-6-5-and-block-themes/\'>Gutenberg Times: Gutenberg Changelog #95 – Gutenberg 17.5, Early Testing of WordPress 6.5 and Block Themes</a></li><li><a class=\'rsswidget\' href=\'https://gutenbergtimes.com/media-experiments-wordpress-6-5-gutenberg-17-5-and-block-building-updates-weekend-edition-218/\'>Gutenberg Times: Media Experiments, WordPress 6.5, Gutenberg 17.5 and block building tutorials — Weekend Edition 281</a></li><li><a class=\'rsswidget\' href=\'https://central.wordcamp.org/news/2024/01/thanks-for-sponsoring-global-wordpress-community-events-across-the-globe-bluehost/\'>WordCamp Central: Thanks for sponsoring global WordPress community events across the globe, Bluehost!</a></li></ul></div>','no'),(303274,'_site_transient_timeout_theme_roots','1705885276','no'),(303275,'_site_transient_theme_roots','a:2:{s:14:\"flatsome-child\";s:7:\"/themes\";s:8:\"flatsome\";s:7:\"/themes\";}','no'),(303291,'_transient_timeout__woocommerce_helper_subscriptions','1705885356','no'),(303292,'_transient__woocommerce_helper_subscriptions','a:0:{}','no'),(303297,'mainwp_child_actions_saved_data','a:3:{s:15:\"connected_admin\";s:13:\"enratonons230\";i:17058845073206;a:7:{s:7:\"context\";s:7:\"plugins\";s:6:\"action\";s:7:\"updated\";s:11:\"action_user\";s:13:\"enratonons230\";s:7:\"created\";d:1705888107;s:7:\"summary\";s:42:\"Updated plugin: Converter for Media 5.12.0\";s:9:\"meta_data\";a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:19:\"Converter for Media\";s:7:\"version\";s:6:\"5.12.0\";s:4:\"slug\";s:53:\"webp-converter-for-media/webp-converter-for-media.php\";s:7:\"success\";b:1;s:11:\"old_version\";s:6:\"5.11.5\";s:9:\"meta_data\";a:6:{s:7:\"user_id\";i:12;s:12:\"display_name\";s:13:\"enratonons230\";s:11:\"action_user\";s:13:\"enratonons230\";s:4:\"role\";s:13:\"administrator\";s:15:\"user_role_label\";s:13:\"Administrator\";s:5:\"agent\";s:0:\"\";}}s:3:\"new\";i:0;}i:17058845397375;a:7:{s:7:\"context\";s:7:\"plugins\";s:6:\"action\";s:7:\"updated\";s:11:\"action_user\";s:13:\"enratonons230\";s:7:\"created\";d:1705888139;s:7:\"summary\";s:56:\"Updated plugin: Product Size Chart for WooCommerce 1.1.6\";s:9:\"meta_data\";a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:34:\"Product Size Chart for WooCommerce\";s:7:\"version\";s:5:\"1.1.6\";s:4:\"slug\";s:57:\"product-size-chart-for-woo/product-size-chart-for-woo.php\";s:7:\"success\";b:1;s:11:\"old_version\";s:5:\"1.1.5\";s:9:\"meta_data\";a:6:{s:7:\"user_id\";i:12;s:12:\"display_name\";s:13:\"enratonons230\";s:11:\"action_user\";s:13:\"enratonons230\";s:4:\"role\";s:13:\"administrator\";s:15:\"user_role_label\";s:13:\"Administrator\";s:5:\"agent\";s:0:\"\";}}s:3:\"new\";i:0;}}','yes'),(303299,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:65:\"https://downloads.wordpress.org/release/nl_NL/wordpress-6.4.2.zip\";s:6:\"locale\";s:5:\"nl_NL\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:65:\"https://downloads.wordpress.org/release/nl_NL/wordpress-6.4.2.zip\";s:10:\"no_content\";s:0:\"\";s:11:\"new_bundled\";s:0:\"\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.4.2\";s:7:\"version\";s:5:\"6.4.2\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.4\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1705884524;s:15:\"version_checked\";s:5:\"6.4.2\";s:12:\"translations\";a:0:{}}','no'),(303301,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1705884540;s:7:\"checked\";a:2:{s:14:\"flatsome-child\";s:3:\"3.0\";s:8:\"flatsome\";s:6:\"3.18.1\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:1:{s:8:\"flatsome\";a:4:{s:5:\"theme\";s:8:\"flatsome\";s:11:\"new_version\";s:6:\"3.18.1\";s:3:\"url\";s:94:\"https://www.nl.ecom-expansion.com/wp-admin/admin.php?page=flatsome-version-info&version=3.18.1\";s:7:\"package\";s:116:\"https://www.nl.ecom-expansion.com/wp-admin/admin.php?page=flatsome-panel&flatsome_version=3.18.1&flatsome_download=1\";}}s:12:\"translations\";a:0:{}}','no'),(303305,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1705885181;s:8:\"response\";a:1:{s:49:\"media-file-renamer-pro/media-file-renamer-pro.php\";O:8:\"stdClass\":22:{s:11:\"new_version\";s:5:\"5.8.1\";s:14:\"stable_version\";s:5:\"5.8.1\";s:4:\"name\";s:22:\"Media File Renamer Pro\";s:4:\"slug\";s:22:\"media-file-renamer-pro\";s:3:\"url\";s:65:\"https://meowapps.com/products/media-file-renamer-pro/?changelog=1\";s:12:\"last_updated\";s:19:\"2024-01-20 07:55:08\";s:8:\"homepage\";s:20:\"https://meowapps.com\";s:7:\"package\";s:0:\"\";s:13:\"download_link\";s:0:\"\";s:8:\"sections\";O:8:\"stdClass\":2:{s:11:\"description\";s:3920:\"<p>Rename and move files directly from the dashboard, either individually or in bulk. You can even set it to automatically rename your files for you! Nicer SEO, tidier WordPress, better life. For more information, please visit the official website: <a href=\"https://meowapps.com/media-file-renamer/\">Media File Renamer</a>.</p>\n<h3>HOW IT WORKS</h3>By default, it automatically renames your media filenames based on their titles every time you modify them. But you can also manually rename files and update references to them throughout your site, including posts, pages, custom post types, and metadata. The best way to use the plugin is through the sleek and dynamic Renamer Dashboard, which makes it easy to work efficiently and effectively. \n\n[youtube https://youtu.be/XPbKE8pq0i0]\n\nPlease have a look at the [tutorial](https://meowapps.com/media-file-renamer/tutorial/).<h3>COMPATIBILITY</h3>Media File Renamer works seamlessly with many features of WordPress and other plugins, including Retina files, WebP, rescaled images (since WP 5.3), PDF Thumbnails, UTF8 files, optimized images, and more. It can handle a wide variety of encoding cases, making it a reliable tool for organizing your media library.\n\nThere are a few page builders, like Avia Layout Builder, that currently do not allow Media File Renamer to rename images used in their posts due to encryption. However, we are actively seeking out solutions to this issue and are committed to providing users with the ability to rename these images if they desire.<h3>PRO VERSION</h3>In the [Pro Version](https://meowapps.com/media-file-renamer/), you\'ll find many exciting features.\n\n- Automatically rename files based on attached posts, products, or ALT texts\n- AI Suggestions (via AI Engine and OpenAI)\n- Anonymize your files with anonymous filenames\n- Move files to different directories in bulk\n- Sync metadata like ALT texts and titles\n- Number your files to allow for similar filenames\n- Attach media entries to the posts or pages they\'re used in\n- Use the Force Rename feature to re-link broken media entries to your files\n- Advanced transliteration handles accents, emoticons, umlauts, cyrillic, and more<h3>IMPORTANT</h3>Renaming or moving files can be a risky process, which is why it\'s important to take precautions. Before renaming your files in bulk, try renaming them one by one to make sure the references in your pages are updated properly. It\'s worth noting that some plugins may use unconventional methods to encode file usage, which could cause issues with the renaming process. To ensure the safety of your files and database, **it is crucial to make a backup before using Media File Renamer** to its full extent. Protect your valuable media by taking these precautionary measures.\n\nIf you notice any issues with your website after renaming your media files, **try clearing your cache**. Cached HTML can often hold onto old references, so this simple step can often resolve any issues. If you\'re still experiencing problems, you can use the Undo feature to roll back to the previous filenames. If you\'re having trouble updating references or have any other questions, please check out the support threads on our website. We\'re always working to cover more use cases and improve the plugin. You will find more here: [Questions &amp; Issues](https://meowapps.com/media-file-renamer/issues/).<h3>FOR DEVELOPERS</h3>The plugin can be tweaked in many ways, there are many actions and filters available. Through them, for example, you can customize the automatic renaming to your liking. There is even a little API that you can call. More about this [here](https://meowapps.com/media-file-renamer/issues/).<h3>A SIMPLER PLUGIN</h3>If you only need an simple field in order to modify the filename, you can also try [Phoenix Media Rename](https://wordpress.org/plugins/phoenix-media-rename). It\'s simpler, and just does that. Yes, we are friends!\";s:9:\"changelog\";s:12990:\"<h4> 5.8.1 (2024/01/20) </h4>\n<ul>\n<li>Fix: Async upload with AI Vision.</li>\n<li>Add: Import/Export Settings.</li>\n<li>&#x2b50;&#xfe0f; Don\'t hesitate to join our <a href=\"https://discord.gg/bHDGh38\">Discord Channel</a>.</li>\n<li>&#x1f334; Please share some love <a href=\"https://wordpress.org/support/plugin/media-file-renamer/reviews/?rate=5#new-post\">here</a>. Thank you!</li>\n</ul>\n<h4> 5.8.0 (2024/01/01) </h4>\n<ul>\n<li>Fix: Issue with mfrh_media_renamed.</li>\n<li>Update: Enhanced UI with selection options for upload and improved AI prompts.</li>\n<li>Fix: Resolved issues in \'Rename All\' AI functionality and fixed Sync selection.</li>\n<li>Optimization: Improved history features with new filters, styling changes, and history limit adjustments.</li>\n<li>Add: New renaming methods with NekoTabs, history tracking, and AI-enhanced renaming capabilities.</li>\n<li>Update: Streamlined settings with revised tabs for Manual, Auto, and AI, and better visual indicators for busy fields.</li>\n<li>Add: Additional media library field options and a new &quot;Cancel&quot; feature for manual renaming.</li>\n<li>&#x1f4ab; Happy New Year!</li>\n</ul>\n<h4> 5.7.8 (2023/12/25) </h4>\n<ul>\n<li>Update: Tools related to AI got better.</li>\n<li>Fix: Little fixes and enhancements for some users.</li>\n<li>&#x1f384; Merry Christmas!</li>\n</ul>\n<h4> 5.7.7 (2023/12/05) </h4>\n<ul>\n<li>Update: Enhanced UI, clarified options, unified things.</li>\n<li>Add: Bulk Rename using AI Vision.</li>\n<li>Add: AI Vision on Upload.</li>\n<li>Add: Not Renamed filter in Dashboard.</li>\n</ul>\n<h4> 5.7.4 (2023/11/25) </h4>\n<ul>\n<li>Update: Removed &quot;mfrh_sync_media_meta&quot; filter and added &quot;mfrh_rewrite_title&quot;. Enhanced code quality with cleaning and added more logs for sync functions.</li>\n<li>Add: Introduced Table filters (for media with no alt text, no description, no title) and improved display for empty metadata.</li>\n<li>Add: Added &quot;mfrh_clean_upload&quot; filter to customize the clean upload value.</li>\n<li>Fix: Removed &quot;disabled&quot; status on NekoModal to prevent log spamming.</li>\n<li>Update: Removed busyOverlay and upgraded the description field to a textarea for better input handling.</li>\n<li>Fix: Resolved an undefined function call issue in the API.</li>\n</ul>\n<h4> 5.7.3 (2023/11/20) </h4>\n<ul>\n<li>Add: Sync only for selected items and mfrh_sync_media_meta filter for post modification during syncing.</li>\n<li>Update: New modal for thumbnails with an &quot;open in new tab&quot; button, and enhanced auto-attach warning message.</li>\n<li>Fix: Adjusted the default behavior of sync functionality.</li>\n</ul>\n<h4> 5.7.2 (2023/11/17) </h4>\n<ul>\n<li>Add: AI suggestion now utilizes Vision for enhanced accuracy.</li>\n<li>Add: New &quot;Clean Uploads&quot; feature for efficient media management.</li>\n<li>Add: Magic Wand for Metadata Fields.</li>\n<li>Update: &quot;Auto-Attach Media&quot; feature now allows selection of target media entries.</li>\n<li>Update: Created Meow_MFRH_Engine class, consolidating renaming-related code.</li>\n<li>Update: Conducted various non-code related updates for improved performance.</li>\n<li>Fix: Resolved extension-related errors in thumbnails for better reliability.</li>\n</ul>\n<h4> 5.7.1 (2023/10/19) </h4>\n<ul>\n<li>Fix: The action_update_postmeta filter was not working properly.</li>\n<li>Fix: Missing buttons in the modals.</li>\n</ul>\n<h4> 5.7.0 (2023/10/10) </h4>\n<ul>\n<li>Update: For better confidentiality, the logs file is now randomly generated.</li>\n<li>Fix: Support of Windows servers.</li>\n</ul>\n<h4> 5.6.9 (2023/09/21) </h4>\n<ul>\n<li>Update: The Auto-Attach feature is a bit more robust when using Media Cleaner data.</li>\n</ul>\n<h4> 5.6.8 (2023/09/14) </h4>\n<ul>\n<li>Add: Auto-Attach feature now use the data from <a href=\"https://wordpress.org/plugins/media-cleaner/\">Media Cleaner</a> (if available), which is extremely accurate!</li>\n<li>Fix: Random issues related to metadata not existing.</li>\n<li>Fix: Optimize the way the move feature works.</li>\n<li>Fix: Move didn\'t handle the WebP and AVIF files properly.</li>\n<li>Fix: Was not possible to completely delete the filename to type it from scratch.</li>\n<li>Fix: When uninstalled, all the data used by the plugin is now removed properly.</li>\n</ul>\n<h4> 5.6.6 (2023/07/21) </h4>\n<ul>\n<li>Fix: Avoid warnings when the metadata isn\'t found.</li>\n<li>Fix: Better handling of metadata synchronization.</li>\n<li>Update: Enhanced the UI of the Renamer Field.</li>\n</ul>\n<h4> 5.6.5 (2023/06/21) </h4>\n<ul>\n<li>Fix: Issue when automatic renaming was used with the related auto-lock.</li>\n<li>Update: Latest version of the UI.</li>\n</ul>\n<h4> 5.6.4 (2023/06/02) </h4>\n<ul>\n<li>Fix: Removed a few warnings.</li>\n<li>Fix: The paging issue.</li>\n</ul>\n<h4> 5.6.3 (2023/05/30) </h4>\n<ul>\n<li>Update: Trying to improve the UI based on your feedback. It might not please everyone, but I am trying to make it better. Please let me know if you have any idea.</li>\n<li>Fix: There were a few warning issues.</li>\n<li>Fix: There were some inconsistencies in the UI.</li>\n</ul>\n<h4> 5.6.2 (2023/05/13) </h4>\n<ul>\n<li>Add: Some issues with spacing in some buttons.</li>\n<li>&#x1f3b5; I am struggling a bit to make the Dashboard UI nicer, if you have any idea, don\'t hesitate to let me know via the <a href=\"https://wordpress.org/support/plugin/media-file-renamer/\">Support Forums</a>.</li>\n</ul>\n<h4> 5.6.1 (2023/05/06) </h4>\n<ul>\n<li>Add: We can now edit the ALT Text.</li>\n</ul>\n<h4> 5.6.0 (2023/05/02) </h4>\n<ul>\n<li>Add: \'Attached To\' column is now hideable.</li>\n<li>Add: \'ALT Text\' data now available if enabled in the options.</li>\n<li>Update: Minimized the size of the bundle.</li>\n</ul>\n<h4> 5.5.9 (2023/03/18) </h4>\n<ul>\n<li>Fix: Various fixes in the UI.</li>\n<li>Update: Latest UI framework.</li>\n</ul>\n<h4> 5.5.8 (2023/03/13) </h4>\n<ul>\n<li>Add: AI filename suggestions.</li>\n<li>Update: Added Unlocked instead of Pending (which was slowing-down the process and was not really useful). Let me know if you preferred it the other way.</li>\n</ul>\n<h4> 5.5.7 (2023/02/09) </h4>\n<ul>\n<li>Add: New option to disable the Dashboard.</li>\n<li>Note: A bit late on the support, it\'s unusual, but very busy these days. I am also trying to gather the feedback/issues to fix them all at once in a good way. Thank you for your patience!</li>\n</ul>\n<h4> 5.5.5 (2023/02/01) </h4>\n<ul>\n<li>Update: Clean the dashboard a bit, depending on the options.</li>\n<li>Fix: Issue in the Media Library with the Renamer field.</li>\n<li>Fix: The Edit Title modal wasn\'t working on ENTER.</li>\n</ul>\n<h4> 5.5.4 (2023/01/29) </h4>\n<ul>\n<li>Fix: Titting enter in the Edit Title modal wasn\'t update with the new title.</li>\n</ul>\n<h4> 5.5.3 (2023/01/27) </h4>\n<ul>\n<li>Update: Better move features and cleaner UI.</li>\n</ul>\n<h4> 5.5.2 (2023/01/06) </h4>\n<ul>\n<li>Update: Slowly (but surely) separating the Rename mode from the Move mode. I will make the UI better and more adapted to the chosen mode. You will find the switch in the Renamer Dashboard.</li>\n</ul>\n<h4> 5.5.1 (2022/12/24) </h4>\n<ul>\n<li>Update: Enhanced the hooks (filters).</li>\n</ul>\n<h4> 5.5.0 (2022/11/12) </h4>\n<ul>\n<li>Fix: Enhanced the behavior of the UI.\n= 5.4.9 (2022/10/30) =</li>\n<li>Fix: The link to the Dashboard was broken.</li>\n</ul>\n<h4> 5.4.8 (2022/10/24) </h4>\n<ul>\n<li>Fix: There was an issue with WP-CLI in the latest versions.</li>\n</ul>\n<h4> 5.4.7 (2022/10/12) </h4>\n<ul>\n<li>Add: Consider WebP as an &quot;Image&quot; (which it is &#x1f60f;).</li>\n<li>Fix: The \'Featured Only\' and \'Images Only\' were not working perfectly.</li>\n<li>Update: Optimized the way options are updated and retrieved.</li>\n<li>Update: Some refactoring to simplify the code.</li>\n</ul>\n<h4> 5.4.5 (2022/09/27) </h4>\n<ul>\n<li>Add: Auto-retry on failure, up to 10 times.</li>\n<li>Fix: Typos.</li>\n</ul>\n<h4> 5.4.3 (2022/08/11) </h4>\n<ul>\n<li>Add: Handle errors gracefully (with retry, skip or cancel).</li>\n</ul>\n<h4> 5.4.1 (2022/08/03) </h4>\n<ul>\n<li>Fix: Tiny UI bug in Safari.</li>\n</ul>\n<h4> 5.4.0 (2022/07/05) </h4>\n<ul>\n<li>Add: Support for Elementor (update the metadata and CSS).</li>\n<li>Update: Use the default WordPress font (to avoid loading data from Google Fonts) and a few UI enhancements.</li>\n</ul>\n<h4> 5.3.9 (2022/06/16) </h4>\n<ul>\n<li>Fix: The WebP files weren\'t not renamed perfectly.</li>\n</ul>\n<h4> 5.3.8 (2022/03/29) </h4>\n<ul>\n<li>Fix: Support for WebP.</li>\n<li>Fix: Anonymize (MD5) on upload now works fine.</li>\n<li>Fix: Decode HTML entities (in the meta, title) when renaming is based on it.</li>\n<li>Update: I am trying to enhance the UI (the rename field and the actions) depending on the size of the browser. I\'ll try to make this better and better, but don\'t hesitate to give me some feedback.</li>\n</ul>\n<h4> 5.3.6 (2022/02/01) </h4>\n<ul>\n<li>Update: Fresh build and support for WordPress 5.9.</li>\n</ul>\n<h4> 5.3.5 (2021/11/10) </h4>\n<ul>\n<li>Fix: Renaming of WebP uploaded directly to WordPress.</li>\n<li>Add: The possibility of locking files automatically after a manual rename (which was always the case previously), and/or after a automatic rename (that was not possible previously). With this last option, users having trouble to &quot;Rename All&quot; will be given the choice to do it on any kind of server. You will find those options in the Advanced tab.</li>\n<li>Add: &quot;Delay&quot; option, to give a break and a reset to the server between asynchronous requests! Default to 100ms. That will avoid the server to time out, or to slow down on purpose.</li>\n</ul>\n<h4> 5.3.3 (2021/11/09) </h4>\n<ul>\n<li>Fix: Avoid renaming when the URLs (before/after) are empty.</li>\n<li>Add: New option to update URLs in the excerpts (no need to use it for most users).</li>\n<li>Update: Avoid double call to the mfrh_url_renamed (seemed to be completely useless).</li>\n<li>Update: Added a new \'size\' argument to the mfrh_url_renamed action.</li>\n<li>Update: Optimized queries.</li>\n<li>Add: We can change the page (in the dashboard) by typing it.</li>\n</ul>\n<h4> 5.3.2 (2021/10/16) </h4>\n<ul>\n<li>Add: AVIF support.</li>\n<li>Fix: Avoid the double renaming when different registered sizes actually use the same file.</li>\n</ul>\n<h4> 5.3.0 (2021/10/09) </h4>\n<ul>\n<li>Add: Better Force Rename.</li>\n<li>Add: Featured Images Only option.</li>\n<li>Fix: Auto-attach feature wasn\'t working properly with Featured Image when attached to Product.</li>\n</ul>\n<h4> 5.2.9 (2021/09/23) </h4>\n<ul>\n<li>Add: Manual Sanitize Option. If the option is checked, the rename feature uses the new_filename function. If not, use the filename user input as it is.</li>\n</ul>\n<h4> 5.2.8 (2021/09/07) </h4>\n<ul>\n<li>Add: Option to clean the plugin data on uninstall.</li>\n<li>Add: Manual Rename now goes through the cleaning flow to make sure everything is clean and nice.</li>\n</ul>\n<h4> 5.2.7 (2021/09/03) </h4>\n<ul>\n<li>Fix: Security update: access controls to the REST API and the options enforced.</li>\n<li>Updated: Dependencies update.</li>\n</ul>\n<h4> 5.2.5 (2021/08/25) </h4>\n<ul>\n<li>Fix: Search feature was not always working well.</li>\n<li>Update: Better technical architecture.</li>\n</ul>\n<h4> 5.2.4 (2021/06/13) </h4>\n<ul>\n<li>Add: Remember the number of entries per page (dashboard).</li>\n<li>Fix: Limit the length of the manual filename.</li>\n</ul>\n<h4> 5.2.3 (2021/05/29) </h4>\n<ul>\n<li>Fix: The \'Move\' feature now also works with the original image (in case it has been scaled by WP).</li>\n</ul>\n<h4> 5.2.2 (2021/05/18) </h4>\n<ul>\n<li>Fix: Better Windows support.</li>\n</ul>\n<h4> 5.2.0 (2021/05/15) </h4>\n<ul>\n<li>Add: Move button (this was mainly added for tests, so it\'s a beta feature, it will be perfected over time).</li>\n<li>Add: Images Only option.</li>\n<li>Fix: Vulnerability report, a standard user access could potentially modify a media title with custom requests.</li>\n</ul>\n<h4> 5.1.9 (2021/04/09) </h4>\n<ul>\n<li>Fix: The Synchronize Alt option wasn\'t working logically.</li>\n</ul>\n<h4> 5.1.8 (2021/03/04) </h4>\n<ul>\n<li>Add: Search.</li>\n<li>Add: Quick rename the title from the dashboard.</li>\n</ul>\n<h4> 5.1.7 (2021/02/21) </h4>\n<ul>\n<li>Fix: The Synchronize Media Title option wasn\'t working logically.</li>\n</ul>\n<h4> 5.1.6 (2021/02/12) </h4>\n<ul>\n<li>Fix: References for moved files were not updated.</li>\n<li>Add: Sanitize filename after they have been through the mfrh_new_filename filter.</li>\n</ul>\n<h4> 5.1.3 (2021/02/06)  </h4>\n<ul>\n<li>Add: Greek support.</li>\n<li>Fix: Better sensitive file check.</li>\n<li>Fix: Manual rename with WP CLI.</li>\n</ul>\n<h4> 5.1.2 (2021/01/10) </h4>\n<ul>\n<li>Add: Auto attach feature.</li>\n<li>Add: Added Locked in the filters.</li>\n<li>Update: Icons position.</li>\n</ul>\n<h4> 5.1.1 (2021/01/05) </h4>\n<ul>\n<li>Fix: Issue with roles overriding and WP-CLI.</li>\n<li>Fix: Issue with REST in the Common Dashboard.</li>\n</ul>\n<h4> 5.1.0 (2021/01/01) </h4>\n<ul>\n<li>Add: Support overriding roles.</li>\n<li>Fix: The layout of the dashboard was broken by WPBakery.</li>\n</ul>\";}s:7:\"banners\";O:8:\"stdClass\":2:{s:4:\"high\";s:82:\"https://meowapps.com/wp-content/uploads/edd/media-file-renamer-banner-1544x500.png\";s:3:\"low\";s:81:\"https://meowapps.com/wp-content/uploads/edd/media-file-renamer-banner-772x250.png\";}s:5:\"icons\";a:2:{s:2:\"1x\";s:49:\"https://meowapps.com/wp-content/uploads/Brush.png\";s:2:\"2x\";s:49:\"https://meowapps.com/wp-content/uploads/Brush.png\";}s:3:\"msg\";s:33:\"No license key has been provided.\";s:12:\"contributors\";O:8:\"stdClass\":1:{s:10:\"TigrouMeow\";O:8:\"stdClass\":3:{s:12:\"display_name\";s:10:\"TigrouMeow\";s:7:\"profile\";s:35:\"//profiles.wordpress.org/TigrouMeow\";s:6:\"avatar\";s:55:\"https://wordpress.org/grav-redirect.php?user=TigrouMeow\";}}s:10:\"stable_tag\";s:5:\"5.8.1\";s:11:\"donate_link\";s:30:\"https://meowapps.com/donation/\";s:6:\"tested\";s:3:\"6.4\";s:5:\"added\";s:10:\"2022-09-01\";s:11:\"description\";a:1:{i:0;s:3920:\"<p>Rename and move files directly from the dashboard, either individually or in bulk. You can even set it to automatically rename your files for you! Nicer SEO, tidier WordPress, better life. For more information, please visit the official website: <a href=\"https://meowapps.com/media-file-renamer/\">Media File Renamer</a>.</p>\n<h3>HOW IT WORKS</h3>By default, it automatically renames your media filenames based on their titles every time you modify them. But you can also manually rename files and update references to them throughout your site, including posts, pages, custom post types, and metadata. The best way to use the plugin is through the sleek and dynamic Renamer Dashboard, which makes it easy to work efficiently and effectively. \n\n[youtube https://youtu.be/XPbKE8pq0i0]\n\nPlease have a look at the [tutorial](https://meowapps.com/media-file-renamer/tutorial/).<h3>COMPATIBILITY</h3>Media File Renamer works seamlessly with many features of WordPress and other plugins, including Retina files, WebP, rescaled images (since WP 5.3), PDF Thumbnails, UTF8 files, optimized images, and more. It can handle a wide variety of encoding cases, making it a reliable tool for organizing your media library.\n\nThere are a few page builders, like Avia Layout Builder, that currently do not allow Media File Renamer to rename images used in their posts due to encryption. However, we are actively seeking out solutions to this issue and are committed to providing users with the ability to rename these images if they desire.<h3>PRO VERSION</h3>In the [Pro Version](https://meowapps.com/media-file-renamer/), you\'ll find many exciting features.\n\n- Automatically rename files based on attached posts, products, or ALT texts\n- AI Suggestions (via AI Engine and OpenAI)\n- Anonymize your files with anonymous filenames\n- Move files to different directories in bulk\n- Sync metadata like ALT texts and titles\n- Number your files to allow for similar filenames\n- Attach media entries to the posts or pages they\'re used in\n- Use the Force Rename feature to re-link broken media entries to your files\n- Advanced transliteration handles accents, emoticons, umlauts, cyrillic, and more<h3>IMPORTANT</h3>Renaming or moving files can be a risky process, which is why it\'s important to take precautions. Before renaming your files in bulk, try renaming them one by one to make sure the references in your pages are updated properly. It\'s worth noting that some plugins may use unconventional methods to encode file usage, which could cause issues with the renaming process. To ensure the safety of your files and database, **it is crucial to make a backup before using Media File Renamer** to its full extent. Protect your valuable media by taking these precautionary measures.\n\nIf you notice any issues with your website after renaming your media files, **try clearing your cache**. Cached HTML can often hold onto old references, so this simple step can often resolve any issues. If you\'re still experiencing problems, you can use the Undo feature to roll back to the previous filenames. If you\'re having trouble updating references or have any other questions, please check out the support threads on our website. We\'re always working to cover more use cases and improve the plugin. You will find more here: [Questions &amp; Issues](https://meowapps.com/media-file-renamer/issues/).<h3>FOR DEVELOPERS</h3>The plugin can be tweaked in many ways, there are many actions and filters available. Through them, for example, you can customize the automatic renaming to your liking. There is even a little API that you can call. More about this [here](https://meowapps.com/media-file-renamer/issues/).<h3>A SIMPLER PLUGIN</h3>If you only need an simple field in order to modify the filename, you can also try [Phoenix Media Rename](https://wordpress.org/plugins/phoenix-media-rename). It\'s simpler, and just does that. Yes, we are friends!\";}s:9:\"changelog\";a:1:{i:0;s:12990:\"<h4> 5.8.1 (2024/01/20) </h4>\n<ul>\n<li>Fix: Async upload with AI Vision.</li>\n<li>Add: Import/Export Settings.</li>\n<li>&#x2b50;&#xfe0f; Don\'t hesitate to join our <a href=\"https://discord.gg/bHDGh38\">Discord Channel</a>.</li>\n<li>&#x1f334; Please share some love <a href=\"https://wordpress.org/support/plugin/media-file-renamer/reviews/?rate=5#new-post\">here</a>. Thank you!</li>\n</ul>\n<h4> 5.8.0 (2024/01/01) </h4>\n<ul>\n<li>Fix: Issue with mfrh_media_renamed.</li>\n<li>Update: Enhanced UI with selection options for upload and improved AI prompts.</li>\n<li>Fix: Resolved issues in \'Rename All\' AI functionality and fixed Sync selection.</li>\n<li>Optimization: Improved history features with new filters, styling changes, and history limit adjustments.</li>\n<li>Add: New renaming methods with NekoTabs, history tracking, and AI-enhanced renaming capabilities.</li>\n<li>Update: Streamlined settings with revised tabs for Manual, Auto, and AI, and better visual indicators for busy fields.</li>\n<li>Add: Additional media library field options and a new &quot;Cancel&quot; feature for manual renaming.</li>\n<li>&#x1f4ab; Happy New Year!</li>\n</ul>\n<h4> 5.7.8 (2023/12/25) </h4>\n<ul>\n<li>Update: Tools related to AI got better.</li>\n<li>Fix: Little fixes and enhancements for some users.</li>\n<li>&#x1f384; Merry Christmas!</li>\n</ul>\n<h4> 5.7.7 (2023/12/05) </h4>\n<ul>\n<li>Update: Enhanced UI, clarified options, unified things.</li>\n<li>Add: Bulk Rename using AI Vision.</li>\n<li>Add: AI Vision on Upload.</li>\n<li>Add: Not Renamed filter in Dashboard.</li>\n</ul>\n<h4> 5.7.4 (2023/11/25) </h4>\n<ul>\n<li>Update: Removed &quot;mfrh_sync_media_meta&quot; filter and added &quot;mfrh_rewrite_title&quot;. Enhanced code quality with cleaning and added more logs for sync functions.</li>\n<li>Add: Introduced Table filters (for media with no alt text, no description, no title) and improved display for empty metadata.</li>\n<li>Add: Added &quot;mfrh_clean_upload&quot; filter to customize the clean upload value.</li>\n<li>Fix: Removed &quot;disabled&quot; status on NekoModal to prevent log spamming.</li>\n<li>Update: Removed busyOverlay and upgraded the description field to a textarea for better input handling.</li>\n<li>Fix: Resolved an undefined function call issue in the API.</li>\n</ul>\n<h4> 5.7.3 (2023/11/20) </h4>\n<ul>\n<li>Add: Sync only for selected items and mfrh_sync_media_meta filter for post modification during syncing.</li>\n<li>Update: New modal for thumbnails with an &quot;open in new tab&quot; button, and enhanced auto-attach warning message.</li>\n<li>Fix: Adjusted the default behavior of sync functionality.</li>\n</ul>\n<h4> 5.7.2 (2023/11/17) </h4>\n<ul>\n<li>Add: AI suggestion now utilizes Vision for enhanced accuracy.</li>\n<li>Add: New &quot;Clean Uploads&quot; feature for efficient media management.</li>\n<li>Add: Magic Wand for Metadata Fields.</li>\n<li>Update: &quot;Auto-Attach Media&quot; feature now allows selection of target media entries.</li>\n<li>Update: Created Meow_MFRH_Engine class, consolidating renaming-related code.</li>\n<li>Update: Conducted various non-code related updates for improved performance.</li>\n<li>Fix: Resolved extension-related errors in thumbnails for better reliability.</li>\n</ul>\n<h4> 5.7.1 (2023/10/19) </h4>\n<ul>\n<li>Fix: The action_update_postmeta filter was not working properly.</li>\n<li>Fix: Missing buttons in the modals.</li>\n</ul>\n<h4> 5.7.0 (2023/10/10) </h4>\n<ul>\n<li>Update: For better confidentiality, the logs file is now randomly generated.</li>\n<li>Fix: Support of Windows servers.</li>\n</ul>\n<h4> 5.6.9 (2023/09/21) </h4>\n<ul>\n<li>Update: The Auto-Attach feature is a bit more robust when using Media Cleaner data.</li>\n</ul>\n<h4> 5.6.8 (2023/09/14) </h4>\n<ul>\n<li>Add: Auto-Attach feature now use the data from <a href=\"https://wordpress.org/plugins/media-cleaner/\">Media Cleaner</a> (if available), which is extremely accurate!</li>\n<li>Fix: Random issues related to metadata not existing.</li>\n<li>Fix: Optimize the way the move feature works.</li>\n<li>Fix: Move didn\'t handle the WebP and AVIF files properly.</li>\n<li>Fix: Was not possible to completely delete the filename to type it from scratch.</li>\n<li>Fix: When uninstalled, all the data used by the plugin is now removed properly.</li>\n</ul>\n<h4> 5.6.6 (2023/07/21) </h4>\n<ul>\n<li>Fix: Avoid warnings when the metadata isn\'t found.</li>\n<li>Fix: Better handling of metadata synchronization.</li>\n<li>Update: Enhanced the UI of the Renamer Field.</li>\n</ul>\n<h4> 5.6.5 (2023/06/21) </h4>\n<ul>\n<li>Fix: Issue when automatic renaming was used with the related auto-lock.</li>\n<li>Update: Latest version of the UI.</li>\n</ul>\n<h4> 5.6.4 (2023/06/02) </h4>\n<ul>\n<li>Fix: Removed a few warnings.</li>\n<li>Fix: The paging issue.</li>\n</ul>\n<h4> 5.6.3 (2023/05/30) </h4>\n<ul>\n<li>Update: Trying to improve the UI based on your feedback. It might not please everyone, but I am trying to make it better. Please let me know if you have any idea.</li>\n<li>Fix: There were a few warning issues.</li>\n<li>Fix: There were some inconsistencies in the UI.</li>\n</ul>\n<h4> 5.6.2 (2023/05/13) </h4>\n<ul>\n<li>Add: Some issues with spacing in some buttons.</li>\n<li>&#x1f3b5; I am struggling a bit to make the Dashboard UI nicer, if you have any idea, don\'t hesitate to let me know via the <a href=\"https://wordpress.org/support/plugin/media-file-renamer/\">Support Forums</a>.</li>\n</ul>\n<h4> 5.6.1 (2023/05/06) </h4>\n<ul>\n<li>Add: We can now edit the ALT Text.</li>\n</ul>\n<h4> 5.6.0 (2023/05/02) </h4>\n<ul>\n<li>Add: \'Attached To\' column is now hideable.</li>\n<li>Add: \'ALT Text\' data now available if enabled in the options.</li>\n<li>Update: Minimized the size of the bundle.</li>\n</ul>\n<h4> 5.5.9 (2023/03/18) </h4>\n<ul>\n<li>Fix: Various fixes in the UI.</li>\n<li>Update: Latest UI framework.</li>\n</ul>\n<h4> 5.5.8 (2023/03/13) </h4>\n<ul>\n<li>Add: AI filename suggestions.</li>\n<li>Update: Added Unlocked instead of Pending (which was slowing-down the process and was not really useful). Let me know if you preferred it the other way.</li>\n</ul>\n<h4> 5.5.7 (2023/02/09) </h4>\n<ul>\n<li>Add: New option to disable the Dashboard.</li>\n<li>Note: A bit late on the support, it\'s unusual, but very busy these days. I am also trying to gather the feedback/issues to fix them all at once in a good way. Thank you for your patience!</li>\n</ul>\n<h4> 5.5.5 (2023/02/01) </h4>\n<ul>\n<li>Update: Clean the dashboard a bit, depending on the options.</li>\n<li>Fix: Issue in the Media Library with the Renamer field.</li>\n<li>Fix: The Edit Title modal wasn\'t working on ENTER.</li>\n</ul>\n<h4> 5.5.4 (2023/01/29) </h4>\n<ul>\n<li>Fix: Titting enter in the Edit Title modal wasn\'t update with the new title.</li>\n</ul>\n<h4> 5.5.3 (2023/01/27) </h4>\n<ul>\n<li>Update: Better move features and cleaner UI.</li>\n</ul>\n<h4> 5.5.2 (2023/01/06) </h4>\n<ul>\n<li>Update: Slowly (but surely) separating the Rename mode from the Move mode. I will make the UI better and more adapted to the chosen mode. You will find the switch in the Renamer Dashboard.</li>\n</ul>\n<h4> 5.5.1 (2022/12/24) </h4>\n<ul>\n<li>Update: Enhanced the hooks (filters).</li>\n</ul>\n<h4> 5.5.0 (2022/11/12) </h4>\n<ul>\n<li>Fix: Enhanced the behavior of the UI.\n= 5.4.9 (2022/10/30) =</li>\n<li>Fix: The link to the Dashboard was broken.</li>\n</ul>\n<h4> 5.4.8 (2022/10/24) </h4>\n<ul>\n<li>Fix: There was an issue with WP-CLI in the latest versions.</li>\n</ul>\n<h4> 5.4.7 (2022/10/12) </h4>\n<ul>\n<li>Add: Consider WebP as an &quot;Image&quot; (which it is &#x1f60f;).</li>\n<li>Fix: The \'Featured Only\' and \'Images Only\' were not working perfectly.</li>\n<li>Update: Optimized the way options are updated and retrieved.</li>\n<li>Update: Some refactoring to simplify the code.</li>\n</ul>\n<h4> 5.4.5 (2022/09/27) </h4>\n<ul>\n<li>Add: Auto-retry on failure, up to 10 times.</li>\n<li>Fix: Typos.</li>\n</ul>\n<h4> 5.4.3 (2022/08/11) </h4>\n<ul>\n<li>Add: Handle errors gracefully (with retry, skip or cancel).</li>\n</ul>\n<h4> 5.4.1 (2022/08/03) </h4>\n<ul>\n<li>Fix: Tiny UI bug in Safari.</li>\n</ul>\n<h4> 5.4.0 (2022/07/05) </h4>\n<ul>\n<li>Add: Support for Elementor (update the metadata and CSS).</li>\n<li>Update: Use the default WordPress font (to avoid loading data from Google Fonts) and a few UI enhancements.</li>\n</ul>\n<h4> 5.3.9 (2022/06/16) </h4>\n<ul>\n<li>Fix: The WebP files weren\'t not renamed perfectly.</li>\n</ul>\n<h4> 5.3.8 (2022/03/29) </h4>\n<ul>\n<li>Fix: Support for WebP.</li>\n<li>Fix: Anonymize (MD5) on upload now works fine.</li>\n<li>Fix: Decode HTML entities (in the meta, title) when renaming is based on it.</li>\n<li>Update: I am trying to enhance the UI (the rename field and the actions) depending on the size of the browser. I\'ll try to make this better and better, but don\'t hesitate to give me some feedback.</li>\n</ul>\n<h4> 5.3.6 (2022/02/01) </h4>\n<ul>\n<li>Update: Fresh build and support for WordPress 5.9.</li>\n</ul>\n<h4> 5.3.5 (2021/11/10) </h4>\n<ul>\n<li>Fix: Renaming of WebP uploaded directly to WordPress.</li>\n<li>Add: The possibility of locking files automatically after a manual rename (which was always the case previously), and/or after a automatic rename (that was not possible previously). With this last option, users having trouble to &quot;Rename All&quot; will be given the choice to do it on any kind of server. You will find those options in the Advanced tab.</li>\n<li>Add: &quot;Delay&quot; option, to give a break and a reset to the server between asynchronous requests! Default to 100ms. That will avoid the server to time out, or to slow down on purpose.</li>\n</ul>\n<h4> 5.3.3 (2021/11/09) </h4>\n<ul>\n<li>Fix: Avoid renaming when the URLs (before/after) are empty.</li>\n<li>Add: New option to update URLs in the excerpts (no need to use it for most users).</li>\n<li>Update: Avoid double call to the mfrh_url_renamed (seemed to be completely useless).</li>\n<li>Update: Added a new \'size\' argument to the mfrh_url_renamed action.</li>\n<li>Update: Optimized queries.</li>\n<li>Add: We can change the page (in the dashboard) by typing it.</li>\n</ul>\n<h4> 5.3.2 (2021/10/16) </h4>\n<ul>\n<li>Add: AVIF support.</li>\n<li>Fix: Avoid the double renaming when different registered sizes actually use the same file.</li>\n</ul>\n<h4> 5.3.0 (2021/10/09) </h4>\n<ul>\n<li>Add: Better Force Rename.</li>\n<li>Add: Featured Images Only option.</li>\n<li>Fix: Auto-attach feature wasn\'t working properly with Featured Image when attached to Product.</li>\n</ul>\n<h4> 5.2.9 (2021/09/23) </h4>\n<ul>\n<li>Add: Manual Sanitize Option. If the option is checked, the rename feature uses the new_filename function. If not, use the filename user input as it is.</li>\n</ul>\n<h4> 5.2.8 (2021/09/07) </h4>\n<ul>\n<li>Add: Option to clean the plugin data on uninstall.</li>\n<li>Add: Manual Rename now goes through the cleaning flow to make sure everything is clean and nice.</li>\n</ul>\n<h4> 5.2.7 (2021/09/03) </h4>\n<ul>\n<li>Fix: Security update: access controls to the REST API and the options enforced.</li>\n<li>Updated: Dependencies update.</li>\n</ul>\n<h4> 5.2.5 (2021/08/25) </h4>\n<ul>\n<li>Fix: Search feature was not always working well.</li>\n<li>Update: Better technical architecture.</li>\n</ul>\n<h4> 5.2.4 (2021/06/13) </h4>\n<ul>\n<li>Add: Remember the number of entries per page (dashboard).</li>\n<li>Fix: Limit the length of the manual filename.</li>\n</ul>\n<h4> 5.2.3 (2021/05/29) </h4>\n<ul>\n<li>Fix: The \'Move\' feature now also works with the original image (in case it has been scaled by WP).</li>\n</ul>\n<h4> 5.2.2 (2021/05/18) </h4>\n<ul>\n<li>Fix: Better Windows support.</li>\n</ul>\n<h4> 5.2.0 (2021/05/15) </h4>\n<ul>\n<li>Add: Move button (this was mainly added for tests, so it\'s a beta feature, it will be perfected over time).</li>\n<li>Add: Images Only option.</li>\n<li>Fix: Vulnerability report, a standard user access could potentially modify a media title with custom requests.</li>\n</ul>\n<h4> 5.1.9 (2021/04/09) </h4>\n<ul>\n<li>Fix: The Synchronize Alt option wasn\'t working logically.</li>\n</ul>\n<h4> 5.1.8 (2021/03/04) </h4>\n<ul>\n<li>Add: Search.</li>\n<li>Add: Quick rename the title from the dashboard.</li>\n</ul>\n<h4> 5.1.7 (2021/02/21) </h4>\n<ul>\n<li>Fix: The Synchronize Media Title option wasn\'t working logically.</li>\n</ul>\n<h4> 5.1.6 (2021/02/12) </h4>\n<ul>\n<li>Fix: References for moved files were not updated.</li>\n<li>Add: Sanitize filename after they have been through the mfrh_new_filename filter.</li>\n</ul>\n<h4> 5.1.3 (2021/02/06)  </h4>\n<ul>\n<li>Add: Greek support.</li>\n<li>Fix: Better sensitive file check.</li>\n<li>Fix: Manual rename with WP CLI.</li>\n</ul>\n<h4> 5.1.2 (2021/01/10) </h4>\n<ul>\n<li>Add: Auto attach feature.</li>\n<li>Add: Added Locked in the filters.</li>\n<li>Update: Icons position.</li>\n</ul>\n<h4> 5.1.1 (2021/01/05) </h4>\n<ul>\n<li>Fix: Issue with roles overriding and WP-CLI.</li>\n<li>Fix: Issue with REST in the Common Dashboard.</li>\n</ul>\n<h4> 5.1.0 (2021/01/01) </h4>\n<ul>\n<li>Add: Support overriding roles.</li>\n<li>Fix: The layout of the dashboard was broken by WPBakery.</li>\n</ul>\";}s:6:\"plugin\";s:49:\"media-file-renamer-pro/media-file-renamer-pro.php\";s:2:\"id\";s:49:\"media-file-renamer-pro/media-file-renamer-pro.php\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:29:{s:84:\"wc-abandoned-carts-by-small-fish-analytics/class-sfa-woocommerce-abandoned-carts.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:56:\"w.org/plugins/wc-abandoned-carts-by-small-fish-analytics\";s:4:\"slug\";s:42:\"wc-abandoned-carts-by-small-fish-analytics\";s:6:\"plugin\";s:84:\"wc-abandoned-carts-by-small-fish-analytics/class-sfa-woocommerce-abandoned-carts.php\";s:11:\"new_version\";s:5:\"2.6.4\";s:3:\"url\";s:73:\"https://wordpress.org/plugins/wc-abandoned-carts-by-small-fish-analytics/\";s:7:\"package\";s:85:\"https://downloads.wordpress.org/plugin/wc-abandoned-carts-by-small-fish-analytics.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:95:\"https://ps.w.org/wc-abandoned-carts-by-small-fish-analytics/assets/icon-256x256.png?rev=1634925\";s:2:\"1x\";s:95:\"https://ps.w.org/wc-abandoned-carts-by-small-fish-analytics/assets/icon-128x128.png?rev=1634925\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"3.0.1\";}s:30:\"advanced-custom-fields/acf.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:36:\"w.org/plugins/advanced-custom-fields\";s:4:\"slug\";s:22:\"advanced-custom-fields\";s:6:\"plugin\";s:30:\"advanced-custom-fields/acf.php\";s:11:\"new_version\";s:5:\"6.2.5\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/advanced-custom-fields/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/advanced-custom-fields.6.2.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/advanced-custom-fields/assets/icon-256x256.png?rev=1082746\";s:2:\"1x\";s:75:\"https://ps.w.org/advanced-custom-fields/assets/icon-128x128.png?rev=1082746\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/advanced-custom-fields/assets/banner-1544x500.jpg?rev=2892919\";s:2:\"1x\";s:77:\"https://ps.w.org/advanced-custom-fields/assets/banner-772x250.jpg?rev=2892919\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";}s:33:\"classic-editor/classic-editor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/classic-editor\";s:4:\"slug\";s:14:\"classic-editor\";s:6:\"plugin\";s:33:\"classic-editor/classic-editor.php\";s:11:\"new_version\";s:5:\"1.6.3\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/classic-editor/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/classic-editor.1.6.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-256x256.png?rev=1998671\";s:2:\"1x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-128x128.png?rev=1998671\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/classic-editor/assets/banner-1544x500.png?rev=1998671\";s:2:\"1x\";s:69:\"https://ps.w.org/classic-editor/assets/banner-772x250.png?rev=1998676\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";}s:31:\"code-snippets/code-snippets.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:27:\"w.org/plugins/code-snippets\";s:4:\"slug\";s:13:\"code-snippets\";s:6:\"plugin\";s:31:\"code-snippets/code-snippets.php\";s:11:\"new_version\";s:5:\"3.6.2\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/code-snippets/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/code-snippets.3.6.2.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:58:\"https://ps.w.org/code-snippets/assets/icon.svg?rev=2148878\";s:3:\"svg\";s:58:\"https://ps.w.org/code-snippets/assets/icon.svg?rev=2148878\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/code-snippets/assets/banner-1544x500.png?rev=2260997\";s:2:\"1x\";s:68:\"https://ps.w.org/code-snippets/assets/banner-772x250.png?rev=2256244\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:27:\"coming-soon/coming-soon.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/coming-soon\";s:4:\"slug\";s:11:\"coming-soon\";s:6:\"plugin\";s:27:\"coming-soon/coming-soon.php\";s:11:\"new_version\";s:7:\"6.15.21\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/coming-soon/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/coming-soon.6.15.21.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/coming-soon/assets/icon-256x256.png?rev=2402574\";s:2:\"1x\";s:64:\"https://ps.w.org/coming-soon/assets/icon-128x128.png?rev=2402575\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/coming-soon/assets/banner-1544x500.png?rev=2683810\";s:2:\"1x\";s:66:\"https://ps.w.org/coming-soon/assets/banner-772x250.png?rev=2683809\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:5:\"5.8.6\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.8.6.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";s:3:\"svg\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.2\";}s:53:\"webp-converter-for-media/webp-converter-for-media.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:38:\"w.org/plugins/webp-converter-for-media\";s:4:\"slug\";s:24:\"webp-converter-for-media\";s:6:\"plugin\";s:53:\"webp-converter-for-media/webp-converter-for-media.php\";s:11:\"new_version\";s:6:\"5.12.0\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/webp-converter-for-media/\";s:7:\"package\";s:74:\"https://downloads.wordpress.org/plugin/webp-converter-for-media.5.12.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/webp-converter-for-media/assets/icon-256x256.png?rev=2636288\";s:2:\"1x\";s:77:\"https://ps.w.org/webp-converter-for-media/assets/icon-128x128.png?rev=2636288\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:80:\"https://ps.w.org/webp-converter-for-media/assets/banner-1544x500.png?rev=2757184\";s:2:\"1x\";s:79:\"https://ps.w.org/webp-converter-for-media/assets/banner-772x250.png?rev=2757184\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";}s:81:\"duracelltomi-google-tag-manager/duracelltomi-google-tag-manager-for-wordpress.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:45:\"w.org/plugins/duracelltomi-google-tag-manager\";s:4:\"slug\";s:31:\"duracelltomi-google-tag-manager\";s:6:\"plugin\";s:81:\"duracelltomi-google-tag-manager/duracelltomi-google-tag-manager-for-wordpress.php\";s:11:\"new_version\";s:6:\"1.19.1\";s:3:\"url\";s:62:\"https://wordpress.org/plugins/duracelltomi-google-tag-manager/\";s:7:\"package\";s:81:\"https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.19.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:84:\"https://ps.w.org/duracelltomi-google-tag-manager/assets/icon-256x256.png?rev=1708451\";s:2:\"1x\";s:84:\"https://ps.w.org/duracelltomi-google-tag-manager/assets/icon-128x128.png?rev=1708451\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:87:\"https://ps.w.org/duracelltomi-google-tag-manager/assets/banner-1544x500.png?rev=1708451\";s:2:\"1x\";s:86:\"https://ps.w.org/duracelltomi-google-tag-manager/assets/banner-772x250.png?rev=1708451\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"3.4.0\";}s:47:\"jwt-authentication-for-wp-rest-api/jwt-auth.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:48:\"w.org/plugins/jwt-authentication-for-wp-rest-api\";s:4:\"slug\";s:34:\"jwt-authentication-for-wp-rest-api\";s:6:\"plugin\";s:47:\"jwt-authentication-for-wp-rest-api/jwt-auth.php\";s:11:\"new_version\";s:5:\"1.3.4\";s:3:\"url\";s:65:\"https://wordpress.org/plugins/jwt-authentication-for-wp-rest-api/\";s:7:\"package\";s:83:\"https://downloads.wordpress.org/plugin/jwt-authentication-for-wp-rest-api.1.3.4.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:79:\"https://ps.w.org/jwt-authentication-for-wp-rest-api/assets/icon.svg?rev=2787935\";s:3:\"svg\";s:79:\"https://ps.w.org/jwt-authentication-for-wp-rest-api/assets/icon.svg?rev=2787935\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:89:\"https://ps.w.org/jwt-authentication-for-wp-rest-api/assets/banner-772x250.jpg?rev=2787935\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.2\";}s:23:\"loco-translate/loco.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/loco-translate\";s:4:\"slug\";s:14:\"loco-translate\";s:6:\"plugin\";s:23:\"loco-translate/loco.php\";s:11:\"new_version\";s:5:\"2.6.6\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/loco-translate/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/loco-translate.2.6.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/loco-translate/assets/icon-256x256.png?rev=1000676\";s:2:\"1x\";s:67:\"https://ps.w.org/loco-translate/assets/icon-128x128.png?rev=1000676\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:68:\"https://ps.w.org/loco-translate/assets/banner-772x250.jpg?rev=745046\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.2\";}s:23:\"mailoptin/mailoptin.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:23:\"w.org/plugins/mailoptin\";s:4:\"slug\";s:9:\"mailoptin\";s:6:\"plugin\";s:23:\"mailoptin/mailoptin.php\";s:11:\"new_version\";s:8:\"1.2.66.0\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/mailoptin/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/mailoptin.1.2.66.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/mailoptin/assets/icon-256x256.png?rev=1699978\";s:2:\"1x\";s:62:\"https://ps.w.org/mailoptin/assets/icon-128x128.png?rev=1699978\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/mailoptin/assets/banner-1544x500.png?rev=1700145\";s:2:\"1x\";s:64:\"https://ps.w.org/mailoptin/assets/banner-772x250.png?rev=1700145\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";}s:29:\"mainwp-child/mainwp-child.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:26:\"w.org/plugins/mainwp-child\";s:4:\"slug\";s:12:\"mainwp-child\";s:6:\"plugin\";s:29:\"mainwp-child/mainwp-child.php\";s:11:\"new_version\";s:3:\"4.6\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/mainwp-child/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/mainwp-child.4.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/mainwp-child/assets/icon-256x256.png?rev=2734948\";s:2:\"1x\";s:65:\"https://ps.w.org/mainwp-child/assets/icon-128x128.png?rev=2734948\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/mainwp-child/assets/banner-1544x500.jpg?rev=2734948\";s:2:\"1x\";s:67:\"https://ps.w.org/mainwp-child/assets/banner-772x250.jpg?rev=2734948\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/mainwp-child/assets/banner-1544x500-rtl.jpg?rev=2712922\";s:2:\"1x\";s:71:\"https://ps.w.org/mainwp-child/assets/banner-772x250-rtl.jpg?rev=2712922\";}s:8:\"requires\";s:3:\"5.4\";}s:19:\"members/members.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:21:\"w.org/plugins/members\";s:4:\"slug\";s:7:\"members\";s:6:\"plugin\";s:19:\"members/members.php\";s:11:\"new_version\";s:5:\"3.2.9\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/members/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/members.3.2.9.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/members/assets/icon-256x256.png?rev=2503334\";s:2:\"1x\";s:60:\"https://ps.w.org/members/assets/icon-128x128.png?rev=2503334\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/members/assets/banner-1544x500.jpg?rev=2503334\";s:2:\"1x\";s:62:\"https://ps.w.org/members/assets/banner-772x250.jpg?rev=2503334\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.0\";}s:80:\"woocommerce-pdf-invoices-packing-slips/woocommerce-pdf-invoices-packingslips.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:52:\"w.org/plugins/woocommerce-pdf-invoices-packing-slips\";s:4:\"slug\";s:38:\"woocommerce-pdf-invoices-packing-slips\";s:6:\"plugin\";s:80:\"woocommerce-pdf-invoices-packing-slips/woocommerce-pdf-invoices-packingslips.php\";s:11:\"new_version\";s:5:\"3.7.6\";s:3:\"url\";s:69:\"https://wordpress.org/plugins/woocommerce-pdf-invoices-packing-slips/\";s:7:\"package\";s:87:\"https://downloads.wordpress.org/plugin/woocommerce-pdf-invoices-packing-slips.3.7.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:91:\"https://ps.w.org/woocommerce-pdf-invoices-packing-slips/assets/icon-256x256.png?rev=2189942\";s:2:\"1x\";s:91:\"https://ps.w.org/woocommerce-pdf-invoices-packing-slips/assets/icon-128x128.png?rev=2189942\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:94:\"https://ps.w.org/woocommerce-pdf-invoices-packing-slips/assets/banner-1544x500.png?rev=2189942\";s:2:\"1x\";s:93:\"https://ps.w.org/woocommerce-pdf-invoices-packing-slips/assets/banner-772x250.png?rev=2189942\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.4\";}s:57:\"product-size-chart-for-woo/product-size-chart-for-woo.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:40:\"w.org/plugins/product-size-chart-for-woo\";s:4:\"slug\";s:26:\"product-size-chart-for-woo\";s:6:\"plugin\";s:57:\"product-size-chart-for-woo/product-size-chart-for-woo.php\";s:11:\"new_version\";s:5:\"1.1.6\";s:3:\"url\";s:57:\"https://wordpress.org/plugins/product-size-chart-for-woo/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/product-size-chart-for-woo.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/product-size-chart-for-woo/assets/icon-256x256.jpg?rev=2588381\";s:2:\"1x\";s:79:\"https://ps.w.org/product-size-chart-for-woo/assets/icon-128x128.jpg?rev=2588381\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:82:\"https://ps.w.org/product-size-chart-for-woo/assets/banner-1544x500.jpg?rev=2588381\";s:2:\"1x\";s:81:\"https://ps.w.org/product-size-chart-for-woo/assets/banner-772x250.jpg?rev=2588381\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:30:\"seo-by-rank-math/rank-math.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:30:\"w.org/plugins/seo-by-rank-math\";s:4:\"slug\";s:16:\"seo-by-rank-math\";s:6:\"plugin\";s:30:\"seo-by-rank-math/rank-math.php\";s:11:\"new_version\";s:7:\"1.0.211\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/seo-by-rank-math/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.211.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:61:\"https://ps.w.org/seo-by-rank-math/assets/icon.svg?rev=3015810\";s:3:\"svg\";s:61:\"https://ps.w.org/seo-by-rank-math/assets/icon.svg?rev=3015810\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/seo-by-rank-math/assets/banner-1544x500.png?rev=2639678\";s:2:\"1x\";s:71:\"https://ps.w.org/seo-by-rank-math/assets/banner-772x250.png?rev=2639678\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.0\";}s:27:\"redirection/redirection.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/redirection\";s:4:\"slug\";s:11:\"redirection\";s:6:\"plugin\";s:27:\"redirection/redirection.php\";s:11:\"new_version\";s:5:\"5.4.1\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/redirection/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/redirection.5.4.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/redirection/assets/icon-256x256.jpg?rev=983639\";s:2:\"1x\";s:63:\"https://ps.w.org/redirection/assets/icon-128x128.jpg?rev=983640\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/redirection/assets/banner-1544x500.jpg?rev=983641\";s:2:\"1x\";s:65:\"https://ps.w.org/redirection/assets/banner-772x250.jpg?rev=983642\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.9\";}s:43:\"shortcodes-ultimate/shortcodes-ultimate.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:33:\"w.org/plugins/shortcodes-ultimate\";s:4:\"slug\";s:19:\"shortcodes-ultimate\";s:6:\"plugin\";s:43:\"shortcodes-ultimate/shortcodes-ultimate.php\";s:11:\"new_version\";s:5:\"7.0.1\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/shortcodes-ultimate/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/shortcodes-ultimate.7.0.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/shortcodes-ultimate/assets/icon-256x256.gif?rev=2547563\";s:2:\"1x\";s:72:\"https://ps.w.org/shortcodes-ultimate/assets/icon-128x128.gif?rev=2547563\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/shortcodes-ultimate/assets/banner-1544x500.jpg?rev=1760590\";s:2:\"1x\";s:74:\"https://ps.w.org/shortcodes-ultimate/assets/banner-772x250.jpg?rev=1760590\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:35:\"google-site-kit/google-site-kit.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/google-site-kit\";s:4:\"slug\";s:15:\"google-site-kit\";s:6:\"plugin\";s:35:\"google-site-kit/google-site-kit.php\";s:11:\"new_version\";s:7:\"1.118.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/google-site-kit/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/google-site-kit.1.118.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/google-site-kit/assets/icon-256x256.png?rev=2181376\";s:2:\"1x\";s:68:\"https://ps.w.org/google-site-kit/assets/icon-128x128.png?rev=2181376\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/google-site-kit/assets/banner-1544x500.png?rev=2513620\";s:2:\"1x\";s:70:\"https://ps.w.org/google-site-kit/assets/banner-772x250.png?rev=2513620\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.2\";}s:27:\"svg-support/svg-support.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/svg-support\";s:4:\"slug\";s:11:\"svg-support\";s:6:\"plugin\";s:27:\"svg-support/svg-support.php\";s:11:\"new_version\";s:5:\"2.5.5\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/svg-support/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/svg-support.2.5.5.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:56:\"https://ps.w.org/svg-support/assets/icon.svg?rev=1417738\";s:3:\"svg\";s:56:\"https://ps.w.org/svg-support/assets/icon.svg?rev=1417738\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/svg-support/assets/banner-1544x500.jpg?rev=1215377\";s:2:\"1x\";s:66:\"https://ps.w.org/svg-support/assets/banner-772x250.jpg?rev=1215377\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.8\";}s:49:\"woo-variation-swatches/woo-variation-swatches.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:36:\"w.org/plugins/woo-variation-swatches\";s:4:\"slug\";s:22:\"woo-variation-swatches\";s:6:\"plugin\";s:49:\"woo-variation-swatches/woo-variation-swatches.php\";s:11:\"new_version\";s:6:\"2.0.30\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/woo-variation-swatches/\";s:7:\"package\";s:72:\"https://downloads.wordpress.org/plugin/woo-variation-swatches.2.0.30.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/woo-variation-swatches/assets/icon-256x256.gif?rev=2741308\";s:2:\"1x\";s:75:\"https://ps.w.org/woo-variation-swatches/assets/icon-128x128.gif?rev=2741177\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/woo-variation-swatches/assets/banner-1544x500.gif?rev=2741177\";s:2:\"1x\";s:77:\"https://ps.w.org/woo-variation-swatches/assets/banner-772x250.gif?rev=2741177\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.6\";}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"8.5.1\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.5.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-256x256.gif?rev=2869506\";s:2:\"1x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-128x128.gif?rev=2869506\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=3000842\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=3000842\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.3\";}s:73:\"woocommerce-advanced-free-shipping/woocommerce-advanced-free-shipping.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:48:\"w.org/plugins/woocommerce-advanced-free-shipping\";s:4:\"slug\";s:34:\"woocommerce-advanced-free-shipping\";s:6:\"plugin\";s:73:\"woocommerce-advanced-free-shipping/woocommerce-advanced-free-shipping.php\";s:11:\"new_version\";s:5:\"1.1.7\";s:3:\"url\";s:65:\"https://wordpress.org/plugins/woocommerce-advanced-free-shipping/\";s:7:\"package\";s:83:\"https://downloads.wordpress.org/plugin/woocommerce-advanced-free-shipping.1.1.7.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:87:\"https://ps.w.org/woocommerce-advanced-free-shipping/assets/icon-256x256.png?rev=1171652\";s:2:\"1x\";s:87:\"https://ps.w.org/woocommerce-advanced-free-shipping/assets/icon-128x128.png?rev=1171652\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:88:\"https://ps.w.org/woocommerce-advanced-free-shipping/assets/banner-772x250.png?rev=901859\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:63:\"woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:43:\"w.org/plugins/woo-cart-abandonment-recovery\";s:4:\"slug\";s:29:\"woo-cart-abandonment-recovery\";s:6:\"plugin\";s:63:\"woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php\";s:11:\"new_version\";s:6:\"1.2.26\";s:3:\"url\";s:60:\"https://wordpress.org/plugins/woo-cart-abandonment-recovery/\";s:7:\"package\";s:79:\"https://downloads.wordpress.org/plugin/woo-cart-abandonment-recovery.1.2.26.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:82:\"https://ps.w.org/woo-cart-abandonment-recovery/assets/icon-256x256.png?rev=2957062\";s:2:\"1x\";s:82:\"https://ps.w.org/woo-cart-abandonment-recovery/assets/icon-128x128.png?rev=2957062\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:85:\"https://ps.w.org/woo-cart-abandonment-recovery/assets/banner-1544x500.png?rev=2957062\";s:2:\"1x\";s:84:\"https://ps.w.org/woo-cart-abandonment-recovery/assets/banner-772x250.png?rev=2957062\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.4\";}s:59:\"woocommerce-paypal-payments/woocommerce-paypal-payments.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:41:\"w.org/plugins/woocommerce-paypal-payments\";s:4:\"slug\";s:27:\"woocommerce-paypal-payments\";s:6:\"plugin\";s:59:\"woocommerce-paypal-payments/woocommerce-paypal-payments.php\";s:11:\"new_version\";s:5:\"2.4.3\";s:3:\"url\";s:58:\"https://wordpress.org/plugins/woocommerce-paypal-payments/\";s:7:\"package\";s:76:\"https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.4.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:80:\"https://ps.w.org/woocommerce-paypal-payments/assets/icon-256x256.png?rev=2598902\";s:2:\"1x\";s:80:\"https://ps.w.org/woocommerce-paypal-payments/assets/icon-128x128.png?rev=2598902\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:83:\"https://ps.w.org/woocommerce-paypal-payments/assets/banner-1544x500.png?rev=2598902\";s:2:\"1x\";s:82:\"https://ps.w.org/woocommerce-paypal-payments/assets/banner-772x250.png?rev=2598902\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.3\";}s:57:\"woocommerce-gateway-stripe/woocommerce-gateway-stripe.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:40:\"w.org/plugins/woocommerce-gateway-stripe\";s:4:\"slug\";s:26:\"woocommerce-gateway-stripe\";s:6:\"plugin\";s:57:\"woocommerce-gateway-stripe/woocommerce-gateway-stripe.php\";s:11:\"new_version\";s:5:\"7.9.1\";s:3:\"url\";s:57:\"https://wordpress.org/plugins/woocommerce-gateway-stripe/\";s:7:\"package\";s:75:\"https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.9.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/woocommerce-gateway-stripe/assets/icon-256x256.png?rev=2419673\";s:2:\"1x\";s:79:\"https://ps.w.org/woocommerce-gateway-stripe/assets/icon-128x128.png?rev=2419673\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:82:\"https://ps.w.org/woocommerce-gateway-stripe/assets/banner-1544x500.png?rev=2419673\";s:2:\"1x\";s:81:\"https://ps.w.org/woocommerce-gateway-stripe/assets/banner-772x250.png?rev=2419673\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.1\";}s:23:\"wordfence/wordfence.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:23:\"w.org/plugins/wordfence\";s:4:\"slug\";s:9:\"wordfence\";s:6:\"plugin\";s:23:\"wordfence/wordfence.php\";s:11:\"new_version\";s:6:\"7.11.1\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/wordfence/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/wordfence.7.11.1.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:54:\"https://ps.w.org/wordfence/assets/icon.svg?rev=2070865\";s:3:\"svg\";s:54:\"https://ps.w.org/wordfence/assets/icon.svg?rev=2070865\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wordfence/assets/banner-1544x500.jpg?rev=2124102\";s:2:\"1x\";s:64:\"https://ps.w.org/wordfence/assets/banner-772x250.jpg?rev=2124102\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.9\";}s:35:\"wp-mail-logging/wp-mail-logging.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/wp-mail-logging\";s:4:\"slug\";s:15:\"wp-mail-logging\";s:6:\"plugin\";s:35:\"wp-mail-logging/wp-mail-logging.php\";s:11:\"new_version\";s:6:\"1.12.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/wp-mail-logging/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/wp-mail-logging.1.12.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/wp-mail-logging/assets/icon-256x256.jpg?rev=2562296\";s:2:\"1x\";s:68:\"https://ps.w.org/wp-mail-logging/assets/icon-128x128.jpg?rev=2562296\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:70:\"https://ps.w.org/wp-mail-logging/assets/banner-772x250.jpg?rev=2562296\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:47:\"wpvivid-backuprestore/wpvivid-backuprestore.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:35:\"w.org/plugins/wpvivid-backuprestore\";s:4:\"slug\";s:21:\"wpvivid-backuprestore\";s:6:\"plugin\";s:47:\"wpvivid-backuprestore/wpvivid-backuprestore.php\";s:11:\"new_version\";s:6:\"0.9.95\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/wpvivid-backuprestore/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.95.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/wpvivid-backuprestore/assets/icon-256x256.png?rev=2899202\";s:2:\"1x\";s:74:\"https://ps.w.org/wpvivid-backuprestore/assets/icon-128x128.png?rev=2899202\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/wpvivid-backuprestore/assets/banner-1544x500.png?rev=2899202\";s:2:\"1x\";s:76:\"https://ps.w.org/wpvivid-backuprestore/assets/banner-772x250.png?rev=2899202\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.5\";}}s:7:\"checked\";a:44:{s:84:\"wc-abandoned-carts-by-small-fish-analytics/class-sfa-woocommerce-abandoned-carts.php\";s:5:\"2.6.4\";s:30:\"advanced-custom-fields/acf.php\";s:5:\"6.2.5\";s:19:\"ast-pro/ast-pro.php\";s:3:\"3.1\";s:63:\"gpt3-ai-content-generator-premium/gpt3-ai-content-generator.php\";s:5:\"1.8.8\";s:33:\"classic-editor/classic-editor.php\";s:5:\"1.6.3\";s:31:\"code-snippets/code-snippets.php\";s:5:\"3.6.2\";s:27:\"coming-soon/coming-soon.php\";s:7:\"6.15.21\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:5:\"5.8.6\";s:53:\"webp-converter-for-media/webp-converter-for-media.php\";s:6:\"5.12.0\";s:81:\"duracelltomi-google-tag-manager/duracelltomi-google-tag-manager-for-wordpress.php\";s:6:\"1.19.1\";s:47:\"jwt-authentication-for-wp-rest-api/jwt-auth.php\";s:5:\"1.3.4\";s:23:\"loco-translate/loco.php\";s:5:\"2.6.6\";s:23:\"mailoptin/mailoptin.php\";s:8:\"1.2.66.0\";s:29:\"mainwp-child/mainwp-child.php\";s:3:\"4.6\";s:49:\"media-file-renamer-pro/media-file-renamer-pro.php\";s:5:\"5.7.6\";s:19:\"members/members.php\";s:5:\"3.2.9\";s:29:\"o2s-wp-tiger/o2s-wp-tiger.php\";s:8:\"16-12-23\";s:80:\"woocommerce-pdf-invoices-packing-slips/woocommerce-pdf-invoices-packingslips.php\";s:5:\"3.7.6\";s:57:\"product-size-chart-for-woo/product-size-chart-for-woo.php\";s:5:\"1.1.6\";s:30:\"seo-by-rank-math/rank-math.php\";s:7:\"1.0.211\";s:27:\"redirection/redirection.php\";s:5:\"5.4.1\";s:43:\"shortcodes-ultimate/shortcodes-ultimate.php\";s:5:\"7.0.1\";s:35:\"google-site-kit/google-site-kit.php\";s:7:\"1.118.0\";s:27:\"svg-support/svg-support.php\";s:5:\"2.5.5\";s:49:\"woo-variation-swatches/woo-variation-swatches.php\";s:6:\"2.0.30\";s:27:\"woocommerce/woocommerce.php\";s:5:\"8.5.1\";s:73:\"woocommerce-advanced-free-shipping/woocommerce-advanced-free-shipping.php\";s:5:\"1.1.7\";s:63:\"woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php\";s:6:\"1.2.26\";s:45:\"woocommerce-product-feeds/woocommerce-gpf.php\";s:6:\"10.9.0\";s:59:\"woocommerce-paypal-payments/woocommerce-paypal-payments.php\";s:5:\"2.4.3\";s:57:\"woocommerce-gateway-stripe/woocommerce-gateway-stripe.php\";s:5:\"7.9.1\";s:23:\"wordfence/wordfence.php\";s:6:\"7.11.1\";s:39:\"wpae-acf-add-on/wpae-acf-add-on-pro.php\";s:5:\"1.0.5\";s:51:\"wpae-woocommerce-add-on/wpae-woocommerce-add-on.php\";s:5:\"1.0.9\";s:39:\"wp-all-export-pro/wp-all-export-pro.php\";s:5:\"1.8.6\";s:35:\"wpai-acf-add-on/wpai-acf-add-on.php\";s:5:\"3.3.8\";s:51:\"wpai-woocommerce-add-on/wpai-woocommerce-add-on.php\";s:5:\"4.0.0\";s:39:\"wp-all-import-pro/wp-all-import-pro.php\";s:5:\"4.8.5\";s:35:\"wp-mail-logging/wp-mail-logging.php\";s:6:\"1.12.0\";s:23:\"wp-rocket/wp-rocket.php\";s:6:\"3.15.6\";s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";s:6:\"2.25.6\";s:52:\"bulk-edit-categories-tags-premium/taxonomy-terms.php\";s:5:\"1.7.8\";s:45:\"woo-products-bulk-editor-premium/products.php\";s:5:\"1.8.6\";s:47:\"wpvivid-backuprestore/wpvivid-backuprestore.php\";s:6:\"0.9.95\";}}','no'),(303308,'_transient_timeout_cs_local_to_cloud_map','1705971184','no'),(303309,'_transient_cs_local_to_cloud_map','a:0:{}','no'),(303317,'_transient_timeout_rocket_get_refreshed_fragments_cache','1706489857','no'),(303318,'_transient_rocket_get_refreshed_fragments_cache','{\"fragments\":{\"div.widget_shopping_cart_content\":\"<div class=\\\"widget_shopping_cart_content\\\">\\n\\n\\t<div class=\\\"ux-mini-cart-empty flex flex-row-col text-center pt pb\\\">\\n\\t\\t\\t\\t<div class=\\\"ux-mini-cart-empty-icon\\\">\\n\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" viewBox=\\\"0 0 17 19\\\" style=\\\"opacity: .1;height:80px;\\\">\\n\\t\\t\\t\\t<path d=\\\"M8.5 0C6.7 0 5.3 1.2 5.3 2.7v2H2.1c-.3 0-.6.3-.7.7L0 18.2c0 .4.2.8.6.8h15.7c.4 0 .7-.3.7-.7v-.1L15.6 5.4c0-.3-.3-.6-.7-.6h-3.2v-2c0-1.6-1.4-2.8-3.2-2.8zM6.7 2.7c0-.8.8-1.4 1.8-1.4s1.8.6 1.8 1.4v2H6.7v-2zm7.5 3.4 1.3 11.5h-14L2.8 6.1h2.5v1.4c0 .4.3.7.7.7.4 0 .7-.3.7-.7V6.1h3.5v1.4c0 .4.3.7.7.7s.7-.3.7-.7V6.1h2.6z\\\" fill-rule=\\\"evenodd\\\" clip-rule=\\\"evenodd\\\" fill=\\\"#303031\\\"><\\/path>\\n\\t\\t\\t<\\/svg>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<p class=\\\"woocommerce-mini-cart__empty-message empty\\\">Geen producten in de winkelwagen.<\\/p>\\n\\t\\t\\t\\t\\t<p class=\\\"return-to-shop\\\">\\n\\t\\t\\t\\t<a class=\\\"button primary wc-backward\\\" href=\\\"https:\\/\\/www.nl.ecom-expansion.com\\/alle-producten\\/\\\">\\n\\t\\t\\t\\t\\tTerug naar de winkel\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<\\/p>\\n\\t\\t\\t\\t<\\/div>\\n\\n\\n<\\/div>\",\".cart-price\":\" <span class=\\\"cart-price\\\"><span class=\\\"woocommerce-Price-amount amount\\\"><bdi><span class=\\\"woocommerce-Price-currencySymbol\\\">&euro;<\\/span>0.00<\\/bdi><\\/span><\\/span>\",\".header .cart-icon\":\"\\t\\t<span class=\\\"cart-icon image-icon\\\">\\n\\t\\t\\t<strong>0<\\/strong>\\n\\t\\t<\\/span>\\n\\t\\t\",\".cart-item i.icon-shopping-basket\":\"\\t\\t<i class=\\\"icon-shopping-basket\\\" data-icon-label=\\\"0\\\">\\n\\t\\t\",\"div.ux-free-shipping\":\"\"},\"cart_hash\":\"\"}','no'),(303321,'_transient_timeout_mo_get_optin_ids_inpost_display','1705888734','no'),(303322,'_transient_mo_get_optin_ids_inpost_display','a:0:{}','no'),(303324,'_site_transient_timeout_wp_rocket_update_data','1705928373','no'),(303325,'_site_transient_wp_rocket_update_data','O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:20:\"rocket_update_failed\";a:1:{i:0;s:245:\"An unexpected error occurred. Something may be wrong with WP-Rocket.me or this server&#8217;s configuration. If you continue to have problems, <a href=\"https://wp-rocket.me/support/?utm_source=wp_plugin&utm_medium=wp_rocket\">contact support</a>.\";}}s:10:\"error_data\";a:1:{s:20:\"rocket_update_failed\";a:2:{s:9:\"http_code\";i:202;s:8:\"response\";s:178:\"{\"success\":false,\"data\":{\"reason\":\"BAD_WEBSITE\",\"consumer_key\":\"********\",\"consumer_email\":\"activated@wp-rocket.me\",\"referer\":\"https:\\/\\/www.nl.ecom-expansion.com\",\"host\":false}}\";}}s:18:\"\0*\0additional_data\";a:0:{}}','no'),(303328,'wpvivid_task_list','a:0:{}','no'),(303352,'_transient_timeout_villatheme_call','1705972741','no'),(303353,'_transient_villatheme_call','product-size-chart-for-woo','no'),(303381,'_transient_timeout_wp_mail_logging_installed','1705890988','no'),(303382,'_transient_wp_mail_logging_installed','1','no'),(303423,'_transient_timeout_mo_get_optin_ids_footer_display','1705892795','no'),(303424,'_transient_mo_get_optin_ids_footer_display','a:0:{}','no');
/*!40000 ALTER TABLE `wpj7_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_parcelpanel_courier`
--

DROP TABLE IF EXISTS `wpj7_parcelpanel_courier`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_parcelpanel_courier` (
  `code` varchar(191) NOT NULL DEFAULT '',
  `name` varchar(191) NOT NULL DEFAULT '',
  `country_code` char(4) NOT NULL DEFAULT '',
  `tel` varchar(50) NOT NULL DEFAULT '',
  `logo` varchar(191) NOT NULL DEFAULT '',
  `track_url` varchar(1000) NOT NULL DEFAULT '',
  `sort` smallint(6) NOT NULL DEFAULT 9999,
  `updated_at` int(10) unsigned NOT NULL DEFAULT 0,
  UNIQUE KEY `code` (`code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_parcelpanel_courier`
--

LOCK TABLES `wpj7_parcelpanel_courier` WRITE;
/*!40000 ALTER TABLE `wpj7_parcelpanel_courier` DISABLE KEYS */;
INSERT INTO `wpj7_parcelpanel_courier` VALUES ('101iex','FT Exprss','','','https://cdn.parcelpanel.com/assets/common/images/express/101iex.png','http://www.101iex.com/',9999,1704193937),('13-ten','13ten','','0800 783 1310','https://cdn.parcelpanel.com/assets/common/images/express/13-ten.png','http://13ten-tracking.citipost.co.uk/publicsearch/',9999,1704193937),('139express','139 ECONOMIC Package','','+86 4000 666 139','https://cdn.parcelpanel.com/assets/common/images/express/139express.png','http://www.139express.com/Home/Search_Tracking',9999,1704193937),('168express','Antron Express','','','https://cdn.parcelpanel.com/assets/common/images/express/168express.png','http://123.58.5.229:8080/home.html',9999,1704193937),('17feia','17Feia Express','','400 8809976','https://cdn.parcelpanel.com/assets/common/images/express/17feia.png','http://www.17feia.com/',203,1704193937),('1dlexpress','1DL Express','','','https://cdn.parcelpanel.com/assets/common/images/express/1dlexpress.png','www.1dlexpress.com',198,1704193937),('1fkd','Yao Fei Kuai Di','','0731-84035888','https://cdn.parcelpanel.com/assets/common/images/express/1fkd.png','http://www.1fkd.com/',9999,1704193937),('1hcang','1hcang','','+86 0755-89391959','https://cdn.parcelpanel.com/assets/common/images/express/1hcang.png','http://www.1hcang.com/Tracking/Index?tracknos=******',9999,1704193937),('1shida','1SD','','','https://cdn.parcelpanel.com/assets/common/images/express/1shida.png','',216,1704193937),('2go','2GO','','(+632) 77-99-222','https://cdn.parcelpanel.com/assets/common/images/express/2go.png','https://www.parcel2go.com/tracking/******',217,1704193937),('2uex','2U Express','','1(347)506 0880','https://cdn.parcelpanel.com/assets/common/images/express/2uex.png','http://www.2uex.com/selectorder/******',9999,1704193937),('360lion','360lion Express','','+86 020-86534133','https://cdn.parcelpanel.com/assets/common/images/express/360lion.png','http://www.360lion.com/',99,1704193937),('360zebra','360zebra','','400-7200-400','https://cdn.parcelpanel.com/assets/common/images/express/360zebra.png','http://www.360zebra.com/en/tracking',9999,1704193937),('3jmslogistics','3JMS Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/3jmslogistics.png','https://3jmslogistics.com/',9999,1704193937),('4cus','4cus','','','https://cdn.parcelpanel.com/assets/common/images/express/4cus.png','https://www.4cus.com/wp-admin/admin-ajax.php',9999,1704193937),('4px','4PX','','0755-23508000','https://cdn.parcelpanel.com/assets/common/images/express/4px.png','https://track.4px.com/#/result/0/******',28,1704193937),('51aoyue','AoYue','','','https://cdn.parcelpanel.com/assets/common/images/express/51aoyue.png','http://www.51aoyue.com:8082/trackIndex.htm',9999,1704193937),('56net','MEI TAI','','','https://cdn.parcelpanel.com/assets/common/images/express/56net.png','http://www.56net.com/',9999,1704193937),('800best','Best Express(logistic)','','+86 400-8856-561','https://cdn.parcelpanel.com/assets/common/images/express/800best.png','http://www.800best.com/freight/track.asp',9999,1704193937),('816kf','XYL 816Kapro','','','https://cdn.parcelpanel.com/assets/common/images/express/816kf.png','http://816kf.kingtrans.cn/WebTrack',9999,1704193937),('8256ru','BEL','','+86 150-130-345-88','https://cdn.parcelpanel.com/assets/common/images/express/8256ru.png','http://8256.kingtrans.cn/WebTrack',216,1704193937),('8dt','EWS Profit Fields','','0755-29190008','https://cdn.parcelpanel.com/assets/common/images/express/8dt.png','http://www.8dt.com/track.html?order_no=******',194,1704193937),('8europe','8Europe','','+49 7251 72358','https://cdn.parcelpanel.com/assets/common/images/express/8europe.png','http://www.8europe.com',9999,1704193937),('99minutos','99minutos','','','https://cdn.parcelpanel.com/assets/common/images/express/99minutos.png','https://tracking.99minutos.com/search',199,1704193937),('a1post','A1 Post','','+359 888 00 78 00','https://cdn.parcelpanel.com/assets/common/images/express/a1post.png','https://a1post.bg/track.php',9999,1704193937),('aaacooper','AAA Cooper Transportation','','','https://cdn.parcelpanel.com/assets/common/images/express/aaacooper.png','https://www.aaacooper.com/Transit/ProTrackResults.aspx?ProNum=******',189,1704193937),('abf','ABF Freight','','+1 (800) 610-5544','https://cdn.parcelpanel.com/assets/common/images/express/abf.png','https://arcb.com/tools/tracking.html#/******',202,1704193937),('abxexpress-my','ABX Express','','+60 03-7711 6633','https://cdn.parcelpanel.com/assets/common/images/express/abxexpress-my.png','http://www.abxexpress.com.my/tracking.html',9999,1704193937),('acommerce','ACOMMERCE','','+62-21-2788-9210','https://cdn.parcelpanel.com/assets/common/images/express/acommerce.png','https://tracking.acommerce.asia/',9999,1704193937),('acscourier','ACS Courier','','+30 210 81 90 000','https://cdn.parcelpanel.com/assets/common/images/express/acscourier.png','https://www.acscourier.net/en/',214,1704193937),('act-logistics','ACT logistic','','','https://cdn.parcelpanel.com/assets/common/images/express/act-logistics.png','http://tracking.parcelperfect.com/login.php',9999,1704193937),('ada-post','AdaPost','','','https://cdn.parcelpanel.com/assets/common/images/express/ada-post.png','http://cn.ada-post.com/',9999,1704193937),('adico','Adico','','','https://cdn.parcelpanel.com/assets/common/images/express/adico.png','http://oms.adico-log.com/tracking?nos=******',9999,1704193937),('adsone','ADSOne','','+61(3) 8379 8201','https://cdn.parcelpanel.com/assets/common/images/express/adsone.png','https://tracking.icumulus.cloud/',9999,1704193937),('afghan-post','Afghan Post','','+93 20 210 1270','https://cdn.parcelpanel.com/assets/common/images/express/afghan-post.png','http://track.afghanpost.gov.af/en.php',9999,1704193937),('air-gtc','Canada Air Express','','','https://cdn.parcelpanel.com/assets/common/images/express/air-gtc.png','https://air-gtc.com/',9999,1704193937),('air21','AIR21','','+632 854-2100','https://cdn.parcelpanel.com/assets/common/images/express/air21.png','http://www.air21.com.ph/main/shipment-tracking.php',9999,1704193937),('airfex','Airfex','','+86 400-186-6365','https://cdn.parcelpanel.com/assets/common/images/express/airfex.png','http://www.airfex.net/track.aspx?o=******',9999,1704193937),('airpak-express','Airpak Express','','+60 03-7875 7768','https://cdn.parcelpanel.com/assets/common/images/express/airpak-express.png','https://tracking.airpak-express.com/tracking.aspx?stid=airpak&cn=000000000',174,1704193937),('airspeed','Airspeed International Corporation','','(632) 852-7328 / 37','https://cdn.parcelpanel.com/assets/common/images/express/airspeed.png','https://www.airspeed.com.ph/support.html',9999,1704193937),('airtranscourier','AIRTRANS','','+357 22 559 000','https://cdn.parcelpanel.com/assets/common/images/express/airtranscourier.png','https://login.airtranscourier.com/el/courier/voucher/Voucher.html',9999,1704193937),('airwings-india','Airwings Courier Express India','','+91-22-40051717','https://cdn.parcelpanel.com/assets/common/images/express/airwings-india.png','http://www.airwingsindia.com/tracking.aspx',9999,1704193937),('aj-ex','AJEX','','','https://cdn.parcelpanel.com/assets/common/images/express/aj-ex.png','https://www.aj-ex.com.cn/',9999,1704193937),('al8856','Ali Business Logistics','','400-666-1668','https://cdn.parcelpanel.com/assets/common/images/express/al8856.png','http://120.24.176.176:8082/trackIndex.htm',9999,1704193937),('aland-post','Aland Post','','358 18 6360','https://cdn.parcelpanel.com/assets/common/images/express/aland-post.png','https://www.alandpost.ax/en',9999,1704193937),('allekurier','allekurier','','+48 12 345 06 20','https://cdn.parcelpanel.com/assets/common/images/express/allekurier.png','https://allekurier.pl/sledzenie',9999,1704193937),('alliance','Alliance Air Freight & Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/alliance.png','http://204.93.158.163/WebtrakwtAAFL/ShipInquiry/ShipLookup.aspx?cmp=aafl',9999,1704193937),('alliedexpress','Allied Express','','','https://cdn.parcelpanel.com/assets/common/images/express/alliedexpress.png','https://www.alliedexpress.com.au/',9999,1704193937),('alljoy','Alljoy','','400-900-1982','https://cdn.parcelpanel.com/assets/common/images/express/alljoy.png','http://www.alljoylogistics.com/cx.php?id=1',217,1704193937),('alpha-fast','Alpha Fast','','+02 290 2800','https://cdn.parcelpanel.com/assets/common/images/express/alpha-fast.png','http://www.alphafast.com/th/track',9999,1704193937),('am-home-delivery','AM Home Delivery','','718-272-5900','https://cdn.parcelpanel.com/assets/common/images/express/am-home-delivery.png','http://www.amtrucking.com/track-number.php?cnumber=******',9999,1704193937),('amazon','Amazon Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/amazon.png','https://track.amazon.com/tracking/******',193,1704193937),('amazon-in','Amazon India','','','https://cdn.parcelpanel.com/assets/common/images/express/amazon-in.png','https://track.amazon.in/tracking/******',202,1704193937),('amazon-uk','Amazon UK','','','https://cdn.parcelpanel.com/assets/common/images/express/amazon-uk.png','https://track.amazon.co.uk/tracking/******',219,1704193937),('amsegroup','AMSEGROUP','','+61 2 9316 3200','https://cdn.parcelpanel.com/assets/common/images/express/amsegroup.png','http://eretail.amservices.net.au:8080/parceltracker.aspx',9999,1704193937),('amsma','Amsma Group','','','https://cdn.parcelpanel.com/assets/common/images/express/amsma.png','http://47.115.23.24:8080/kdguiji/zhu/******',9999,1704193937),('an-post','An Post','','(353) 01-7057600','https://cdn.parcelpanel.com/assets/common/images/express/an-post.png','https://www.anpost.com/',210,1704193937),('andorra-post','Andorra Post','','0810 821 821','https://cdn.parcelpanel.com/assets/common/images/express/andorra-post.png','https://www.laposte.fr/particulier/outils/suivre-vos-envois',9999,1704193937),('ane66','Ane Express','','40010-40088','https://cdn.parcelpanel.com/assets/common/images/express/ane66.png','http://www.ane56.com/search/waybilltrack.jsp',9999,1704193937),('angel','Angel','','','https://cdn.parcelpanel.com/assets/common/images/express/angel.png','https://angelbringts.de',9999,1704193937),('anicamboxexpress','Anicam Box Express','','','https://cdn.parcelpanel.com/assets/common/images/express/anicamboxexpress.png','https://www.anicamboxexpress.com/seguimiento/',9999,1704193937),('anjun','Anjun Logistics','','+86 400-999-6128','https://cdn.parcelpanel.com/assets/common/images/express/anjun.png','http://www.szanjuntrack.com/Szanjuntrack.asp',9999,1704193937),('annto','ANNTO','','400-000-0056','https://cdn.parcelpanel.com/assets/common/images/express/annto.png','https://www.annto.com/',9999,1704193937),('anserx','AnserX','','0755-2868-5256','https://cdn.parcelpanel.com/assets/common/images/express/anserx.png','http://www.anserx.com/',9999,1704193937),('anteparcel','Ant Eparcel','','','https://cdn.parcelpanel.com/assets/common/images/express/anteparcel.png','https://www.anteparcel.com/',9999,1704193937),('anteraja','Anteraja','','','https://cdn.parcelpanel.com/assets/common/images/express/anteraja.png','https://anteraja.id/tracking',9999,1704193937),('antilles-post','Antilles Post','','','https://cdn.parcelpanel.com/assets/common/images/express/antilles-post.png','http://www.cpostinternational.com/',9999,1704193937),('anxl','anxl','','','https://cdn.parcelpanel.com/assets/common/images/express/anxl.png','https://anxl.com.cn/anxlNews.action',9999,1704193937),('apc','APC Postal Logistics','','+1 (888) 413-7300','https://cdn.parcelpanel.com/assets/common/images/express/apc.png','https://www.apc-pli.com/apc-tracking-v2.html?id=******',126,1704193937),('aplus100','A PLUS EXPRESS','','1-917-682-5551','https://cdn.parcelpanel.com/assets/common/images/express/aplus100.png','http://en.aplus100.com/Waybills/Waybill/Query',9999,1704193937),('aprche','Aprche','','','https://cdn.parcelpanel.com/assets/common/images/express/aprche.png','http://post.aprche.net',9999,1704193937),('aramex','Aramex','','600-544000','https://cdn.parcelpanel.com/assets/common/images/express/aramex.png','https://www.aramex.com/track/results?ShipmentNumber=******',152,1704193937),('aramex-nz','Aramex NZ','','','https://cdn.parcelpanel.com/assets/common/images/express/aramex-nz.png','https://www.aramex.co.nz/tools/track?l=******',190,1704193937),('aramexau','Aramex AU','','','https://cdn.parcelpanel.com/assets/common/images/express/aramexau.png','https://www.aramex.com.au/',210,1704193937),('araskargo','Aras Kargo','','','https://cdn.parcelpanel.com/assets/common/images/express/araskargo.png','https://kargotakip.araskargo.com.tr/mainpage.aspx?code=******',9999,1704193937),('arkexpress','Ark express','','+61 3 9008 8899','https://cdn.parcelpanel.com/assets/common/images/express/arkexpress.png','http://www.arkexpress.com.au/cgi-bin/GInfo.dll?DispInfo&w=arkexpress&nid=8',9999,1704193937),('armenia-post','Armenia Post','','514-514','https://cdn.parcelpanel.com/assets/common/images/express/armenia-post.png','https://www.haypost.am/hy/track-and-trace',211,1704193937),('arrowxl','Arrow XL','','+44 800 015 1509','https://cdn.parcelpanel.com/assets/common/images/express/arrowxl.png','https://askaxl.co.uk/tracking?upi=0000000000&Postcode=000',9999,1704193937),('artlogexpress','Art Logexpress','','','https://cdn.parcelpanel.com/assets/common/images/express/artlogexpress.png','http://artlogexpress.com/',9999,1704193937),('aruba-post','Aruba Post','','(+ 297) 528-7635','https://cdn.parcelpanel.com/assets/common/images/express/aruba-post.png','http://www.postaruba.com/',9999,1704193937),('ase','ASE','','','https://cdn.parcelpanel.com/assets/common/images/express/ase.png','https://tracking.ase.com.tr/en/cwb/',9999,1704193937),('asendia','Asendia','','','https://cdn.parcelpanel.com/assets/common/images/express/asendia.png','https://tracking.asendia.com',205,1704193937),('asendia-de','Asendia Germany','','+49 0800 18 17 000','https://cdn.parcelpanel.com/assets/common/images/express/asendia-de.png','https://www.asendia.de/tracking/',9999,1704193937),('asendia-hk','Asendia HK','','00852 2690 1005','https://cdn.parcelpanel.com/assets/common/images/express/asendia-hk.png','https://www.asendia.hk/cn/tracking/',9999,1704193937),('asendia-uk','Asendia UK','','0845 8738155','https://cdn.parcelpanel.com/assets/common/images/express/asendia-uk.png','https://www.asendia.co.uk/tracking/',9999,1704193937),('asendia-usa','Asendia USA','','+1 610 461 3661','https://cdn.parcelpanel.com/assets/common/images/express/asendia-usa.png','http://tracking.asendiausa.com/t.aspx?p=******',121,1704193937),('asendia-wmp','Asendia UK Premium','','','https://cdn.parcelpanel.com/assets/common/images/express/asendia-wmp.png','https://watchmyparcel.com/asendia',9999,1704193937),('asiafly','AsiaFly','','86-21-57746522 /57823692','https://cdn.parcelpanel.com/assets/common/images/express/asiafly.png','http://www.asiafly.com.cn/waybill.html',9999,1704193937),('asigna-es','Asigna ES','','','https://cdn.parcelpanel.com/assets/common/images/express/asigna-es.png','http://apps.asigna.es:8082/tracking/components/consulta.php?expedicion=******',9999,1704193937),('asmred','ASM (GLS Spain)','','','https://cdn.parcelpanel.com/assets/common/images/express/asmred.png','https://www.gls-spain.es/en/',9999,1704193937),('asyad','Asyad Express','','+96824506999','https://cdn.parcelpanel.com/assets/common/images/express/asyad.png','https://asyadexpress.com',9999,1704193937),('atlantic','Atlantic International Express','','+91 8899 117 117','https://cdn.parcelpanel.com/assets/common/images/express/atlantic.png','https://atlanticcourier.net/',9999,1704193937),('auexpress','Auexpress','','+61 2 8774 3488','https://cdn.parcelpanel.com/assets/common/images/express/auexpress.png','https://www.auexpress.com/order_track.php',9999,1704193937),('auodexpress','auodexpress','','','https://cdn.parcelpanel.com/assets/common/images/express/auodexpress.png','',9999,1704193937),('aus','Ausworld Express','','02-87226088','https://cdn.parcelpanel.com/assets/common/images/express/aus.png','http://www.aus-express.com/Search.aspx',9999,1704193937),('auspost','Auspost','','+61 3 8847 9980','https://cdn.parcelpanel.com/assets/common/images/express/auspost.png','https://auspost.com.au/mypost/track/#/search',204,1704193937),('austa','Austa Internation','','','https://cdn.parcelpanel.com/assets/common/images/express/austa.png','http://www.austa.org.cn/',9999,1704193937),('australia-ems','Australia EMS','','61 3 8847 9045','https://cdn.parcelpanel.com/assets/common/images/express/australia-ems.png','https://auspost.com.au/mypost/track/#/search',192,1704193937),('australia-post','Australia Post','','+61 3 8847 9980','https://cdn.parcelpanel.com/assets/common/images/express/australia-post.png','https://auspost.com.au/mypost/track/#/search',41,1704193937),('austria-post','Austrian Post','','+43 800 010 100','https://cdn.parcelpanel.com/assets/common/images/express/austria-post.png','https://www.post.at/sendungsverfolgung.php',89,1704193937),('averittexpress','AVERITT Express','','','https://cdn.parcelpanel.com/assets/common/images/express/averittexpress.png','https://www.averittexpress.com/',9999,1704193937),('axlehire','AxleHire','','(855) 249-7447','https://cdn.parcelpanel.com/assets/common/images/express/axlehire.png','https://axlehire.com/',119,1704193937),('azerbaijan-post','Azerbaijan Post','','(012) 493-56-00','https://cdn.parcelpanel.com/assets/common/images/express/azerbaijan-post.png','http://www.azerpost.az/index.php?options=content&id=22',209,1704193937),('bab-ru','BAB international','','020-29836668','https://cdn.parcelpanel.com/assets/common/images/express/bab-ru.png','http://bab.kingtrans.cn/WebTrack',9999,1704193937),('bahrain-post','Bahrain Post','','8000 8001','https://cdn.parcelpanel.com/assets/common/images/express/bahrain-post.png','http://www.bahrain.bh/',9999,1704193937),('bangladesh-ems','Bangladesh EMS','','9558006','https://cdn.parcelpanel.com/assets/common/images/express/bangladesh-ems.png','http://www.bangladeshpost.gov.bd/',9999,1704193937),('baoxianda','baoxianda','','','https://cdn.parcelpanel.com/assets/common/images/express/baoxianda.png','',9999,1704193937),('barbados-post','Barbados Post','','+1 (246) 436-4800','https://cdn.parcelpanel.com/assets/common/images/express/barbados-post.png','http://www.bps.gov.bb/',9999,1704193937),('bartolini','BRT Bartolini','','+39 011 397 411 1','https://cdn.parcelpanel.com/assets/common/images/express/bartolini.png','https://as777.brt.it/vas/sped_numspe_par.htm',84,1704193937),('bee','Bee Express','','+66 020585555','https://cdn.parcelpanel.com/assets/common/images/express/bee.png','https://www.bee-express.com/waybill/',9999,1704193937),('beebird','Beebird Logistics','','+61 (0)8 6197 7017','https://cdn.parcelpanel.com/assets/common/images/express/beebird.png','https://beebird.com.au/tracking',9999,1704193937),('bejotlogistics','Bejot Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/bejotlogistics.png','https://bejotlogistics.com/order/tracking/******',9999,1704193937),('belgium-post','Bpost','','+32 2 276 22 74','https://cdn.parcelpanel.com/assets/common/images/express/belgium-post.png','http://www.bpost2.be/bpostinternational/track_trace/find.php?search=s&lng=en&trackcode=******',96,1704193937),('belize-post','Belize Post','','+501 227-2201','https://cdn.parcelpanel.com/assets/common/images/express/belize-post.png','http://www.belizepostalservice.gov.bz',9999,1704193937),('belpochta','Belarus Post','','+375 17 293 59 10','https://cdn.parcelpanel.com/assets/common/images/express/belpochta.png','https://webservices.belpost.by/searchEn.aspx?search=******',96,1704193937),('benin-post','Benin Post','','229-213-13888','https://cdn.parcelpanel.com/assets/common/images/express/benin-post.png','http://courrier.laposte.bj/IPSWebTracking/',9999,1704193937),('bermuda-post','Bermuda Post','','441.297.7893','https://cdn.parcelpanel.com/assets/common/images/express/bermuda-post.png','http://www.bpo.bm/track_and_trace.aspx?AspXPage=******',9999,1704193937),('best-my','BEST Express (Malaysia)','','1800-22-8881','https://cdn.parcelpanel.com/assets/common/images/express/best-my.png','https://www.best-inc.my/track?bills=******',9999,1704193937),('best-th','Best Express (TH)','','','https://cdn.parcelpanel.com/assets/common/images/express/best-th.png','https://www.best-inc.co.th/track?bills=******',9999,1704193937),('bestex','Best Express','','+86 4009 565656','https://cdn.parcelpanel.com/assets/common/images/express/bestex.png','http://www.800bestex.com/Bill/Track',9999,1704193937),('bettertrucks','Better Trucks','','(773) 217-8810','https://cdn.parcelpanel.com/assets/common/images/express/bettertrucks.png','https://www.bettertrucks.com/',61,1704193937),('bf-lg','Bf-Lg','','021-59981173','https://cdn.parcelpanel.com/assets/common/images/express/bf-lg.png','http://www.bf-lg.com/',9999,1704193937),('bh-posta','BH Posta','','','https://cdn.parcelpanel.com/assets/common/images/express/bh-posta.png','https://www.posta.ba/',9999,1704193937),('bhutan-post','Bhutan Post','','+975 02334444','https://cdn.parcelpanel.com/assets/common/images/express/bhutan-post.png','http://202.144.143.120:8080/dts/TrackMail',9999,1704193937),('birdsystem','BIRD SYSTEM LTD','','0755-61882187','https://cdn.parcelpanel.com/assets/common/images/express/birdsystem.png','https://www.birdsystem.co.uk/site/index/tracking',9999,1704193937),('biz-courier','Biz Courier','','+30 211 71 01 466','https://cdn.parcelpanel.com/assets/common/images/express/biz-courier.png','https://trackit.bizcourier.eu/app/en/******',194,1704193937),('bjytsywl','BJYTSYWL','','010-57412584','https://cdn.parcelpanel.com/assets/common/images/express/bjytsywl.png','http://www.bjytsywl.com/',9999,1704193937),('blexpress','blexpress','','','https://cdn.parcelpanel.com/assets/common/images/express/blexpress.png','http://159.75.33.28:8082/trackIndex.htm',9999,1704193937),('bljt56','BAI LE JIE TONG','','0577-65191999','https://cdn.parcelpanel.com/assets/common/images/express/bljt56.png','http://www.bljt56.com/BLJT/bljt.html',9999,1704193937),('blue-leopard','Blue Leopard','','','https://cdn.parcelpanel.com/assets/common/images/express/blue-leopard.png','https://www.lb-56.com/',202,1704193937),('bluecare','Bluecare Express','','','https://cdn.parcelpanel.com/assets/common/images/express/bluecare.png','https://bluecare.express/',217,1704193937),('bluedart','Bluedart','','1860 233 1234','https://cdn.parcelpanel.com/assets/common/images/express/bluedart.png','https://www.bluedart.com/web/guest/tracking',50,1704193937),('blueskyexpress','Blue Sky Express','','4008886890','https://cdn.parcelpanel.com/assets/common/images/express/blueskyexpress.png','http://198.11.173.181:8888/cgi-bin/GInfo.dll?EmmisTrack',146,1704193937),('bnexp','Bona','','','https://cdn.parcelpanel.com/assets/common/images/express/bnexp.png','http://post.aprche.net/EN/',9999,1704193937),('bombax','Bombax','','+91 9555 684 684','https://cdn.parcelpanel.com/assets/common/images/express/bombax.png','https://bombax.in/?ConsignmentNo=******',9999,1704193937),('bombino-express','Bombino Express','','','https://cdn.parcelpanel.com/assets/common/images/express/bombino-express.png','https://bombinoexp.in/track.aspx?AwbNo=******',201,1704193937),('bondscouriers','Bonds Couriers','','+61 1300-369-300','https://cdn.parcelpanel.com/assets/common/images/express/bondscouriers.png','http://www.bondscouriers.com.au/bondsweb/track-job.htm',9999,1704193937),('border-express','Border Express','','','https://cdn.parcelpanel.com/assets/common/images/express/border-express.png','https://www.borderexpress.com.au/tracking/?cn=******',217,1704193937),('bosnia-and-herzegovina-post','Bosnia And Herzegovina Post','','033 252 613','https://cdn.parcelpanel.com/assets/common/images/express/bosnia-and-herzegovina-post.png','http://www.posta.ba//en/track-trace-2/',9999,1704193937),('botswana-post','Botswana Post','','+267 368 1000','https://cdn.parcelpanel.com/assets/common/images/express/botswana-post.png','http://www.botspost.co.bw/',9999,1704193937),('boxberry','Boxberry','','8-499-391-56-22','https://cdn.parcelpanel.com/assets/common/images/express/boxberry.png','https://boxberry.ru',138,1704193937),('boxc','Boxc Logistics','','+1 (646) 968-0080','https://cdn.parcelpanel.com/assets/common/images/express/boxc.png','https://www.boxc.com',209,1704193937),('bqc','BQC','','+86 0755-2222 2232','https://cdn.parcelpanel.com/assets/common/images/express/bqc.png','http://www.1001000.com/newwl/page/queryTrack',9999,1704193937),('brazil-correios','Brazil Correios','','55 61 3003 0100','https://cdn.parcelpanel.com/assets/common/images/express/brazil-correios.png','http://www.correios.com.br/',43,1704193937),('bri-ems','Bridge','','','https://cdn.parcelpanel.com/assets/common/images/express/bri-ems.png','https://www.bri-ems.com/query',9999,1704193937),('bring','Bring','','','https://cdn.parcelpanel.com/assets/common/images/express/bring.png','https://tracking.bring.com/tracking/api/fetch/******?lang=en',9999,1704193937),('brunei-post','Brunei Post','','673-2382888','https://cdn.parcelpanel.com/assets/common/images/express/brunei-post.png','http://www.post.gov.bn/SitePages/TrackItems.aspx',9999,1704193937),('bsi','BSI express','','4006 5868 22','https://cdn.parcelpanel.com/assets/common/images/express/bsi.png','https://www.deppon.com/newwebsite/track/ordertrack',9999,1704193937),('bt-exp','LJS','','0755-29987897','https://cdn.parcelpanel.com/assets/common/images/express/bt-exp.png','http://115.29.184.71:8082/trackIndex.htm',9999,1704193937),('btd56','Bao Tongda Freight Forwarding','','','https://cdn.parcelpanel.com/assets/common/images/express/btd56.png','http://www.btd56.com/cgi-bin/GInfo.dll?EmmisTrack',183,1704193937),('buffaloex','Buffalo','','+86 400-921-9066','https://cdn.parcelpanel.com/assets/common/images/express/buffaloex.png','http://index.buffaloex.com/express/record/******?language=en',156,1704193937),('buffaloex-za','BUFFALO ZA','','','https://cdn.parcelpanel.com/assets/common/images/express/buffaloex-za.png','https://www.buffaloex.co.za/track.html',9999,1704193937),('bulgaria-post','Bulgaria Post','','3592 949 3130','https://cdn.parcelpanel.com/assets/common/images/express/bulgaria-post.png','http://www.bgpost.bg/IPSWebTracking/IPSWeb_item_events.asp?itemid=******&submit=Track',9999,1704193937),('burundi-post','Burundi Post','','(257) 22 32 51','https://cdn.parcelpanel.com/assets/common/images/express/burundi-post.png','http://www.poste.bi/index.php?searchword=******&ordering=&searchphrase=all&Itemid=1&option=com_search&lang=en',9999,1704193937),('cacesapostal','Cacesa Postal','','','https://cdn.parcelpanel.com/assets/common/images/express/cacesapostal.png','https://www.cacesapostal.com/Tracking?q=******',153,1704193937),('cainiao','AliExpress Standard Shipping','','9519656','https://cdn.parcelpanel.com/assets/common/images/express/cainiao.png','https://global.cainiao.com/detail.htm?mailNoList=******&spm=a3708.7860688.0.d01',22,1704193937),('cambodia-post','Cambodia Post','','+855 23 723 51','https://cdn.parcelpanel.com/assets/common/images/express/cambodia-post.png','http://www.cambodiapost.com.kh/',9999,1704193937),('campost','Cameroon Post','','237 222 23 21 36','https://cdn.parcelpanel.com/assets/common/images/express/campost.png','http://tracking.campost.cm/',9999,1704193937),('canada-post','Canada Post','','1 866 607 6301','https://cdn.parcelpanel.com/assets/common/images/express/canada-post.png','https://www.canadapost.ca/trackweb/en#/search?searchFor=******',40,1704193937),('canpar','Canpar Courier','','1-800-387-9335','https://cdn.parcelpanel.com/assets/common/images/express/canpar.png','http://www.canpar.ca/en/track/TrackingAction.do?locale=en&type=0&reference=******',123,1704193937),('cargointl-de','Cargo International','','','https://cdn.parcelpanel.com/assets/common/images/express/cargointl-de.png','https://www.cargointernational.de/sendungsverfolgung/tracking/******',9999,1704193937),('cargus','cargus','','','https://cdn.parcelpanel.com/assets/common/images/express/cargus.png','https://app.urgentcargus.ro/Private/Tracking.aspx',9999,1704193937),('caribou','CARIBOU','','','https://cdn.parcelpanel.com/assets/common/images/express/caribou.png','https://track.wearecaribou.com',9999,1704193937),('cbl-logistica','CBL Logistics','','+34902887887','https://cdn.parcelpanel.com/assets/common/images/express/cbl-logistica.png','http://en.clientes.cbl-logistica.com/login.aspx?lang=sel',9999,1704193937),('cbtsd','Better Express','','+86 4008-782-116','https://cdn.parcelpanel.com/assets/common/images/express/cbtsd.png','http://szbt.kingtrans.cn/WebTrack',9999,1704193937),('cdek','CDEK Express','','8 800 250-14-05','https://cdn.parcelpanel.com/assets/common/images/express/cdek.png','https://www.cdek.ru/ru/tracking?order_id=******',218,1704193937),('cdek-tr','CDEK Turkey','','','https://cdn.parcelpanel.com/assets/common/images/express/cdek-tr.png','https://www.cdek.com.tr/en',9999,1704193937),('cdl','cdl','','','https://cdn.parcelpanel.com/assets/common/images/express/cdl.png','https://ship.cdldelivers.com/Xcelerator/Tracking/Tracking?orderId=******',93,1704193937),('celeritastransporte','Celeritas Transporte','','','https://cdn.parcelpanel.com/assets/common/images/express/celeritastransporte.png','https://celeritastransporte.com/',9999,1704193937),('cess','Cess','','+86 4001 111 123','https://cdn.parcelpanel.com/assets/common/images/express/cess.png','http://www.gto365.com/#/waybill',9999,1704193937),('ceva-logistics','CEVA Logistics','','+1-800-888-4949','https://cdn.parcelpanel.com/assets/common/images/express/ceva-logistics.png','https://www.cevalogistics.com/en/ceva-trak?transport_mode=all&codes=******',214,1704193937),('cgs-express','CGS Express','','','https://cdn.parcelpanel.com/assets/common/images/express/cgs-express.png','http://www.cgs-express.com:8082/trackIndex.htm',9999,1704193937),('changjiangexpress','ChangJiang Express','','','https://cdn.parcelpanel.com/assets/common/images/express/changjiangexpress.png','',9999,1704193937),('chengfeng','SY Express','','','https://cdn.parcelpanel.com/assets/common/images/express/chengfeng.png','http://www.chengfengexpress.com/default/index/get-track-detail',9999,1704193937),('china-ems','China EMS','','0086-11183','https://cdn.parcelpanel.com/assets/common/images/express/china-ems.png','http://www.ems.com.cn/',162,1704193937),('china-post','China Post','','86 20 11185','https://cdn.parcelpanel.com/assets/common/images/express/china-post.png','http://yjcx.chinapost.com.cn/qps/yjcx',26,1704193937),('china-russia56','China Russia56','','+86 020 36297280','https://cdn.parcelpanel.com/assets/common/images/express/china-russia56.png','http://www.china-russia56.com/Search.asp',9999,1704193937),('chinapost-cb','China Post E-commerce','','+852 3575 8366','https://cdn.parcelpanel.com/assets/common/images/express/chinapost-cb.png','http://www.chinapost-cb.com/',9999,1704193937),('chinastarlogistics','ChinaStarLogistics','','(010)53500788 010-69450017','https://cdn.parcelpanel.com/assets/common/images/express/chinastarlogistics.png','http://www.chinastarlogistics.com/',9999,1704193937),('chinz56','Chinz Logistics','','09-8372888','https://cdn.parcelpanel.com/assets/common/images/express/chinz56.png','http://www.chinz56.co.nz/cgi-bin/GInfo.dll?DispInfo&w=chinz56&nid=12',9999,1704193937),('chitchats','Chit Chats','','','https://cdn.parcelpanel.com/assets/common/images/express/chitchats.png','https://chitchats.com/tracking/******',207,1704193937),('choice','CHOICE Logistics','','400 613 8844','https://cdn.parcelpanel.com/assets/common/images/express/choice.png','http://en.choicexp.com/',9999,1704193937),('chronopost','Chronopost','','0969 391 391','https://cdn.parcelpanel.com/assets/common/images/express/chronopost.png','https://www.chronopost.fr/en/private/track-your-parcel',104,1704193937),('chronopost-portugal','Chronopost Portugal(DPD)','','+351 707 45 28 28','https://cdn.parcelpanel.com/assets/common/images/express/chronopost-portugal.png','https://chronopost.pt/en/node/167',9999,1704193937),('cht361','CHT','','0755-23459202','https://cdn.parcelpanel.com/assets/common/images/express/cht361.png','http://www.cht361.com/',9999,1704193937),('chukou1','Chukou1 Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/chukou1.png','http://www.chukou1.com/LogistictsTrack.aspx?trackNo=******',172,1704193937),('cirroparcel','CIRRO','','','https://cdn.parcelpanel.com/assets/common/images/express/cirroparcel.png','https://www.cirroparcel.com/en/tracking-results/?id=******&year=2023',179,1704193937),('citisprint','Citisprint','','(021) 511 3105','https://cdn.parcelpanel.com/assets/common/images/express/citisprint.png','https://www.citisprint.co.za/track-your-parcel/',9999,1704193937),('cititrans','cititrans','','＋86 755-82143174','https://cdn.parcelpanel.com/assets/common/images/express/cititrans.png','http://www.cititrans.com/',9999,1704193937),('citylinkexpress','City-Link Express','','+603-5033 3800','https://cdn.parcelpanel.com/assets/common/images/express/citylinkexpress.png','http://www.citylinkexpress.com/',9999,1704193937),('cj-dropshipping','CJ Packet','','1(909) 809-1104','https://cdn.parcelpanel.com/assets/common/images/express/cj-dropshipping.png','https://cjpacket.com?trackingNumber=******',39,1704193937),('cjlogistics','CJ Logistics Global','','','https://cdn.parcelpanel.com/assets/common/images/express/cjlogistics.png','https://mysgnexs.cjlogistics-global.com/web/g_tracking_eng.jsp?slipno=******',9999,1704193937),('cjpacket','Cjpacket','','','https://cdn.parcelpanel.com/assets/common/images/express/cjpacket.png','https://cjpacket.com/',214,1704193937),('clevy-links','Clevy Links','','','https://cdn.parcelpanel.com/assets/common/images/express/clevy-links.png','https://www.ship24.com/tracking?p=******',9999,1704193937),('cmkexpress','CMK','','18118780359','https://cdn.parcelpanel.com/assets/common/images/express/cmkexpress.png','https://cmk.itdida.com//query.xhtml',180,1704193937),('cndexpress','CND Express','','15915349554','https://cdn.parcelpanel.com/assets/common/images/express/cndexpress.png','http://www.cndexpress.com?******',9999,1704193937),('cnexps','CNE Express','','86 400 021 5600','https://cdn.parcelpanel.com/assets/common/images/express/cnexps.png','https://www.cne.com/English/?no=******',30,1704193937),('cnilink','CNILINK','','+86-0755-2321 7846','https://cdn.parcelpanel.com/assets/common/images/express/cnilink.png','http://www.cnilink.com/chTrace.html',9999,1704193937),('cnpex','Cnpex','','130 007 9988','https://cdn.parcelpanel.com/assets/common/images/express/cnpex.png','http://www.cnpex.com.au/',9999,1704193937),('coe','COE','','+86-755-83575000','https://cdn.parcelpanel.com/assets/common/images/express/coe.png','http://www.coe.com.hk/query',9999,1704193937),('colicoli','Colicoli','','','https://cdn.parcelpanel.com/assets/common/images/express/colicoli.png','https://www.colicoli.fr/tracking?trackingNumber=******',160,1704193937),('colis-prive','Colis Prive','','+33 0826 82 83 84','https://cdn.parcelpanel.com/assets/common/images/express/colis-prive.png','https://www.colisprive.fr/',46,1704193937),('colissimo','Colissimo(La Poste)','','','https://cdn.parcelpanel.com/assets/common/images/express/colissimo.png','https://www.laposte.fr/outils/suivre-vos-envois?code=******',64,1704193937),('collectplus','Collect+','','+44 1923 601616','https://cdn.parcelpanel.com/assets/common/images/express/collectplus.png','https://www.collectplus.co.uk/track/******',9999,1704193937),('collivery','collivery','','','https://cdn.parcelpanel.com/assets/common/images/express/collivery.png','https://collivery.net/tracking',9999,1704193937),('colombia-post','Colombia Post','','(57-1) 4722000','https://cdn.parcelpanel.com/assets/common/images/express/colombia-post.png','http://www.4-72.com.co/',217,1704193937),('com1express','ComOne Express','','','https://cdn.parcelpanel.com/assets/common/images/express/com1express.png','http://www.com1logistics.com/tracking.html?trackNo=******',218,1704193937),('cometcourier','Comet Hellas','','+30 210 514 0826','https://cdn.parcelpanel.com/assets/common/images/express/cometcourier.png','https://www.comethellas.gr',9999,1704193937),('comethellas','Comet Hellas','','+30 210 514 0826','https://cdn.parcelpanel.com/assets/common/images/express/comethellas.png','https://www.comethellas.gr',9999,1704193937),('comexpress','COMPASS EXPRESS','','＋1-647 340 1588','https://cdn.parcelpanel.com/assets/common/images/express/comexpress.png','http://comexpress.ca/index.aspx',9999,1704193937),('con-way','Con-way Freight','','+1 800 426-6929','https://cdn.parcelpanel.com/assets/common/images/express/con-way.png','https://app.ltl.xpo.com/appjs/tracking/#/tracking',9999,1704193937),('connect-co','ConnectCo','','+94 (11) 714-52-45','https://cdn.parcelpanel.com/assets/common/images/express/connect-co.png','https://connectcoapps.lk/tracking/******',9999,1704193937),('coordinadora','Coordinadora','','','https://cdn.parcelpanel.com/assets/common/images/express/coordinadora.png','https://www.coordinadora.com/',218,1704193937),('correios-cabo-verde','Correios Cabo Verde','','(238) 800 10 09','https://cdn.parcelpanel.com/assets/common/images/express/correios-cabo-verde.png','http://www.correios.cv/index.aspx?id_ferramenta=1775',9999,1704193937),('correo-argentino','Argentina Post','','(011) 4891-9191','https://cdn.parcelpanel.com/assets/common/images/express/correo-argentino.png','https://www.correoargentino.com.ar/formularios/oidn',219,1704193937),('correo-paraguayo','Paraguay Post','','(595 21) 498-112/16','https://cdn.parcelpanel.com/assets/common/images/express/correo-paraguayo.png','http://www.correoparaguayo.gov.py/index.php/rastreo/rastreo-de-envios-internacionales',9999,1704193937),('correo-uy','Correo Uruguayo','','','https://cdn.parcelpanel.com/assets/common/images/express/correo-uy.png','https://ahiva.correo.com.uy/servicioConsultaTntIps-wsWeb/seguimientoEnvios/eventosweb?codigoPieza=******&retry=433',9999,1704193937),('correos-bolivia','Bolivia Post','','(591) 2374144','https://cdn.parcelpanel.com/assets/common/images/express/correos-bolivia.png','http://www.correosbolivia.com/',9999,1704193937),('correos-del-ecuador','Ecuador Post','','(593-2) 3829210','https://cdn.parcelpanel.com/assets/common/images/express/correos-del-ecuador.png','https://www.correosdelecuador.gob.ec/rastreo-de-envios/',9999,1704193937),('correos-mexico','Mexico Post','','(55) 5340 3300','https://cdn.parcelpanel.com/assets/common/images/express/correos-mexico.png','https://www.correosdemexico.gob.mx/SSLServicios/SeguimientoEnvio/Seguimiento.aspx',218,1704193937),('correos-panama','Panama Post','','+ (507) 512-7601','https://cdn.parcelpanel.com/assets/common/images/express/correos-panama.png','http://www.correospanama.gob.pa/index.php?option=com_wrapper&view=wrapper&Itemid=70',9999,1704193937),('correos-spain','Correos Spain','','+34 902197197','https://cdn.parcelpanel.com/assets/common/images/express/correos-spain.png','https://www.correos.es/ss/Satellite/site/aplicacion-4000003383089-inicio/detalle_app-sidioma=es_ES?numero=0000',79,1704193937),('correosexpress','Correos Express','','902 1 22 333','https://cdn.parcelpanel.com/assets/common/images/express/correosexpress.png','https://s.correosexpress.com/SeguimientoSinCP/home',154,1704193937),('cosco','COSCO eGlobal','','','https://cdn.parcelpanel.com/assets/common/images/express/cosco.png','https://lines.coscoshipping.com/home/',9999,1704193937),('cosex','Cosex','','+86 18157771790','https://cdn.parcelpanel.com/assets/common/images/express/cosex.png','http://www.cosex.cn/logisticsInquiry',9999,1704193937),('costmeticsnow','Cosmetics Now','','','https://cdn.parcelpanel.com/assets/common/images/express/costmeticsnow.png','https://www.cosmeticsnow.com/',9999,1704193937),('courant-plus','Courant','','','https://cdn.parcelpanel.com/assets/common/images/express/courant-plus.png','https://track.aftership.com/trackings?courier=courant-plus&language=fr&tracking-numbers=******',9999,1704193937),('courier-center','Courier Center','','','https://cdn.parcelpanel.com/assets/common/images/express/courier-center.png','https://www.courier.gr/track/result',9999,1704193937),('courier-it','Courier IT','','+27 21 555 6777','https://cdn.parcelpanel.com/assets/common/images/express/courier-it.png','http://www.courierit.co.za/',9999,1704193937),('courierpost','CourierPost','','+64 9 367 9710','https://cdn.parcelpanel.com/assets/common/images/express/courierpost.png','http://trackandtrace.courierpost.co.nz/search/******',9999,1704193937),('couriers-please','Couriers Please express','','+61 1300 361 000','https://cdn.parcelpanel.com/assets/common/images/express/couriers-please.png','https://www.couriersplease.com.au/tools/track',101,1704193937),('cpex','CPEX','','','https://cdn.parcelpanel.com/assets/common/images/express/cpex.png','https://carry-flap.com/',9999,1704193937),('cpszy','CPSZY','','','https://cdn.parcelpanel.com/assets/common/images/express/cpszy.png','http://www.cpszy.com/trace.html?sn=******',9999,1704193937),('crane-etowertech','Crane Worldwide Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/crane-etowertech.png','https://crane.etowertech.com/home',9999,1704193937),('crazyexpress','Crazy Express','','647-297-1888','https://cdn.parcelpanel.com/assets/common/images/express/crazyexpress.png','http://www.crazyexpress.ca/',9999,1704193937),('cre','CRE','','+86 95572','https://cdn.parcelpanel.com/assets/common/images/express/cre.png','http://www.cre.cn/selfSearch.html',9999,1704193937),('csd','CSD Express','','13751351357','https://cdn.parcelpanel.com/assets/common/images/express/csd.png','http://www.csdexpress.com',9999,1704193937),('cse','CSE','','','https://cdn.parcelpanel.com/assets/common/images/express/cse.png','https://cse.ru/track.php',9999,1704193937),('ctc-express','CTC Express','','','https://cdn.parcelpanel.com/assets/common/images/express/ctc-express.png','http://www.ctc-express.com.tw/',9999,1704193937),('ctt','Portugal CTT','','(351) 707262626','https://cdn.parcelpanel.com/assets/common/images/express/ctt.png','https://www.ctt.pt/feapl_2/app/open/objectSearch/objectSearch.jspx?objects=******',78,1704193937),('ctt-express','CTT Express','','','https://cdn.parcelpanel.com/assets/common/images/express/ctt-express.png','https://www.ctt.pt/feapl_2/app/open/objectSearch/objectSearch.jspx?objects=******',142,1704193937),('cuba-post','Cuba Post','','','https://cdn.parcelpanel.com/assets/common/images/express/cuba-post.png','http://www.correos.cu/rastreador-de-envios/',9999,1704193937),('cubyn','Cubyn','','','https://cdn.parcelpanel.com/assets/common/images/express/cubyn.png','https://www.cubyn.com/',85,1704193937),('cxc','CXC','','31010888','https://cdn.parcelpanel.com/assets/common/images/express/cxc.png','http://cxc.com.hk/tracking/',9999,1704193937),('cy-express','CY Epxress','','','https://cdn.parcelpanel.com/assets/common/images/express/cy-express.png','http://www.cy-express.com/',9999,1704193937),('cyprus-post','Cyprus Post','','77778013/0035722805745','https://cdn.parcelpanel.com/assets/common/images/express/cyprus-post.png','https://www.cypruspost.post/el/track-n-trace-results',212,1704193937),('czech-post','Czech Post','','420 954 292 102','https://cdn.parcelpanel.com/assets/common/images/express/czech-post.png','https://www.postaonline.cz/trackandtrace/-/zasilka/cislo?parcelNumbers=******',213,1704193937),('dachser','Dachser','','+49 831 5916 0','https://cdn.parcelpanel.com/assets/common/images/express/dachser.png','https://elogistics.dachser.com',212,1704193937),('daipost','DAI Post','','','https://cdn.parcelpanel.com/assets/common/images/express/daipost.png','https://www.daipost.com/',9999,1704193937),('dao365','DAO365','','','https://cdn.parcelpanel.com/assets/common/images/express/dao365.png','https://www.dao.as/en/private/track-your-parcel?stregkode=******',212,1704193937),('dawn-wing','Dawn Wing','','+27 0861 223 224','https://cdn.parcelpanel.com/assets/common/images/express/dawn-wing.png','http://www.dawnwing.co.za/business-tools/online-parcel-tracking/',9999,1704193937),('dayonetrack','Day One Track','','','https://cdn.parcelpanel.com/assets/common/images/express/dayonetrack.png','http://dayonetrack.com/search_order.aspx?trackNumber=******',42,1704193937),('dayross','Day & Ross','','','https://cdn.parcelpanel.com/assets/common/images/express/dayross.png','https://dayross.com/view-shipment-tracking?division=Freight',183,1704193937),('dbschenker','DB Schenker','','','https://cdn.parcelpanel.com/assets/common/images/express/dbschenker.png','https://www.dbschenker.com/',9999,1704193937),('ddexpress','DD Express','','+603-74997232','https://cdn.parcelpanel.com/assets/common/images/express/ddexpress.png','https://dd.express/',9999,1704193937),('dealfy','Dealfy','','','https://cdn.parcelpanel.com/assets/common/images/express/dealfy.png','https://track.dealfy.com/#/track-order?trackingStr=******',9999,1704193937),('decnlh','decnlh','','','https://cdn.parcelpanel.com/assets/common/images/express/decnlh.png','http://www.decnlh.com/',9999,1704193937),('dekun','Dekun','','+86 400-830-8686','https://cdn.parcelpanel.com/assets/common/images/express/dekun.png','http://www.dekuncn.com/goods-num_1324657987.html',9999,1704193937),('delcart-in','Delcart','','+1 (800) 3000-2622','https://cdn.parcelpanel.com/assets/common/images/express/delcart-in.png','http://www.delcart.in/tracking_details_3.php',9999,1704193937),('delhivery','Delhivery','','+91 (124) 6719500','https://cdn.parcelpanel.com/assets/common/images/express/delhivery.png','https://www.delhivery.com/',82,1704193937),('dellin','Dellin','','','https://cdn.parcelpanel.com/assets/common/images/express/dellin.png','https://www.dellin.ru/tracker/',9999,1704193937),('delnext','Delnext','','707 019 368','https://cdn.parcelpanel.com/assets/common/images/express/delnext.png','https://www.delnext.com/',9999,1704193937),('deltafille','Trending Times','','909-529-0472','https://cdn.parcelpanel.com/assets/common/images/express/deltafille.png','www.trendingtimes.net',9999,1704193937),('deltec-courier','Deltec Courier','','+44 20 8569 6767','https://cdn.parcelpanel.com/assets/common/images/express/deltec-courier.png','https://www.deltec-courier.com/services/track-and-trace',9999,1704193937),('denmark-post','Denmark post','','+45 70 70 70 30','https://cdn.parcelpanel.com/assets/common/images/express/denmark-post.png','https://www.postnord.dk/en/track-and-trace#dynamicloading=true&shipmentid=******',87,1704193937),('deppon','DEPPON','','+86 95353','https://cdn.parcelpanel.com/assets/common/images/express/deppon.png','https://www.deppon.com/newwebsite/track/ordertrack',9999,1704193937),('deutsche-post','Deutsche Post','','0228 4333118','https://cdn.parcelpanel.com/assets/common/images/express/deutsche-post.png','https://www.deutschepost.de/sendung/simpleQuery.html',51,1704193937),('dex-i','DEX-I','','+86 20 66854050','https://cdn.parcelpanel.com/assets/common/images/express/dex-i.png','http://www.dex-i.com/',9999,1704193937),('dfglobalex','dfglobalex','','','https://cdn.parcelpanel.com/assets/common/images/express/dfglobalex.png','http://www.dfglobalex.com/SelectOrder.htm?order=******',9999,1704193937),('dg-transporte','DG Transporte','','','https://cdn.parcelpanel.com/assets/common/images/express/dg-transporte.png','https://www.dg-transporte.de/',9999,1704193937),('dhl','DHL','','1-800-225-5345','https://cdn.parcelpanel.com/assets/common/images/express/dhl.png','http://www.dhl.com/en/express/tracking.html?brand=DHL&AWB=******',37,1704193937),('dhl-active','DHL Active Tracing','','+1 2400 3388','https://cdn.parcelpanel.com/assets/common/images/express/dhl-active.png','https://activetracing.dhl.com/DatPublic/datSelection.do',9999,1704193937),('dhl-benelux','DHL Benelux','','+31 26-324 6700','https://cdn.parcelpanel.com/assets/common/images/express/dhl-benelux.png','https://www.logistics.dhl/nl-en/home/tracking.html?tracking-id=******',9999,1704193937),('dhl-es','DHL Spain Domestic','','+34 902 09 05 41','https://cdn.parcelpanel.com/assets/common/images/express/dhl-es.png','https://www.logistics.dhl/es-es/home/seguimiento.html?tracking-id=******',9999,1704193937),('dhl-germany','DHL Germany','','+49 228 4 333 112','https://cdn.parcelpanel.com/assets/common/images/express/dhl-germany.png','https://nolp.dhl.de/nextt-online-public/de/search?piececode=******&cid=dhlde',25,1704193937),('dhl-germany-zip','DHL Germany(PostalCode)','','','https://cdn.parcelpanel.com/assets/common/images/express/dhl-germany-zip.png','https://www.dhl.de/de/',9999,1704193937),('dhl-global-logistics','DHL Global Forwarding','','','https://cdn.parcelpanel.com/assets/common/images/express/dhl-global-logistics.png','https://www.dhl.com/global-en/home/tracking/tracking-parcel.html?submit=1&tracking-id=******',148,1704193937),('dhl-hong-kong','DHL Hong Kong','','+852 2218-6888','https://cdn.parcelpanel.com/assets/common/images/express/dhl-hong-kong.png','https://www.logistics.dhl/hk-zh/home/tracking.html',185,1704193937),('dhl-nl','DHL Netherlands','','+31 (0)26 324 6700','https://cdn.parcelpanel.com/assets/common/images/express/dhl-nl.png','https://www.logistics.dhl/nl-en/home/tracking.html?tracking-id=******',197,1704193937),('dhl-poland','DHL Poland Domestic','','+48 42 6 345 345','https://cdn.parcelpanel.com/assets/common/images/express/dhl-poland.png','https://www.logistics.dhl/pl-pl/home/sledzenie.html?tracking-id=******',9999,1704193937),('dhl-uk','DHL Parcel UK','','02476 937 770','https://cdn.parcelpanel.com/assets/common/images/express/dhl-uk.png','https://track.dhlparcel.co.uk/',182,1704193937),('dhl-unified-api','DHL API','','','https://cdn.parcelpanel.com/assets/common/images/express/dhl-unified-api.png','https://www.dhl.com/hk-zh/home.html',9999,1704193937),('dhlecommerce-asia','DHL Global Mail Asia','','+65 6883 0771','https://cdn.parcelpanel.com/assets/common/images/express/dhlecommerce-asia.png','https://ecommerceportal.dhl.com/track/?ref=',208,1704193937),('dhlglobalmail','DHL eCommerce','','+1 317-554-5191','https://cdn.parcelpanel.com/assets/common/images/express/dhlglobalmail.png','https://webtrack.dhlglobalmail.com/?trackingnumber=******',32,1704193937),('dhlink','Dhlink','','','https://cdn.parcelpanel.com/assets/common/images/express/dhlink.png','http://www.dhlink.com/trackQuery',9999,1704193937),('dhlparcel-nl','DHL eCommerce NL','','+31(0)900 - 222 21 20','https://cdn.parcelpanel.com/assets/common/images/express/dhlparcel-nl.png','https://www.dhlparcel.nl/nl/consument/volg-je-pakket?tc=******&lc=nl-NL',55,1704193937),('dicom','Dicom','','','https://cdn.parcelpanel.com/assets/common/images/express/dicom.png','https://www.dicom.com/en/dicom/tracking/result',9999,1704193937),('didadi','DIDADI LOGISTICS TECH','','','https://cdn.parcelpanel.com/assets/common/images/express/didadi.png','http://120.79.38.89/default/index/get-track-detail',9999,1704193937),('doortodoor','CJ Logistics','','110-81-05034','https://cdn.parcelpanel.com/assets/common/images/express/doortodoor.png','https://www.cjlogistics.com/cn/tool/international/tracking',9999,1704193937),('doragate','Dora Gate','','18565802333','https://cdn.parcelpanel.com/assets/common/images/express/doragate.png','http://www.doragate.com',9999,1704193937),('dotzot','Dotzot','','+91 33004444','https://cdn.parcelpanel.com/assets/common/images/express/dotzot.png','http://dotzot.in/index-web.html',9999,1704193937),('dpd','DPD','','0121 275 9222','https://cdn.parcelpanel.com/assets/common/images/express/dpd.png','https://tracking.dpd.de/status/de_DE/parcel/******',52,1704193937),('dpd-be','DPD Belgium','','070/222 222','https://cdn.parcelpanel.com/assets/common/images/express/dpd-be.png','https://tracking.dpd.de/status/en_BE/parcel/******',9999,1704193937),('dpd-ch','DPD Switzerland','','','https://cdn.parcelpanel.com/assets/common/images/express/dpd-ch.png','https://www.dpd.com/ch/en/',9999,1704193937),('dpd-cz','DPD CZ','','','https://cdn.parcelpanel.com/assets/common/images/express/dpd-cz.png','https://www.dpdgroup.com/cz/mydpd/my-parcels/incoming?parcelNumber=******',9999,1704193937),('dpd-de','DPD Germany','','','https://cdn.parcelpanel.com/assets/common/images/express/dpd-de.png','https://www.dpd.com/de/',141,1704193937),('dpd-fr','DPD-FR','','','https://cdn.parcelpanel.com/assets/common/images/express/dpd-fr.png','https://www.dpd.com/',9999,1704193937),('dpd-hk','DPD HK','','','https://cdn.parcelpanel.com/assets/common/images/express/dpd-hk.png','https://www.dpd.com/tracking',9999,1704193937),('dpd-hr','DPD Croatia','','','https://cdn.parcelpanel.com/assets/common/images/express/dpd-hr.png','https://www.dpd.com/hr_en',9999,1704193937),('dpd-ireland','DPD Ireland','','+353 (0)90 64 20500','https://cdn.parcelpanel.com/assets/common/images/express/dpd-ireland.png','https://dpd.ie/tracking?deviceType=5&consignmentNumber=******',175,1704193937),('dpd-nl','DPD Netherlands','','','https://cdn.parcelpanel.com/assets/common/images/express/dpd-nl.png','https://www.dpd.com/nl/nl/',9999,1704193937),('dpd-poland','DPD Poland','','+48 801 400 373','https://cdn.parcelpanel.com/assets/common/images/express/dpd-poland.png','https://www.dpd.com.pl/',138,1704193937),('dpd-por','DPD Portugal','','21 854 6001','https://cdn.parcelpanel.com/assets/common/images/express/dpd-por.png','https://tracking.dpd.pt/track-and-trace?reference=******',9999,1704193937),('dpd-ro','DPD Romania','','031.824.9090','https://cdn.parcelpanel.com/assets/common/images/express/dpd-ro.png','https://www.dpd.com/ro/',200,1704193937),('dpd-ru','DPD Russia','','','https://cdn.parcelpanel.com/assets/common/images/express/dpd-ru.png','https://www.dpd.ru/dpd/search/search.do2',9999,1704193937),('dpd-sk','DPD SK','','','https://cdn.parcelpanel.com/assets/common/images/express/dpd-sk.png','https://www.dpd.com/sk/sk/',9999,1704193937),('dpd-uk','DPD UK','','+44 845 9 300 350','https://cdn.parcelpanel.com/assets/common/images/express/dpd-uk.png','https://track.dpd.co.uk/',47,1704193937),('dpe-express','DPE Express','','','https://cdn.parcelpanel.com/assets/common/images/express/dpe-express.png','http://www.dpe.net.cn/Tracking.php',9999,1704193937),('dpe-south-africa','DPE South Africa','','+27 (011) 573 3000','https://cdn.parcelpanel.com/assets/common/images/express/dpe-south-africa.png','http://www.southafricanpostoffice.post/',9999,1704193937),('dpex','DPEX','','+65 6781 8888','https://cdn.parcelpanel.com/assets/common/images/express/dpex.png','https://dpex.com/track-and-trace/',146,1704193937),('driverfastgo','Driverfastgo','','678 296 8540','https://cdn.parcelpanel.com/assets/common/images/express/driverfastgo.png','https://www.driverfastgo.com/index.htm',9999,1704193937),('dropshipman','Dropshipman','','','https://cdn.parcelpanel.com/assets/common/images/express/dropshipman.png','https://www.dropshipman.com/',9999,1704193937),('dsv','DSV','','1 (732) 850-8000','https://cdn.parcelpanel.com/assets/common/images/express/dsv.png','http://www.dsv.com/',127,1704193937),('dtdc','DTDC','','3300444','https://cdn.parcelpanel.com/assets/common/images/express/dtdc.png','http://dtdc.com/track',90,1704193937),('dtdc-plus','DTDC Plus','','3300444','https://cdn.parcelpanel.com/assets/common/images/express/dtdc-plus.png','http://dtdc.com/track',9999,1704193937),('dwz','DWZ Express','','+86 0755-3632 6899','https://cdn.parcelpanel.com/assets/common/images/express/dwz.png','http://www.dwz56.com/cgi-bin/GInfo.dll?DispInfo&w=szdwz&nid=27',9999,1704193937),('dxdelivery','DX Delivery','','+44 0333 241 5700','https://cdn.parcelpanel.com/assets/common/images/express/dxdelivery.png','https://www.dxdelivery.com/consumer/my-tracking/',196,1704193937),('dyj-express','DYJ Express','','','https://cdn.parcelpanel.com/assets/common/images/express/dyj-express.png','http://www.dyjexp.com/search.html',113,1704193937),('dylt','Daylight Transport','','','https://cdn.parcelpanel.com/assets/common/images/express/dylt.png','https://www.dylt.com/',9999,1704193937),('e-can','Taiwan Pelican Express','','+8862 6618-1818','https://cdn.parcelpanel.com/assets/common/images/express/e-can.png','http://query2.e-can.com.tw/A.htm',9999,1704193937),('e-commercekz','e-Commerce KZ','','','https://cdn.parcelpanel.com/assets/common/images/express/e-commercekz.png','http://www.e-commercekz.com/',9999,1704193937),('earlybird','Early Bird','','','https://cdn.parcelpanel.com/assets/common/images/express/earlybird.png','https://earlybird.se/tracking/',219,1704193937),('easy-mail','Easy Mail','','+30 210 48 35 000','https://cdn.parcelpanel.com/assets/common/images/express/easy-mail.png','https://www.easymail.gr/',218,1704193937),('easyship','Easy Ship','','','https://cdn.parcelpanel.com/assets/common/images/express/easyship.png','https://www.trackmyshipment.co/shipment-tracking/******',9999,1704193937),('ebowxp','EBO','','152-7119-5959','https://cdn.parcelpanel.com/assets/common/images/express/ebowxp.png','http://www.eboexp.com/',9999,1704193937),('ec-firstclass','EC-Firstclass','','+86 4006 988 223','https://cdn.parcelpanel.com/assets/common/images/express/ec-firstclass.png','http://www.ec-firstclass.org/Details.aspx',216,1704193937),('ecargo-asia','Ecargo','','+82) 1577-9817','https://cdn.parcelpanel.com/assets/common/images/express/ecargo-asia.png','http://www.ecargo.com/',9999,1704193937),('echo','Echo','','+1 (800) 354-7993','https://cdn.parcelpanel.com/assets/common/images/express/echo.png','https://www.echo.com/shipment-tracking?ref=******',9999,1704193937),('ecms','ECMS Express','','','https://cdn.parcelpanel.com/assets/common/images/express/ecms.png','https://ese.ecmsglobal.com/#/ecms/tracking?order_number=******',9999,1704193937),('ecmsglobal','Ecmsglobal','','(855)-266-9299','https://cdn.parcelpanel.com/assets/common/images/express/ecmsglobal.png','http://www.ecmsglobal.com',9999,1704193937),('ecom-express','Ecom Express','','+91-8376888888','https://cdn.parcelpanel.com/assets/common/images/express/ecom-express.png','https://ecomexpress.in/tracking/?awb_field=******',165,1704193937),('ecoscooting','ECOSCOOTING','','','https://cdn.parcelpanel.com/assets/common/images/express/ecoscooting.png','https://www.ecoscooting.com/',9999,1704193937),('ecpost','ECPOST','','+86 0755-36921735','https://cdn.parcelpanel.com/assets/common/images/express/ecpost.png','http://www.ecpostchina.com/track/track/index?trackNo=******',9999,1704193937),('ees-logistics','ees-logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/ees-logistics.png','',9999,1704193937),('efs','EFS Asia','','','https://cdn.parcelpanel.com/assets/common/images/express/efs.png','http://web.efs.asia/script/users/tracking.php',9999,1704193937),('efspost','EFSPost','','0061-02 9742 5555','https://cdn.parcelpanel.com/assets/common/images/express/efspost.png','http://www.efspost.com/index/trackbatch',9999,1704193937),('efwtrack','EFW Track','','','https://cdn.parcelpanel.com/assets/common/images/express/efwtrack.png','https://efwtrack.com/track/******',9999,1704193937),('ekart','Ekart Logistics','','+91 18004201111','https://cdn.parcelpanel.com/assets/common/images/express/ekart.png','https://www.ekartlogistics.com/shipmenttrack/******',157,1704193937),('el-salvador-post','El Salvador Post','','(503) 2527-7600','https://cdn.parcelpanel.com/assets/common/images/express/el-salvador-post.png','http://www.correos.gob.sv/',9999,1704193937),('elcorreo','Guatemala Post','','','https://cdn.parcelpanel.com/assets/common/images/express/elcorreo.png','http://www.elcorreo.com.gt/',9999,1704193937),('elianpost','E-lian','','+86 020-37413475','https://cdn.parcelpanel.com/assets/common/images/express/elianpost.png','http://manage.elianpost.com/web/trackstatus/init.do',9999,1704193937),('elitebio','ELITEBIO','','','https://cdn.parcelpanel.com/assets/common/images/express/elitebio.png','https://www.elitebio.com/',9999,1704193937),('elog-luxembourg','Elog Luxembourg','','+352 8002 8004','https://cdn.parcelpanel.com/assets/common/images/express/elog-luxembourg.png','https://www.elog-luxembourg.com/',9999,1704193937),('elta-courier-gr','ELTA Courier','','+30 210 6073 000','https://cdn.parcelpanel.com/assets/common/images/express/elta-courier-gr.png','http://www.elta-courier.gr/',206,1704193937),('emhsz','METEOR EXPRESS','','','https://cdn.parcelpanel.com/assets/common/images/express/emhsz.png','https://emhsz.com/',9999,1704193937),('emirates-post','Emirates Post','','(971) /600 599999','https://cdn.parcelpanel.com/assets/common/images/express/emirates-post.png','https://emiratespost.ae/Portal/Track?TrackingNumber=******&locale=en-us',219,1704193937),('emons','Emons','','','https://cdn.parcelpanel.com/assets/common/images/express/emons.png','https://emons.com/tracking',9999,1704193937),('empsexpress','EMPS Express','','+86 (755) 36620359','https://cdn.parcelpanel.com/assets/common/images/express/empsexpress.png','http://www.empsexpress.com/IrobotBox/TrackingNoSerach/Index.aspx?TrackingNo=******',9999,1704193937),('ems-post','EMS','','','https://cdn.parcelpanel.com/assets/common/images/express/ems-post.png','https://www.ems.post/en/global-network/tracking',9999,1704193937),('envfast','EnvFast','','','https://cdn.parcelpanel.com/assets/common/images/express/envfast.png','https://envfast.com/ver-tracking/',9999,1704193937),('envialia','Envialia','','+34 902400909','https://cdn.parcelpanel.com/assets/common/images/express/envialia.png','http://www.envialia.com/tracking/',195,1704193937),('epacket','ePacket','','+86 11183','https://cdn.parcelpanel.com/assets/common/images/express/epacket.png','http://www.ems.com.cn/mailtracking/you_jian_cha_xun.html',9999,1704193937),('eparcel-kr','eParcel Korea','','+822-2664-4032','https://cdn.parcelpanel.com/assets/common/images/express/eparcel-kr.png','http://eparcel.kr',216,1704193937),('equick-cn','Equick','','4007066078','https://cdn.parcelpanel.com/assets/common/images/express/equick-cn.png','http://www.equick.cn/F10003.aspx',71,1704193937),('eretail','eRetail Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/eretail.png','http://eretail.amservices.net.au:8080/parceltracker.aspx',9999,1704193937),('eritrea-post','Eritrea Post','','','https://cdn.parcelpanel.com/assets/common/images/express/eritrea-post.png','http://www.eriposta.com/',9999,1704193937),('esnad','ESNAD Express','','920034000','https://cdn.parcelpanel.com/assets/common/images/express/esnad.png','https://www.esnadexpress.com/',9999,1704193937),('espeedpost','Espeedpost','','400 000 8105','https://cdn.parcelpanel.com/assets/common/images/express/espeedpost.png','http://www.espeedpost.com/html-tracking.html?trackingnumber=******#trackingresult',9999,1704193937),('espost','Espost','','917558886','https://cdn.parcelpanel.com/assets/common/images/express/espost.png','http://www.espost.es/track',9999,1704193937),('estafetausa','Estafeta USA','','1 (866) 518-6600','https://cdn.parcelpanel.com/assets/common/images/express/estafetausa.png','https://estafetausa.com/',38,1704193937),('estes','Estes','','+1-886-378-3748','https://cdn.parcelpanel.com/assets/common/images/express/estes.png','http://www.estes-express.com/WebApp/ShipmentTracking/MainServlet',9999,1704193937),('eteenlog','ETEEN','','+8618617131682','https://cdn.parcelpanel.com/assets/common/images/express/eteenlog.png','http://eteenlog.com/',9999,1704193937),('ethiopia-post','Ethiopia Post','','+ 251 011 515 20 72','https://cdn.parcelpanel.com/assets/common/images/express/ethiopia-post.png','http://globaltracktrace.ptc.post/gtt.web/',9999,1704193937),('etotal','eTotal','','+86 020 83036431/83702521','https://cdn.parcelpanel.com/assets/common/images/express/etotal.png','http://www.e-total.com/index.php/express.html',9999,1704193937),('etower','etower','','','https://cdn.parcelpanel.com/assets/common/images/express/etower.png','',9999,1704193937),('ets-express','ETS Express','','+86 400-879-6597','https://cdn.parcelpanel.com/assets/common/images/express/ets-express.png','http://www.ets-express.com/Home/Index/guiji.html',9999,1704193937),('euasia','Euasia Express','','088-668-1277','https://cdn.parcelpanel.com/assets/common/images/express/euasia.png','http://www.euasia.eu',9999,1704193937),('eurodis','Eurodis','','','https://cdn.parcelpanel.com/assets/common/images/express/eurodis.png','https://eurodis.com/track-trace',9999,1704193937),('ewe','EWE Global Express','','+86 21 55961727','https://cdn.parcelpanel.com/assets/common/images/express/ewe.png','https://www.ewe.com.au/html/track.html?cno=******#track-results',9999,1704193937),('exapaq','DPD France (formerly exapaq)','','+33 (0)1 55 35 02 80','https://cdn.parcelpanel.com/assets/common/images/express/exapaq.png','https://www.dpd.fr/trace/******',72,1704193937),('exelot','Exelot','','','https://cdn.parcelpanel.com/assets/common/images/express/exelot.png','https://my.exelot.com/public/track/',193,1704193937),('expeditors','Expeditors','','+1206-674-3400','https://cdn.parcelpanel.com/assets/common/images/express/expeditors.png','http://expo.expeditors.com/expo/ExpoReport/SQGuestList.jsp',9999,1704193937),('express-dy','DaoExpress','','','https://cdn.parcelpanel.com/assets/common/images/express/express-dy.png','http://www.express-dy.com/track.html',9999,1704193937),('express-lj','Express LJ','','','https://cdn.parcelpanel.com/assets/common/images/express/express-lj.png','http://express-lj.com/track.html',9999,1704193937),('expresscourierintl','Express Courier','','','https://cdn.parcelpanel.com/assets/common/images/express/expresscourierintl.png','https://expresscourierintl.com/tracking-results',9999,1704193937),('expressone','Express One','','','https://cdn.parcelpanel.com/assets/common/images/express/expressone.png','https://tracking.expressone.hu/',9999,1704193937),('eyoupost','Eyou800','','+86 400 000 9961','https://cdn.parcelpanel.com/assets/common/images/express/eyoupost.png','',9999,1704193937),('fafalux','fafalux','','','https://cdn.parcelpanel.com/assets/common/images/express/fafalux.png','http://www.fafalux.vip/',9999,1704193937),('famiport','Famiport','','(03)2550119','https://cdn.parcelpanel.com/assets/common/images/express/famiport.png','https://ecfme.fme.com.tw/fmedcfpwebv2/index.aspx',9999,1704193937),('far800','Far International Logistics','','0571-28121835','https://cdn.parcelpanel.com/assets/common/images/express/far800.png','https://www.far800.com/',218,1704193937),('faroe-islands-post','Faroe Islands Post','','+298 34 60 00','https://cdn.parcelpanel.com/assets/common/images/express/faroe-islands-post.png','https://www.posta.fo/search?cc=******',9999,1704193937),('fast-house-us','Fast Horse (US)','','','https://cdn.parcelpanel.com/assets/common/images/express/fast-house-us.png','https://us.fh.express/pc/search?orderNo=******',9999,1704193937),('fastdespatch','Fast Despatch Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/fastdespatch.png','https://fastdespatch.com/track',169,1704193937),('fastgo','Fastgo','','+86 4008863278','https://cdn.parcelpanel.com/assets/common/images/express/fastgo.png','http://www.fastgo.com.au/index/index/logquery?order_sn=******&type=1',9999,1704193937),('fastrak-services','Fastrak Services','','+66 (2) 710-2900','https://cdn.parcelpanel.com/assets/common/images/express/fastrak-services.png','http://www.fastrak.co.th/',9999,1704193937),('fastway-au','Aramex Australia(Fastway Australia)','','+61 (0) 2 9737 8288','https://cdn.parcelpanel.com/assets/common/images/express/fastway-au.png','https://www.aramex.com.au/tools/track?l=******',92,1704193937),('fastway-ie','Fastway Ireland','','+353 1 4242 900','https://cdn.parcelpanel.com/assets/common/images/express/fastway-ie.png','http://www.fastway.ie/courier-services/track-your-parcel?l=******',207,1704193937),('fastway-nz','Fastway New Zealand','','+64 (09) 634 3704','https://cdn.parcelpanel.com/assets/common/images/express/fastway-nz.png','https://www.fastway.co.nz/tools/track/',216,1704193937),('fastway-za','Fastway South Africa','','','https://cdn.parcelpanel.com/assets/common/images/express/fastway-za.png','http://www.fastway.co.za/our-services/track-your-parcel',219,1704193937),('fb56','China Railway Flying Leopard','','400-000-5566','https://cdn.parcelpanel.com/assets/common/images/express/fb56.png','http://www.fb56.com/',9999,1704193937),('fbb','FAST BEE','','86-18206040889','https://cdn.parcelpanel.com/assets/common/images/express/fbb.png','http://www.xffbb.com',9999,1704193937),('fd-express','FD Express','','+86 0755-22225656','https://cdn.parcelpanel.com/assets/common/images/express/fd-express.png','http://fd.kingtrans.cn//WebTrack',9999,1704193937),('fedex','FedEx','','+1 800 247 4747','https://cdn.parcelpanel.com/assets/common/images/express/fedex.png','https://www.fedex.com/fedextrack/?trknbr=******',27,1704193937),('fedex-fims','Fedex FIMS','','','https://cdn.parcelpanel.com/assets/common/images/express/fedex-fims.png','http://mailviewrecipient.fedex.com/recip_package_summary.aspx?PostalID=******',9999,1704193937),('fetchr','Fetchr','','+971-4801-8100','https://cdn.parcelpanel.com/assets/common/images/express/fetchr.png','https://track.fetchr.us/',9999,1704193937),('fgmailconnect','fgmailconnect','','','https://cdn.parcelpanel.com/assets/common/images/express/fgmailconnect.png','https://track.fgmailconnect.co.nz/?id=******',9999,1704193937),('fietskoeriers','fietskoeriers','','','https://cdn.parcelpanel.com/assets/common/images/express/fietskoeriers.png','',9999,1704193937),('fiji-post','Fiji Post','','(63) 3302022','https://cdn.parcelpanel.com/assets/common/images/express/fiji-post.png','http://www.postfiji.com.fj/pages.cfm/services/track-trace/',9999,1704193937),('finalmilespros','Final Miles Pros','','','https://cdn.parcelpanel.com/assets/common/images/express/finalmilespros.png','https://finalmilespros.com/',9999,1704193937),('finland-posti','Finland Post - Posti','','358 200 77000','https://cdn.parcelpanel.com/assets/common/images/express/finland-posti.png','https://www.posti.fi/private/tracking/#/?lang=en',117,1704193937),('first-flight','First Flight','','+91 022-39576666','https://cdn.parcelpanel.com/assets/common/images/express/first-flight.png','https://firstflight.net/domestictracking.php',9999,1704193937),('firstflightme','First Flight Couriers','','600 54 54 56','https://cdn.parcelpanel.com/assets/common/images/express/firstflightme.png','http://firstflightme.com/Track-Shipment',9999,1704193937),('firstline56','First Line','','0755-23722446','https://cdn.parcelpanel.com/assets/common/images/express/firstline56.png','http://www.firstline56.com/',75,1704193937),('firstmile','FirstMile','','888-993-8594','https://cdn.parcelpanel.com/assets/common/images/express/firstmile.png','https://track.firstmile.com/',9999,1704193937),('flashexpress','Flash Express','','','https://cdn.parcelpanel.com/assets/common/images/express/flashexpress.png','https://www.flashexpress.co.th/tracking/?se=******',88,1704193937),('flashexpress-my','Flash Express MY','','','https://cdn.parcelpanel.com/assets/common/images/express/flashexpress-my.png','https://www.flashexpress.my/fle/tracking',9999,1704193937),('flashexpress-ph','FlashExpress PH','','(02) 8539-4002','https://cdn.parcelpanel.com/assets/common/images/express/flashexpress-ph.png','https://www.flashexpress.ph/',218,1704193937),('flow-io','Flow Commerce','','','https://cdn.parcelpanel.com/assets/common/images/express/flow-io.png','https://track.flow.io/index.html?number=******',9999,1704193937),('flysman','FLYSMAN','','（0755）8344-8000','https://cdn.parcelpanel.com/assets/common/images/express/flysman.png','http://www.flysman.com/',9999,1704193937),('flytexpress','Flyt Express','','400-888-4003','https://cdn.parcelpanel.com/assets/common/images/express/flytexpress.png','http://www.flytexpress.com/Home/LogisticsTracking#orderIds=******',63,1704193937),('flywayex','Flyway Express','','0064 9 948 2780','https://cdn.parcelpanel.com/assets/common/images/express/flywayex.png','http://www.flywayex.com/cgi-bin/GInfo.dll?DispInfo&w=flyway&nid=22',9999,1704193937),('fmx','eFMX','','','https://cdn.parcelpanel.com/assets/common/images/express/fmx.png','https://www.fmx.asia/cn/result_detail.php?p=1&conno=******',9999,1704193937),('fourseasonsfly','fourseasonsfly','','','https://cdn.parcelpanel.com/assets/common/images/express/fourseasonsfly.png','http://www.fourseasonsfly.net/tracking',9999,1704193937),('fragt','Danske Fragtmænd','','','https://cdn.parcelpanel.com/assets/common/images/express/fragt.png','https://trace.fragt.dk/#/trackTrace/******',9999,1704193937),('frayun','Frayun','','','https://cdn.parcelpanel.com/assets/common/images/express/frayun.png','https://www.frayun.com/tracking.html',9999,1704193937),('freightquote','Freightquote','','','https://cdn.parcelpanel.com/assets/common/images/express/freightquote.png','https://www.freightquote.com/track-shipment/?bol=******',9999,1704193937),('ftd','FTD Express','','09-4436935','https://cdn.parcelpanel.com/assets/common/images/express/ftd.png','http://www.ftd.nz/query/',9999,1704193937),('fujexp','FUJIE Express','','','https://cdn.parcelpanel.com/assets/common/images/express/fujexp.png','http://www.fujexp.com:8082/trackIndex.htm',9999,1704193937),('fulfillmen','Fulfillmen','','+86 752-2313067','https://cdn.parcelpanel.com/assets/common/images/express/fulfillmen.png','https://www.fulfillmen.com/tracking-links/',9999,1704193937),('gaopost','Gao Post','','020-66687715','https://cdn.parcelpanel.com/assets/common/images/express/gaopost.png','http://www.gaopost.com:8082/trackIndex.htm',9999,1704193937),('gati-kwe','Gati-KWE','','+91 1800-180-4284','https://cdn.parcelpanel.com/assets/common/images/express/gati-kwe.png','https://www.gati.com/track-by-docket/',211,1704193937),('gaticn','GATI Courier','','040-71204284','https://cdn.parcelpanel.com/assets/common/images/express/gaticn.png','http://www.gaticn.com/site/tracking.html',9999,1704193937),('gdex','GDEX','','+60 03-77872222','https://cdn.parcelpanel.com/assets/common/images/express/gdex.png','https://web3.gdexpress.com/official/iframe/etracking_v4.php?input=******&choice=cnGdex',100,1704193937),('gdwse','WSE Logistics','','+86 4008-456-856','https://cdn.parcelpanel.com/assets/common/images/express/gdwse.png','http://www.gdwse.com/',9999,1704193937),('geis-cz','Geis CZ','','','https://cdn.parcelpanel.com/assets/common/images/express/geis-cz.png','https://www.geis-group.cz/en/tracking-tracing?p=******',9999,1704193937),('geis-pl','Geis Poland','','','https://cdn.parcelpanel.com/assets/common/images/express/geis-pl.png','https://www.geis.pl/pl/sledzenie-przesylki?packNumber=******',9999,1704193937),('gel-express','GEL Express','','+49 02154 - 9467 -0','https://cdn.parcelpanel.com/assets/common/images/express/gel-express.png','https://srv4.thalmaier.de/gel/send/EN-en/TrackingAndTracing.aspx?sp=1&snr=******&submit.x=13&submit.y=7',9999,1704193937),('geodis','Geodis','','','https://cdn.parcelpanel.com/assets/common/images/express/geodis.png','http://www.geodis.com/',79,1704193937),('georgian-post','Georgia Post','','(995) 2 24 09 09','https://cdn.parcelpanel.com/assets/common/images/express/georgian-post.png','http://www.gpost.ge/',215,1704193937),('geswl','Yisu International Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/geswl.png','https://www.geswl.com/home/en/index.asp',108,1704193937),('ghana-post','Ghana Post','','030-266-8619','https://cdn.parcelpanel.com/assets/common/images/express/ghana-post.png','https://tools.v2.ghanapost.com.gh/toolsv1/',9999,1704193937),('ghn','Giao Hàng Nhanh','','18001201','https://cdn.parcelpanel.com/assets/common/images/express/ghn.png','https://track.ghn.vn/order/tracking?code=******',9999,1704193937),('giantpost','GIANT EXPRESS','','03 9544 6495 04 4977 6168','https://cdn.parcelpanel.com/assets/common/images/express/giantpost.png','http://www.giantpost.com.au/',9999,1704193937),('gibraltar-post','Gibraltar Post','','+350 200 75714','https://cdn.parcelpanel.com/assets/common/images/express/gibraltar-post.png','https://www.royalgibraltar.post/track-and-trace/',9999,1704193937),('global-leader','Global Leader','','','https://cdn.parcelpanel.com/assets/common/images/express/global-leader.png','http://qqldex.nextsls.com/tracking#******',9999,1704193937),('global-routers','Echindia','','+9172 9095 9131','https://cdn.parcelpanel.com/assets/common/images/express/global-routers.png','http://www.globalrouters.cn/',9999,1704193937),('globegistics','Globegistics Inc.','','+1 516-479-6671','https://cdn.parcelpanel.com/assets/common/images/express/globegistics.png','https://us.mytracking.net/globegistics/portal/ExternalTracking.aspx?track=******',206,1704193937),('gls','GLS','','44 247 621 3455','https://cdn.parcelpanel.com/assets/common/images/express/gls.png','https://gls-group.eu/EU/en/parcel-tracking?match=******',112,1704193937),('gls-canada','GLS Canada','','','https://cdn.parcelpanel.com/assets/common/images/express/gls-canada.png','https://gls-canada.com/en/express/tracking/result',9999,1704193937),('gls-de','GLS Germany','','','https://cdn.parcelpanel.com/assets/common/images/express/gls-de.png','https://www.gls-pakete.de/',9999,1704193937),('gls-es','GLS Spain','','','https://cdn.parcelpanel.com/assets/common/images/express/gls-es.png','https://mygls.gls-spain.es/parcel-tracking',178,1704193937),('gls-hr','GLS(HR)','','','https://cdn.parcelpanel.com/assets/common/images/express/gls-hr.png','https://gls-group.eu/HR/en/home/',9999,1704193937),('gls-italy','GLS Italy','','+39 199 151188','https://cdn.parcelpanel.com/assets/common/images/express/gls-italy.png','https://gls-group.com/IT/en/home',60,1704193937),('gls-pl','GLS Poland','','','https://cdn.parcelpanel.com/assets/common/images/express/gls-pl.png','https://gls-group.eu/PL/pl/home',9999,1704193937),('gls-sk','GLS Slovakia','','','https://cdn.parcelpanel.com/assets/common/images/express/gls-sk.png','https://gls-group.eu/SK/en/parcel-tracking.html?match=******',9999,1704193937),('gls-us','GLS US','','+1-800-322-5555','https://cdn.parcelpanel.com/assets/common/images/express/gls-us.png','https://www.gls-us.com/Tracking/PackageDetail',153,1704193937),('gls-zip','GLS(PostalCode)','','','https://cdn.parcelpanel.com/assets/common/images/express/gls-zip.png','https://gls-group.eu/EU/en/parcel-tracking',9999,1704193937),('gmsworldwide','GMS Worldwide Express','','','https://cdn.parcelpanel.com/assets/common/images/express/gmsworldwide.png','https://www.gmsworldwide.com/',9999,1704193937),('goex','Go Express','','','https://cdn.parcelpanel.com/assets/common/images/express/goex.png','http://www.goex.co.nz/',9999,1704193937),('gofly','Gofly','','+86 131 4383 0725','https://cdn.parcelpanel.com/assets/common/images/express/gofly.png','http://goflyi.com/?page_id=35809',9999,1704193937),('goglobalpost','Goglobal Post','','','https://cdn.parcelpanel.com/assets/common/images/express/goglobalpost.png','https://www.goglobalpost.com/track-detail/?t=******',9999,1704193937),('gogo-xpress','GOGO Xpress','','','https://cdn.parcelpanel.com/assets/common/images/express/gogo-xpress.png','https://www.gogoxpress.com',97,1704193937),('gojavas','GoJavas','','0124-4405730','https://cdn.parcelpanel.com/assets/common/images/express/gojavas.png','http://gojavas.com/docket_details.php?pop=docno&docno=******',9999,1704193937),('good-express','Good Express','','','https://cdn.parcelpanel.com/assets/common/images/express/good-express.png','https://www.goodexpress.com.cn/',9999,1704193937),('gotofreight','Gotofreight','','0755-25904049','https://cdn.parcelpanel.com/assets/common/images/express/gotofreight.png','https://gotofreight.com/',9999,1704193937),('grandslamexpress','Grand Slam Express','','+91 22 2850 9877','https://cdn.parcelpanel.com/assets/common/images/express/grandslamexpress.png','http://icms.grandslamexpress.in/webtracking/WebTracking.aspx',9999,1704193937),('greece-post','ELTA Hellenic Post','','(+30) 800-11-82000','https://cdn.parcelpanel.com/assets/common/images/express/greece-post.png','https://www.elta.gr/en/track',136,1704193937),('greyhound','Greyhound','','+1-800-739-5020','https://cdn.parcelpanel.com/assets/common/images/express/greyhound.png','http://www.shipgreyhound.com/e/sitepages/trackapackage.aspx',9999,1704193937),('grupoampm','Grupo ampm','','55 5061-6800','https://cdn.parcelpanel.com/assets/common/images/express/grupoampm.png','http://www.grupoampm.com/rastreo/',182,1704193937),('gti','GTI','','0755-28213860','https://cdn.parcelpanel.com/assets/common/images/express/gti.png','http://www.gti56.com/',154,1704193937),('gttexpress','GTTEXPRESS','','1-929-666-1606 1-718-395-8077','https://cdn.parcelpanel.com/assets/common/images/express/gttexpress.png','http://gttexpress.com/',9999,1704193937),('guangdongyongbang','Yong Bang','','8620-86195130','https://cdn.parcelpanel.com/assets/common/images/express/guangdongyongbang.png','http://www.guangdongyongbang.com/',9999,1704193937),('guangyy56','GYY','','','https://cdn.parcelpanel.com/assets/common/images/express/guangyy56.png','http://www.guangyy56.com/',9999,1704193937),('guernsey-post','Guernsey Post','','01481 711720','https://cdn.parcelpanel.com/assets/common/images/express/guernsey-post.png','https://www.guernseypost.com/track-trace',9999,1704193937),('gw-world','Gebrüder Weiss Germany','','','https://cdn.parcelpanel.com/assets/common/images/express/gw-world.png','https://developer.my.gw-world.com/home',9999,1704193937),('gzbtygj','HONGHAI SUPPLY CHAIN','','','https://cdn.parcelpanel.com/assets/common/images/express/gzbtygj.png','http://www.gzbtygj.com/track.aspx',9999,1704193937),('gzxdgyl','XiangDao Supply Chain','','','https://cdn.parcelpanel.com/assets/common/images/express/gzxdgyl.png','http://gzxdgyl.com/',9999,1704193937),('happy-post','Happy Post','','','https://cdn.parcelpanel.com/assets/common/images/express/happy-post.png','https://happy-post.com/en/track/',219,1704193937),('hccd','CEL HCCD','','','https://cdn.parcelpanel.com/assets/common/images/express/hccd.png','http://hccd.rtb56.com/track_query.aspx',9999,1704193937),('hct','HCT Express','','+886 412-8866','https://cdn.parcelpanel.com/assets/common/images/express/hct.png','https://www.hct.com.tw/Search/SearchGoods_n.aspx',217,1704193937),('hdc-express','HD Express','','','https://cdn.parcelpanel.com/assets/common/images/express/hdc-express.png','http://www.hdc-express.com/#/user/login/redirect=',9999,1704193937),('hellmann','Hellmann','','','https://cdn.parcelpanel.com/assets/common/images/express/hellmann.png','https://portal.emea.hellmann.net/tracking-public/search/#/road/******',9999,1704193937),('hepsijet','HepsiJET','','','https://cdn.parcelpanel.com/assets/common/images/express/hepsijet.png','https://www.hepsijet.com/gonderi-takibi/******',9999,1704193937),('hermes','Hermes','','+44 844 543 7000','https://cdn.parcelpanel.com/assets/common/images/express/hermes.png','https://www.hermesworld.com/en/our-services/distribution/parcel-delivery/parcel-tracking/?trackingNo=******',33,1704193937),('hermes-borderguru','Hermes Borderguru','','','https://cdn.parcelpanel.com/assets/common/images/express/hermes-borderguru.png','https://tracking.borderguru.com/id/******',215,1704193937),('hermes-de','Hermes Germany','','+49 1806-311211','https://cdn.parcelpanel.com/assets/common/images/express/hermes-de.png','https://www.myhermes.de/empfangen/sendungsverfolgung/sendungsinformation#******',76,1704193937),('hermes-uk','Evri (Hermes UK)','','+44 330 333 6556','https://cdn.parcelpanel.com/assets/common/images/express/hermes-uk.png','https://www.evri.com/track/parcel/******/details',58,1704193937),('hfd','HFD','','','https://cdn.parcelpanel.com/assets/common/images/express/hfd.png','https://www.e-post.co.il/',168,1704193937),('hhexp','Hua Han Logistics','','+86-0755-82518733','https://cdn.parcelpanel.com/assets/common/images/express/hhexp.png','http://www.hhddb.com/default/index/get-track-detail',45,1704193937),('hhyexpress','HHY Express','','15920162131','https://cdn.parcelpanel.com/assets/common/images/express/hhyexpress.png','http://121.36.64.162:8082/trackIndex.htm',9999,1704193937),('hi-life','Hi Life','','','https://cdn.parcelpanel.com/assets/common/images/express/hi-life.png','http://www.hilife.com.tw/',9999,1704193937),('hivewms','HiveWMS','','+49 7251 72332','https://cdn.parcelpanel.com/assets/common/images/express/hivewms.png','www.hivewms.com',9999,1704193937),('hjwl','HJWL','','','https://cdn.parcelpanel.com/assets/common/images/express/hjwl.png','http://www.hjwl.ltd/login',9999,1704193937),('hjyt56','HJYT Express','','','https://cdn.parcelpanel.com/assets/common/images/express/hjyt56.png','http://120.78.64.88:8082/trackIndex.htm',219,1704193937),('hkdexpress','HKD','','','https://cdn.parcelpanel.com/assets/common/images/express/hkdexpress.png','http://www.hkdexpress.net/index.php?m=track&a=index',9999,1704193937),('hkems','Cloud mail cross border Express','','15919965201','https://cdn.parcelpanel.com/assets/common/images/express/hkems.png','http://134.175.174.238:8082/trackIndex.htm',9999,1704193937),('hlihang-express','Hlihang Express','','','https://cdn.parcelpanel.com/assets/common/images/express/hlihang-express.png','http://www.hhjy56.cn',188,1704193937),('hnfywl','Hnfywl','','+86 400-6673-777','https://cdn.parcelpanel.com/assets/common/images/express/hnfywl.png','http://www.hnfywl.com/search.asp',9999,1704193937),('holisol','Holisol','','','https://cdn.parcelpanel.com/assets/common/images/express/holisol.png','https://www.holisoldelivery.com/api/tracking/TrackAwb?awb=******',9999,1704193937),('honamlogis','Woori Courier','','','https://cdn.parcelpanel.com/assets/common/images/express/honamlogis.png','http://www.honamlogis.co.kr/page/index.php?pid=tracking_number&SLIP_BARCD=******',9999,1704193937),('hong-kong-post','Hong Kong Post','','852 2921 2222','https://cdn.parcelpanel.com/assets/common/images/express/hong-kong-post.png','https://www.hongkongpost.hk/sc/mail_tracking/index.html',215,1704193937),('honold','Honold Germany','','','https://cdn.parcelpanel.com/assets/common/images/express/honold.png','https://tt.honold.net/tracking/anon/anondetail.seam?colliScanNumber=******',9999,1704193937),('hotwms','HOTWMS','','','https://cdn.parcelpanel.com/assets/common/images/express/hotwms.png','http://www.hotwms.com/trace.html',9999,1704193937),('hound','hound','','','https://cdn.parcelpanel.com/assets/common/images/express/hound.png','http://www.hound-express.com/',208,1704193937),('hoyangexpress','HoYang Express','','','https://cdn.parcelpanel.com/assets/common/images/express/hoyangexpress.png','http://www.hoyangexpress.com/',216,1704193937),('hplogistics','HP Express','','+86 15878389479','https://cdn.parcelpanel.com/assets/common/images/express/hplogistics.png','http://www.hplogistics.com.cn/',9999,1704193937),('hrparcel','HR Parcel','','','https://cdn.parcelpanel.com/assets/common/images/express/hrparcel.png','https://www.hrparcel.com/',9999,1704193937),('hrvatska-posta','Croatia Post','','+(385) 072 303 304','https://cdn.parcelpanel.com/assets/common/images/express/hrvatska-posta.png','https://www.posta.hr/tracktrace.aspx?tracklng=en&broj=******',9999,1704193937),('ht56','Hong Tai','','400-8607777','https://cdn.parcelpanel.com/assets/common/images/express/ht56.png','http://www.ht56.com/plus/order.php',9999,1704193937),('htkjwl','HuanTong Express','','','https://cdn.parcelpanel.com/assets/common/images/express/htkjwl.png','http://47.106.83.127:8086/xms/client/wnoView.htm',9999,1704193937),('huanshid','Huanshid','','','https://cdn.parcelpanel.com/assets/common/images/express/huanshid.png','http://www.huanshid.com/',212,1704193937),('huaxiexpress','Hua Xi','','18680667881','https://cdn.parcelpanel.com/assets/common/images/express/huaxiexpress.png','http://www.huaxiexpress.com/',9999,1704193937),('huayu','Hua Yu','','','https://cdn.parcelpanel.com/assets/common/images/express/huayu.png','http://www.huayu-ex.com/',9999,1704193937),('huidaex','Huida Express','','1-347-399-8336','https://cdn.parcelpanel.com/assets/common/images/express/huidaex.png','http://huidaex.com/tracking?field_huida_tracking_number_value=******',9999,1704193937),('huif56','Hui Feng Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/huif56.png','https://www.huif56.com/chaxun.php?act=search',9999,1704193937),('huilin56','HuiLin56','','400-921-8889','https://cdn.parcelpanel.com/assets/common/images/express/huilin56.png','http://www.huilin56.com/',9999,1704193937),('huilogistics','Hui Logistics','','+86 0755-84742220','https://cdn.parcelpanel.com/assets/common/images/express/huilogistics.png','http://wms.fulfillment-cn.com/Manage/WebManage/Inquire.aspx?txtID=No',9999,1704193937),('huisenky','HuiSenKy','','400-921-8889','https://cdn.parcelpanel.com/assets/common/images/express/huisenky.png','http://www.huisenky.com/',9999,1704193937),('hunterexpress','Hunter Express','','','https://cdn.parcelpanel.com/assets/common/images/express/hunterexpress.png','https://www.hunterexpress.com.au/tracking/',9999,1704193937),('hxgj56','Hanxuan international express','','020-36481329','https://cdn.parcelpanel.com/assets/common/images/express/hxgj56.png','',9999,1704193937),('hzchgj','CH EXPRESS','','0571-85096381','https://cdn.parcelpanel.com/assets/common/images/express/hzchgj.png','http://www.hzchgj.com/',9999,1704193937),('i-parcel','I-parcel','','+44 (0) 1342 315 455','https://cdn.parcelpanel.com/assets/common/images/express/i-parcel.png','https://tracking.i-parcel.com/?TrackingNumber=******',9999,1704193937),('iceland-post','Iceland Post','','+354 5801000','https://cdn.parcelpanel.com/assets/common/images/express/iceland-post.png','https://www.postur.is/en/individuals/domestic-parcels/track-shipment/?TrackingNumber=******',9999,1704193937),('ics-ca','ICS courier','','','https://cdn.parcelpanel.com/assets/common/images/express/ics-ca.png','https://www.icscourier.ca/',140,1704193937),('icumulus','iCumulus Global Express','','','https://cdn.parcelpanel.com/assets/common/images/express/icumulus.png','https://tracking.icumulus.cloud/Tracking/******',9999,1704193937),('idada56','Dada logistic','','400-098-5656','https://cdn.parcelpanel.com/assets/common/images/express/idada56.png','http://www.idada56.com/track.html',9999,1704193937),('idexpress','IDEX','','+86 400 880 9976','https://cdn.parcelpanel.com/assets/common/images/express/idexpress.png','http://www.idexpress.com.cn/cgi-bin/GInfo.dll?EmmisTrack',9999,1704193937),('ids-logistik','IDS Germany','','','https://cdn.parcelpanel.com/assets/common/images/express/ids-logistik.png','https://www.ids-logistik.de/de/sendungsverfolgung?trackingNumber=******&zipCode=***',9999,1704193937),('iepost','IEPost','','020-3147-7487','https://cdn.parcelpanel.com/assets/common/images/express/iepost.png','http://www.ie-post.com/',9999,1704193937),('igcaexpress','Igcaexpress','','+1 604 620 9587','https://cdn.parcelpanel.com/assets/common/images/express/igcaexpress.png','http://www.igcaexpress.com/',9999,1704193937),('imexglobalsolutions','IMEX Global Solutions','','+001-888-795-1842','https://cdn.parcelpanel.com/assets/common/images/express/imexglobalsolutions.png','http://dm.mytracking.net/IMEX/track/TrackDetails.aspx?t=******',9999,1704193937),('imile','iMile','','+ 971600566221','https://cdn.parcelpanel.com/assets/common/images/express/imile.png','https://www.imile.com/',181,1704193937),('imlb2c','IML Logistics','','0755-61218688','https://cdn.parcelpanel.com/assets/common/images/express/imlb2c.png','https://iml.ru/en/status',9999,1704193937),('imlexpres','IML','','18682141108','https://cdn.parcelpanel.com/assets/common/images/express/imlexpres.png','http://www.imlexpress.cn/',9999,1704193937),('india-post','India Post','','91 1800 11 2011','https://cdn.parcelpanel.com/assets/common/images/express/india-post.png','https://www.indiapost.gov.in/_layouts/15/DOP.Portal.Tracking/TrackConsignment.aspx',175,1704193937),('indonesia-post','Indonesia Post','','','https://cdn.parcelpanel.com/assets/common/images/express/indonesia-post.png','https://www.posindonesia.co.id/en/tracking',213,1704193937),('inposdom','Dominican Post','','(809)/534-5838','https://cdn.parcelpanel.com/assets/common/images/express/inposdom.png','http://www.inposdom.gob.do/',9999,1704193937),('inpost-paczkomaty','InPost','','+48 722 444 000 / +48 746 600 000','https://cdn.parcelpanel.com/assets/common/images/express/inpost-paczkomaty.png','https://inpost.pl/sledzenie-przesylek?number=******',128,1704193937),('intelcom','intelcom','','','https://cdn.parcelpanel.com/assets/common/images/express/intelcom.png','https://intelcomexpress.com/en/tracking/',208,1704193937),('international-seur','Seur','','+34 902101010','https://cdn.parcelpanel.com/assets/common/images/express/international-seur.png','https://www.seur.com/livetracking/pages/seguimiento-online-busqueda.do?faces-redirect=true',145,1704193937),('interparcel-au','Interparcel Au','','1300 006 031','https://cdn.parcelpanel.com/assets/common/images/express/interparcel-au.png','https://au.interparcel.com/tracking/******',218,1704193937),('interparcel-uk','Interparcel Uk','','0333 3000 700','https://cdn.parcelpanel.com/assets/common/images/express/interparcel-uk.png','https://uk.interparcel.com/tracking/******',9999,1704193937),('intexpress','Intexpress','','011-973 2867, 011-973 3566','https://cdn.parcelpanel.com/assets/common/images/express/intexpress.png','http://www.internetexpress.co.za/Home/TrackWBOnline',9999,1704193937),('iposita-rwanda','Rwanda Post','','','https://cdn.parcelpanel.com/assets/common/images/express/iposita-rwanda.png','http://i-posita.rw/track-trace-gtt/',9999,1704193937),('iran-post','Iran Post','','88532387​','https://cdn.parcelpanel.com/assets/common/images/express/iran-post.png','http://post.ir/',9999,1704193937),('israel-post','Israel Post','','+(972) 2 629 0691','https://cdn.parcelpanel.com/assets/common/images/express/israel-post.png','https://mypost.israelpost.co.il/itemtrace',219,1704193937),('isunnyway','Sunnyway','','','https://cdn.parcelpanel.com/assets/common/images/express/isunnyway.png','http://www.isunnyway.com',9999,1704193937),('italy-sda','Italy SDA','','+39 199 113366','https://cdn.parcelpanel.com/assets/common/images/express/italy-sda.png','http://www.sda.it/SITO_SDA-WEB/dispatcher?id_ldv=******&invoker=home&LEN=ENG&execute2=ActionTracking.doGetTrackingHome&button=Go',56,1704193937),('ivory-coast-ems','Ivory Coast EMS','','​(225) 20 00 69 50 / 08 83 83 30','https://cdn.parcelpanel.com/assets/common/images/express/ivory-coast-ems.png','http://globaltracktrace.ptc.post/gtt.web/',9999,1704193937),('j-net','J-NET Express','','400-728-7156','https://cdn.parcelpanel.com/assets/common/images/express/j-net.png','http://www.j-net.cn/cms/index.php/page/track.html?number=******',207,1704193937),('jam-express','Jam Express','','+63 239 7502','https://cdn.parcelpanel.com/assets/common/images/express/jam-express.png','http://www.myjamexpress.com/',9999,1704193937),('jamaica-post','Jamaica Post','','(876) 922-9448','https://cdn.parcelpanel.com/assets/common/images/express/jamaica-post.png','https://jamaicapost.gov.jm/track-and-trace/',9999,1704193937),('janco','Janco Ecommerce','','+852 2575 7883','https://cdn.parcelpanel.com/assets/common/images/express/janco.png','https://track.jancoecommerce.com/cargotracking_ecom/itxp/xpop/xpordertrack?as_order_no=******',9999,1704193937),('jancoexpress','Janco Express','','(852) 3525 0826','https://cdn.parcelpanel.com/assets/common/images/express/jancoexpress.png','http://www.jancoexpress.com/',9999,1704193937),('janio','Janio Asia','','','https://cdn.parcelpanel.com/assets/common/images/express/janio.png','https://tracker.janio.asia/******',9999,1704193937),('japan-post','Japan Post','','+81 0570-046111','https://cdn.parcelpanel.com/assets/common/images/express/japan-post.png','https://trackings.post.japanpost.jp/services/srv/search/direct?reqCodeNo1=******&searchKind=S002&locale=en',183,1704193937),('jayeek','Jayeek','','+971 4 344 1112','https://cdn.parcelpanel.com/assets/common/images/express/jayeek.png','http://www.jayeek.com/index.html',9999,1704193937),('jayonexpress','Jayon Express (JEX)','','','https://cdn.parcelpanel.com/assets/common/images/express/jayonexpress.png','http://128.199.254.149/m/',9999,1704193937),('jc-express','深圳市晶晟国际物流','','','https://cdn.parcelpanel.com/assets/common/images/express/jc-express.png','',9999,1704193937),('jcex','JCEX','','400－887－1083','https://cdn.parcelpanel.com/assets/common/images/express/jcex.png','https://www.jcex.com/html/web/guijichaxun/index.html?nums=******',68,1704193937),('jch-exp','JCH','','','https://cdn.parcelpanel.com/assets/common/images/express/jch-exp.png','http://www.jch-exp.com:8082/trackIndex.htm',9999,1704193937),('jcsuda','Jcsuda','','0591-88034960','https://cdn.parcelpanel.com/assets/common/images/express/jcsuda.png','',9999,1704193937),('jcwexpress','JCW','','','https://cdn.parcelpanel.com/assets/common/images/express/jcwexpress.png','https://jcwexpress.com/tracking/',9999,1704193937),('jd','JD Express','','400-603-3600','https://cdn.parcelpanel.com/assets/common/images/express/jd.png','http://www.jdwl.com/order/search?waybillCodes=******',9999,1704193937),('jd-168','JD-168','','17702627260 03-3936660','https://cdn.parcelpanel.com/assets/common/images/express/jd-168.png','http://www.jd-168.com/',9999,1704193937),('jd-logistics','JD Logistics','','950616','https://cdn.parcelpanel.com/assets/common/images/express/jd-logistics.png','https://www.jdworldwide.com/',9999,1704193937),('jdiex','JDIEX','','626-689-0106','https://cdn.parcelpanel.com/assets/common/images/express/jdiex.png','https://www.jdiex.com/',9999,1704193937),('jdy','JINDOUYUN Logistics','','15521336586','https://cdn.parcelpanel.com/assets/common/images/express/jdy.png','http://www.szjdy.ltd/',9999,1704193937),('jersey-post','Jersey Post','','+441534616616','https://cdn.parcelpanel.com/assets/common/images/express/jersey-post.png','https://www.jerseypost.com/tools/track-trace/',9999,1704193937),('jet','J&T Express','','+62 021 8066 1888','https://cdn.parcelpanel.com/assets/common/images/express/jet.png','https://www.jet.co.id/track',193,1704193937),('jet-global','Jet Global Express','','(853) 2871 1286','https://cdn.parcelpanel.com/assets/common/images/express/jet-global.png','https://api.jetft-tracking.com/order',9999,1704193937),('jet-ship','Jet-Ship Worldwide','','','https://cdn.parcelpanel.com/assets/common/images/express/jet-ship.png','http://jet-ship.com/track.html',9999,1704193937),('jetlogistic','J&T International','','400-8256-356','https://cdn.parcelpanel.com/assets/common/images/express/jetlogistic.png','http://jetlogistic.com/logistics.html',131,1704193937),('jetstarexp','Jetstarexp','','020-36713719','https://cdn.parcelpanel.com/assets/common/images/express/jetstarexp.png','http://www.jetstarexp.cn/',9999,1704193937),('jiachenexpress','JIACHEN INTERNATIONAL','','','https://cdn.parcelpanel.com/assets/common/images/express/jiachenexpress.png','https://www.jiachenexpress.com/',9999,1704193937),('jiayi56','Jiayi Express','','400-631-9999','https://cdn.parcelpanel.com/assets/common/images/express/jiayi56.png','http://221.214.94.21:8088/aspx/ydcx_kh.aspx',9999,1704193937),('jieborne','Jieborne','','020-62630488','https://cdn.parcelpanel.com/assets/common/images/express/jieborne.png','http://www.jieborne.com/',9999,1704193937),('jingleexpressx','JingLe Express','','','https://cdn.parcelpanel.com/assets/common/images/express/jingleexpressx.png','http://www.jingleexpressx.com/logistics.html',9999,1704193937),('jne','jne','','021-50868880','https://cdn.parcelpanel.com/assets/common/images/express/jne.png','https://cekresi.jne.co.id/******',73,1704193937),('joeyco','JoeyCo','','(855) 909-0053','https://cdn.parcelpanel.com/assets/common/images/express/joeyco.png','https://www.joeyco.com/tracking/******',9999,1704193937),('joomlogistics','joomlogistics','','','https://cdn.parcelpanel.com/assets/common/images/express/joomlogistics.png','https://joomlogistics.com/track?id=******',9999,1704193937),('jordan-post','Jordan Post','','+(962)-6-4293000','https://cdn.parcelpanel.com/assets/common/images/express/jordan-post.png','http://www.jordanpost.com.jo/',9999,1704193937),('joying-box','JOYING BOX','','400-150-1188','https://cdn.parcelpanel.com/assets/common/images/express/joying-box.png','https://www.joyingbox.com/',9999,1704193937),('jrs-express','jrs-express','','(02) 8637-2066','https://cdn.parcelpanel.com/assets/common/images/express/jrs-express.png','https://www.jrs-express.com/Home/Tracking?Length=4#',9999,1704193937),('js-exp','JS EXPRESS','','400-0353-518','https://cdn.parcelpanel.com/assets/common/images/express/js-exp.png','http://www.js-exp.com/index.php?page=19',134,1704193937),('jssdt56','SDT','','','https://cdn.parcelpanel.com/assets/common/images/express/jssdt56.png','http://www.jssdt56.com/webOnline.html',9999,1704193937),('jt-express','J&T Express Vietnam','','19001088','https://cdn.parcelpanel.com/assets/common/images/express/jt-express.png','https://jtexpress.vn/vi/tracking?type=track&billcode=******',9999,1704193937),('jt-express-sg','J&T Express Singapore','','','https://cdn.parcelpanel.com/assets/common/images/express/jt-express-sg.png','https://www.jtexpress.sg/trackmyparcel',216,1704193937),('jt-express-th','J&T Express Thailand','','02-009-5678','https://cdn.parcelpanel.com/assets/common/images/express/jt-express-th.png','https://www.jtexpress.co.th',215,1704193937),('jtexpress','J&T Express China','','400-820-1666','https://cdn.parcelpanel.com/assets/common/images/express/jtexpress.png','http://www.jtexpress.com.cn/',9999,1704193937),('jtexpress-ae','J&T Express UAE','','800-568','https://cdn.parcelpanel.com/assets/common/images/express/jtexpress-ae.png','https://www.jtexpress.ae/trajectoryQuery?waybillNo=******&type=0',9999,1704193937),('jtexpress-my','J&T Express Malaysia','','','https://cdn.parcelpanel.com/assets/common/images/express/jtexpress-my.png','https://www.jtexpress.my/track.php?awbs=******',119,1704193937),('jtexpress-ph','J&T Express Philippines','','','https://cdn.parcelpanel.com/assets/common/images/express/jtexpress-ph.png','https://www.jtexpress.ph/index/query/gzquery.html',161,1704193937),('jtexpress-vn','jtexpress-vn','','19001088','https://cdn.parcelpanel.com/assets/common/images/express/jtexpress-vn.png','https://jtexpress.vn/track?billcodes=******&btn_track=',9999,1704193937),('jumstc','Jumstc','','40016-56580','https://cdn.parcelpanel.com/assets/common/images/express/jumstc.png','http://www.jumstc.com/',9999,1704193937),('jusdasr','JusdaSR','','','https://cdn.parcelpanel.com/assets/common/images/express/jusdasr.png','https://www.jusdasr.com/',9999,1704193937),('juxiex','JUXI EXPRESS','','021-60739366','https://cdn.parcelpanel.com/assets/common/images/express/juxiex.png','http://www.juxiex.com/',137,1704193937),('kahaexpress','Kaha Express','','','https://cdn.parcelpanel.com/assets/common/images/express/kahaexpress.png','https://www.kahaexpress.com/',9999,1704193937),('kaigenlogistics','Kaigenlogistics','','400-699-3396','https://cdn.parcelpanel.com/assets/common/images/express/kaigenlogistics.png','https://www.kaigenlogistics.com/',9999,1704193937),('kajie','Ka Jie','','','https://cdn.parcelpanel.com/assets/common/images/express/kajie.png','',9999,1704193937),('kangaroo-my','Kangaroo Worldwide Express','','603-5518 8228','https://cdn.parcelpanel.com/assets/common/images/express/kangaroo-my.png','http://www.kangaroo.com.my/',9999,1704193937),('kawa','Kawa','','86-0755-27397426','https://cdn.parcelpanel.com/assets/common/images/express/kawa.png','http://14.215.133.9:8032/query.aspx',9999,1704193937),('kazpost','Kazakhstan Post','','7 7172 61-16-99','https://cdn.parcelpanel.com/assets/common/images/express/kazpost.png','https://post.kz/mail/search/track/******/detail',204,1704193937),('kdexp','KYOUNGDONG(경동택배)','','','https://cdn.parcelpanel.com/assets/common/images/express/kdexp.png','https://kdexp.com/index.do',9999,1704193937),('kenya-post','Kenya Post','','(254) 020 324 2000','https://cdn.parcelpanel.com/assets/common/images/express/kenya-post.png','http://www.posta.co.ke/',9999,1704193937),('kerry-ecommerce','Kerry eCommerce','','','https://cdn.parcelpanel.com/assets/common/images/express/kerry-ecommerce.png','https://kerry-ecommerce.com/index.php',214,1704193937),('kerry-logistics','Kerry Logistics','','+852 2410 3600','https://cdn.parcelpanel.com/assets/common/images/express/kerry-logistics.png','http://www.expba.com/emmis/www.kerryeas.com.html',9999,1704193937),('kerry-tec','Kerry Tec','','+852 2410 3600','https://cdn.parcelpanel.com/assets/common/images/express/kerry-tec.png','http://www.kerry-tec.com/track_trace.php',9999,1704193937),('kerryexpress','Kerry Express VN','','1900 6663','https://cdn.parcelpanel.com/assets/common/images/express/kerryexpress.png','https://kerryexpress.com.vn/tracking.aspx?tc=******',9999,1704193937),('kerryexpress-th','Kerry Express TH','','','https://cdn.parcelpanel.com/assets/common/images/express/kerryexpress-th.png','http://th.kerryexpress.com/en/home/',219,1704193937),('kerrytj','Kerry TJ Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/kerrytj.png','https://www.kerrytj.com/en/',9999,1704193937),('kgmhub','KGM Hub','','+65 6532 7172','https://cdn.parcelpanel.com/assets/common/images/express/kgmhub.png','http://kgmhub.com/customer/public-tracking',9999,1704193937),('kingfreight','King Freight','','1300 949 566','https://cdn.parcelpanel.com/assets/common/images/express/kingfreight.png','',9999,1704193937),('kingruns','KINGRUNS','','+86 0755 88606701','https://cdn.parcelpanel.com/assets/common/images/express/kingruns.png','http://www.kingruns.com/tms_track.php',9999,1704193937),('kjkd','Fast Express','','4008333666','https://cdn.parcelpanel.com/assets/common/images/express/kjkd.png','http://www.kjkd.com/',9999,1704193937),('kjy','SHUNBANG EXPRESS','','0755-22675209','https://cdn.parcelpanel.com/assets/common/images/express/kjy.png','http://tracking.kjy.com/track_kjy?shipment=******',9999,1704193937),('kke','King Kong Express','','852-23329918','https://cdn.parcelpanel.com/assets/common/images/express/kke.png','http://www.szkke.com/index.php/Index/index/select.html',9999,1704193937),('komonexpress','KOMON EXPRESS','','135 5447 1805','https://cdn.parcelpanel.com/assets/common/images/express/komonexpress.png','http://www.komonexpress.com/',199,1704193937),('korea-post','Korea Post','','82-2-2108-9895','https://cdn.parcelpanel.com/assets/common/images/express/korea-post.png','https://ems.epost.go.kr/front.Tracking01Eng.postal',190,1704193937),('kuaidaexp','King Delivery','','','https://cdn.parcelpanel.com/assets/common/images/express/kuaidaexp.png','http://www.kuaidaexp.com/',9999,1704193937),('kuajingyihao','K1 Express','','+86 400-8063-513','https://cdn.parcelpanel.com/assets/common/images/express/kuajingyihao.png','http://www.kuajingyihao.com/',9999,1704193937),('kuehne','Kuehne Nagel','','','https://cdn.parcelpanel.com/assets/common/images/express/kuehne.png','https://mykn.kuehne-nagel.com/public-tracking/shipments?query=******',140,1704193937),('kurasi','Kurasi','','','https://cdn.parcelpanel.com/assets/common/images/express/kurasi.png','https://www.kurasi.co.id/tracking',9999,1704193937),('kwe','Kintetsu World Express','','','https://cdn.parcelpanel.com/assets/common/images/express/kwe.png','https://www.kwe.com',9999,1704193937),('kwt56','KWT Express','','0755-89689111','https://cdn.parcelpanel.com/assets/common/images/express/kwt56.png','http://58.61.160.51:8240/TrackInfoJHD/track/qry_track_info',9999,1704193937),('kye','KUAYUE EXPRESS','','4008098098','https://cdn.parcelpanel.com/assets/common/images/express/kye.png','http://www.ky-express.com/',219,1704193937),('kyrgyzpost','Kyrgyzstan Post','','(996) 31261 52 94','https://cdn.parcelpanel.com/assets/common/images/express/kyrgyzpost.png','http://kyrgyzpost.kg/ru/zip-search.html?searchword=******',9999,1704193937),('la-poste-monaco','Monaco Post','','+ (377) 99998080','https://cdn.parcelpanel.com/assets/common/images/express/la-poste-monaco.png','http://www.lapostemonaco.mc/Suivi-envoi.html',9999,1704193937),('lahuoex','La Huo Express','','','https://cdn.parcelpanel.com/assets/common/images/express/lahuoex.png','http://www.lahuoex.com/cha/query1.php',9999,1704193937),('landmark-global','Landmark Global','','+(888) 205-2251','https://cdn.parcelpanel.com/assets/common/images/express/landmark-global.png','https://track.landmarkglobal.com/?trck=******&Submit=Track',197,1704193937),('lanqichuhai','Lanqichuhai','','','https://cdn.parcelpanel.com/assets/common/images/express/lanqichuhai.png','https://tms.lanqichuhai.com/tms/open/logistics?trackNos=******',9999,1704193937),('laos-post','Laos Post','','','https://cdn.parcelpanel.com/assets/common/images/express/laos-post.png','http://www.laopostapl.com/#/tracking/index',9999,1704193937),('laposte','La Poste','','+ 33 810 821 821','https://cdn.parcelpanel.com/assets/common/images/express/laposte.png','https://www.laposte.fr/outils/suivre-vos-envois?code=******',36,1704193937),('lasership','LaserShip','','(804) 414-2590','https://cdn.parcelpanel.com/assets/common/images/express/lasership.png','http://www.lasership.com/track.php?track_number_input=******',86,1704193937),('latamyou','LATAM YOU','','','https://cdn.parcelpanel.com/assets/common/images/express/latamyou.png','https://latamyou.com/#/newTrack?no=******',9999,1704193937),('latvijas-pasts','Latvia Post','','(371) 27008001','https://cdn.parcelpanel.com/assets/common/images/express/latvijas-pasts.png','http://www.pasts.lv/en/Category/Tracking_of_Postal_Items/',151,1704193937),('lbcexpress','LBC Express','','+63 800-10-8585999','https://cdn.parcelpanel.com/assets/common/images/express/lbcexpress.png','https://www.lbcexpress.com/us/track/?tracking_no=******',107,1704193937),('lbexps','LiBang International Logistics','','+86 020-66686638','https://cdn.parcelpanel.com/assets/common/images/express/lbexps.png','http://47.52.162.35:22227/lbexps_ifd_web/track/trackAction!query.action',9999,1704193937),('ldlog','LD Logistics','','0755-29700570','https://cdn.parcelpanel.com/assets/common/images/express/ldlog.png','http://www.ldlog.com.cn/cxwl.asp',9999,1704193937),('ldxpress','LDXpress','','4008200112','https://cdn.parcelpanel.com/assets/common/images/express/ldxpress.png','http://www.ldxpress.com/#/track',9999,1704193937),('leda-express','LD Express','','','https://cdn.parcelpanel.com/assets/common/images/express/leda-express.png','http://www.leda-express.com/',9999,1704193937),('ledii','Ledii','','0755-29778511','https://cdn.parcelpanel.com/assets/common/images/express/ledii.png','http://ledii.itdida.com/zhanghao/landing.xhtml',9999,1704193937),('legionexp','Legion Express','','','https://cdn.parcelpanel.com/assets/common/images/express/legionexp.png','https://legionexp.com/',9999,1704193937),('leopardschina','Leopards Express','','+86 400-668-1818','https://cdn.parcelpanel.com/assets/common/images/express/leopardschina.png','http://www.leopardschina.com/Home/Track',9999,1704193937),('leopardscourier','Leopards Courier','','','https://cdn.parcelpanel.com/assets/common/images/express/leopardscourier.png','https://www.leopardscourier.com/leopards_tracking',199,1704193937),('lesotho-post','Lesotho Post','','(266) 2232 1690','https://cdn.parcelpanel.com/assets/common/images/express/lesotho-post.png','http://globaltracktrace.ptc.post/gtt.web/',9999,1704193937),('lexship','Lexship','','+91 8660390631','https://cdn.parcelpanel.com/assets/common/images/express/lexship.png','https://www.lexship.com/track.php',9999,1704193937),('lf-express','LF Express','','','https://cdn.parcelpanel.com/assets/common/images/express/lf-express.png','https://lf-express.com/',9999,1704193937),('lhexpressus','UNICON EXPRESS USA','','','https://cdn.parcelpanel.com/assets/common/images/express/lhexpressus.png','http://www.lhexpressus.com/',9999,1704193937),('lhtex','LHT Express','','4008888887','https://cdn.parcelpanel.com/assets/common/images/express/lhtex.png','http://58.61.37.152:7000/lhtex/track.action',9999,1704193937),('liban-post','Lebanon Post','','961 1 629628','https://cdn.parcelpanel.com/assets/common/images/express/liban-post.png','https://www.libanpost.com/arabic/individuals/mailing',9999,1704193937),('liccardi-express','LICCARDI','','','https://cdn.parcelpanel.com/assets/common/images/express/liccardi-express.png','http://www.spacecomputer-web.it/web/index.php/liccardi/spedizioni/cerca',9999,1704193937),('liechtenstein-post','Liechtenstein Post','','+ (423) 399 44 44','https://cdn.parcelpanel.com/assets/common/images/express/liechtenstein-post.png','https://www.tnt.com/express/de_ch/site/home/applications/tracking.html?searchType=CON&cons=******',9999,1704193937),('liefergruen','Liefergrün','','','https://cdn.parcelpanel.com/assets/common/images/express/liefergruen.png','https://en.liefergruen.de/sendungsverfolgung',9999,1704193937),('lietuvos-pastas','Lithuania Post','','(370) 8 700 55400','https://cdn.parcelpanel.com/assets/common/images/express/lietuvos-pastas.png','https://www.post.lt/siuntu-sekimas',201,1704193937),('line-1','Line-1 International Express','','+8613986837403','https://cdn.parcelpanel.com/assets/common/images/express/line-1.png','http://www.line-1.com.au/',9999,1704193937),('line-clear','Line Clear Express & Logistics','','03-7890 3535','https://cdn.parcelpanel.com/assets/common/images/express/line-clear.png','https://lineclearexpress.com/my/tracking-mobile/',9999,1704193937),('lineclearexpress','Lineclear Express','','','https://cdn.parcelpanel.com/assets/common/images/express/lineclearexpress.png','https://www.lineclearexpress.com/',9999,1704193937),('linexsolutions','Linex','','(+852)2735 2012','https://cdn.parcelpanel.com/assets/common/images/express/linexsolutions.png','http://tracking.linexsolutions.com/Shipment/TrackingList?Type=L',9999,1704193937),('lingsong','LingSong','','4008-638-388','https://cdn.parcelpanel.com/assets/common/images/express/lingsong.png','http://www.lingsong.cn/',9999,1704193937),('lmparcel','LM Parcel','','','https://cdn.parcelpanel.com/assets/common/images/express/lmparcel.png','https://www.lmparcel.com/search?nums=******',9999,1704193937),('logisters','Logisters','','','https://cdn.parcelpanel.com/assets/common/images/express/logisters.png','http://193.112.169.101:8082/en/trackIndex.htm',9999,1704193937),('logistics','WEL','','+86 400-8338-066','https://cdn.parcelpanel.com/assets/common/images/express/logistics.png','http://119.23.238.137/default/index/get-track-detail?type=cp&documentCode=******&Submit.x=10&Submit.y=11',9999,1704193937),('lonestar','Lonestar','','','https://cdn.parcelpanel.com/assets/common/images/express/lonestar.png','https://api-prod.lso.com/tracking/track_barcode?barcodes=******',9999,1704193937),('longbiao56','LB Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/longbiao56.png','http://81.71.34.49:8082/trackIndex.htm',9999,1704193937),('longcps','LONGCPS','','','https://cdn.parcelpanel.com/assets/common/images/express/longcps.png','http://www.longcps.com/index.aspx',9999,1704193937),('loomis','Loomis Express','','','https://cdn.parcelpanel.com/assets/common/images/express/loomis.png','https://www.loomis-express.com/loomship/en/Track/TrackStatus?wbs=******',217,1704193937),('loomis-zip','Loomis Express(PostalCode)','','','https://cdn.parcelpanel.com/assets/common/images/express/loomis-zip.png','https://www.loomis-express.com/loomship/Track',9999,1704193937),('lpexpress','LP Express','','8700 55400','https://cdn.parcelpanel.com/assets/common/images/express/lpexpress.png','https://www.lpexpress.lt/en/home/',9999,1704193937),('lso','Lone Star Overnight','','','https://cdn.parcelpanel.com/assets/common/images/express/lso.png','https://www2.lso.com/access/package-tracking?seo_redirect=1',191,1704193937),('ltexp','Ltexp','','800-820-3585','https://cdn.parcelpanel.com/assets/common/images/express/ltexp.png','http://www.ltexp.com.cn/',129,1704193937),('ltian','Jiayou','','','https://cdn.parcelpanel.com/assets/common/images/express/ltian.png','http://www.jiayouexp.com',54,1704193937),('lubang56','LuBang56','','13723517517','https://cdn.parcelpanel.com/assets/common/images/express/lubang56.png','http://www.lubang56.com.cn/',9999,1704193937),('luben','Luben','','（08）9478 4837 0413 686 354','https://cdn.parcelpanel.com/assets/common/images/express/luben.png','https://www.luben.com.au/#/',9999,1704193937),('luxembourg-post','Luxembourg Post','','(352) 8002 8004','https://cdn.parcelpanel.com/assets/common/images/express/luxembourg-post.png','http://www.trackandtrace.lu/',213,1704193937),('lwehk','LWE','','+852 3421 1122','https://cdn.parcelpanel.com/assets/common/images/express/lwehk.png','http://www.lwe.com.hk/tracking',198,1704193937),('m-xpress','Mxpress','','','https://cdn.parcelpanel.com/assets/common/images/express/m-xpress.png','https://www.mxpress2u.com/',9999,1704193937),('macao-post','Macao Post','','+(853) 2857 4491','https://cdn.parcelpanel.com/assets/common/images/express/macao-post.png','http://www.ctt.gov.mo/macaupost/contents/MailTrack.aspx',9999,1704193937),('macedonia-post','Macedonia Post','','(389) 02 3 105 105','https://cdn.parcelpanel.com/assets/common/images/express/macedonia-post.png','https://www.posta.com.mk/',200,1704193937),('madhur-couriers','Madhur Couriers','','','https://cdn.parcelpanel.com/assets/common/images/express/madhur-couriers.png','https://www.madhurcouriers.in/(S(1tkrac5ipfqkadybqcvniki3))/CNoteTracking',9999,1704193937),('madrooex','madrooex','','+8618321689771','https://cdn.parcelpanel.com/assets/common/images/express/madrooex.png','http://www.madrooex.com/index.aspx',9999,1704193937),('maersk','MAERSK','','','https://cdn.parcelpanel.com/assets/common/images/express/maersk.png','https://delivers.maersk.com/technology/?currentTab=consumer',9999,1704193937),('magyar-posta','Magyar Posta','','(36)/06 40 46 46 46','https://cdn.parcelpanel.com/assets/common/images/express/magyar-posta.png','https://www.posta.hu/nyomkovetes/nyitooldal?searchvalue=******',192,1704193937),('mailamericas','MailAmericas','','+ 54 11 4814 1500','https://cdn.parcelpanel.com/assets/common/images/express/mailamericas.png','http://tracking.mailamericas.com/search',219,1704193937),('mainfreight','Mainfreight','','','https://cdn.parcelpanel.com/assets/common/images/express/mainfreight.png','https://www.mainfreight.com/en-nz/tracking?trackingnumber=******',219,1704193937),('malaysia-post','Malaysia Post','','(60) 3-2727-9100','https://cdn.parcelpanel.com/assets/common/images/express/malaysia-post.png','https://tracking.pos.com.my/tracking/******',218,1704193937),('maldives-post','Maldives Post','','(960) 33155555','https://cdn.parcelpanel.com/assets/common/images/express/maldives-post.png','http://www.maldivespost.com/',9999,1704193937),('malta-post','Malta Post','','(356) 2596 1740','https://cdn.parcelpanel.com/assets/common/images/express/malta-post.png','https://www.maltapost.com/tracking/#/trackedItems?barcode=******',9999,1704193937),('maratrack','Maratrack','','400-770-5656','https://cdn.parcelpanel.com/assets/common/images/express/maratrack.png','https://www.maratrack.com',9999,1704193937),('matdespatch','Matdespatch','','000660000768','https://cdn.parcelpanel.com/assets/common/images/express/matdespatch.png','https://matdespatch-my.delyva.app/customer/strack?trackingNo=******',135,1704193937),('matkahuolto','Matkahuolto','','+358 0800 132 582','https://cdn.parcelpanel.com/assets/common/images/express/matkahuolto.png','https://www.matkahuolto.fi/fi/seuranta/tilanne/?package_code=******#.XAuE5tUzYdU',213,1704193937),('mauritius-post','Mauritius Post','','+ (230) 208 2851','https://cdn.parcelpanel.com/assets/common/images/express/mauritius-post.png','http://www.mauritiuspost.biz/?itemid=******',164,1704193937),('maxcellents','Maxcellents Pte Ltd','','+65 81115705','https://cdn.parcelpanel.com/assets/common/images/express/maxcellents.png','http://www.maxcellents.com.sg/',9999,1704193937),('maxeedexpress','maxeedexpress','','','https://cdn.parcelpanel.com/assets/common/images/express/maxeedexpress.png','',9999,1704193937),('maxway','Maxway Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/maxway.png','http://www.maxpress.cn',188,1704193937),('mbe','Mail Boxed Etc','','','https://cdn.parcelpanel.com/assets/common/images/express/mbe.png','https://www.mbe.es/es/tracking?c=******',9999,1704193937),('md-express','MC Express','','+86 0371-63529638','https://cdn.parcelpanel.com/assets/common/images/express/md-express.png','http://www.mc-express.cn:8082/trackIndex.htm',9999,1704193937),('meest','Meest Express','','1 800 288 9949','https://cdn.parcelpanel.com/assets/common/images/express/meest.png','https://t.meest-group.com/en',9999,1704193937),('mhsy88','Mhsy88','','4001-663-613','https://cdn.parcelpanel.com/assets/common/images/express/mhsy88.png','http://www.mhsy88.com/',9999,1704193937),('mircoexpress','mircoexpress','','','https://cdn.parcelpanel.com/assets/common/images/express/mircoexpress.png','http://api.mircoexpress.com/#/AboutUs',9999,1704193937),('miuson-international','Miuson Express','','0755-84557420','https://cdn.parcelpanel.com/assets/common/images/express/miuson-international.png','http://211.159.182.134:8082/trackIndex.htm',9999,1704193937),('mm-logi','MM-logi','','+49-2824-9990030','https://cdn.parcelpanel.com/assets/common/images/express/mm-logi.png','http://www.mm-logi.com/',9999,1704193937),('moldova-post','Moldova Post','','(373 22) 251-201','https://cdn.parcelpanel.com/assets/common/images/express/moldova-post.png','http://www.posta.md/en/tracking?id=******',9999,1704193937),('monaco-ems','Monaco EMS','','+377 9999 8080','https://cdn.parcelpanel.com/assets/common/images/express/monaco-ems.png','http://www.lapostemonaco.mc/Suivi-envoi.html',9999,1704193937),('mondialrelay','Mondial Relay','','09 69 32 23 32','https://cdn.parcelpanel.com/assets/common/images/express/mondialrelay.png','https://www.mondialrelay.fr/suivi-de-colis/',65,1704193937),('mongol-post','Mongol Post','','+ (976) 180001613','https://cdn.parcelpanel.com/assets/common/images/express/mongol-post.png','http://www.mongolpost.mn/',9999,1704193937),('morning','Morning Express','','','https://cdn.parcelpanel.com/assets/common/images/express/morning.png','https://www.mechk.com/guest-order-tracking/',9999,1704193937),('morninglobal','Morning Global','','+852 36696360','https://cdn.parcelpanel.com/assets/common/images/express/morninglobal.png','https://www.morninglobal.com/yundan/status.php?ydh=******',9999,1704193937),('mrw-spain','MRW','','+34 902 300 403','https://cdn.parcelpanel.com/assets/common/images/express/mrw-spain.png','http://www.mrw.es/seguimiento_envios/MRW_resultados_consultas.asp?modo=nacional&envio=******',103,1704193937),('myaustrianpost','GmbH','','','https://cdn.parcelpanel.com/assets/common/images/express/myaustrianpost.png','https://controlling.myaustrianpost.de/index.php?page=trackingBlank',9999,1704193937),('mydpd','DPD Austria','','','https://cdn.parcelpanel.com/assets/common/images/express/mydpd.png','https://www.mydpd.at/meine-pakete',214,1704193937),('myhes-de','Hermes Einrichtungs Service','','','https://cdn.parcelpanel.com/assets/common/images/express/myhes-de.png','https://myhes.de/de/tracking/******',9999,1704193937),('myib','MyIB','','','https://cdn.parcelpanel.com/assets/common/images/express/myib.png','https://www.myib.com/trackpackage',9999,1704193937),('mykn','myKN','','','https://cdn.parcelpanel.com/assets/common/images/express/mykn.png','https://mykn.kuehne-nagel.com/public-tracking/shipments?',9999,1704193937),('mylerz','Mylerz','','','https://cdn.parcelpanel.com/assets/common/images/express/mylerz.png','https://api.mylerz.net/api/package/GetPackageTrackingDetails?BarCode=******',211,1704193937),('mypostonline','Mypostonline','','+60 07-6625692','https://cdn.parcelpanel.com/assets/common/images/express/mypostonline.png','http://qsm.mypostonline.com.cn/Tracking.php',9999,1704193937),('myzufall-de','Zufall Germany','','','https://cdn.parcelpanel.com/assets/common/images/express/myzufall-de.png','https://tracking.myzufall.de/Track/******',9999,1704193937),('mz56','mz56','','','https://cdn.parcelpanel.com/assets/common/images/express/mz56.png','http://www.mz56.com/',9999,1704193937),('mzlyuanhao','Yuan Hao','','','https://cdn.parcelpanel.com/assets/common/images/express/mzlyuanhao.png','http://www.mzlyuanhao.com/',9999,1704193937),('namibia-post','Namibia Post','','(264) 61 201 3042','https://cdn.parcelpanel.com/assets/common/images/express/namibia-post.png','http://globaltracktrace.ptc.post/gtt.web/',9999,1704193937),('nanjingwoyuan','Nanjing Woyuan','','+86 18168003600','https://cdn.parcelpanel.com/assets/common/images/express/nanjingwoyuan.png','http://www.nanjingwoyuan.com/',9999,1704193937),('naqel','Naqel','','+966 1147 10030','https://cdn.parcelpanel.com/assets/common/images/express/naqel.png','http://www.naqelksa.com/',98,1704193937),('nationwide-my','Nationwide Express','','+60 603-5163 3333','https://cdn.parcelpanel.com/assets/common/images/express/nationwide-my.png','http://www.nationwide2u.com/v2/care_track.cfm#',9999,1704193937),('nege-it','UAB Nėgė','','','https://cdn.parcelpanel.com/assets/common/images/express/nege-it.png','https://www.nege.lt/?lang=en',9999,1704193937),('netherlands-post','Netherlands Post','','','https://cdn.parcelpanel.com/assets/common/images/express/netherlands-post.png','https://www.tnt.com/',219,1704193937),('new-caledonia-post','New Caledonia Post','','+ 687 27 77 94','https://cdn.parcelpanel.com/assets/common/images/express/new-caledonia-post.png','http://webtrack.opt.nc/ipswebtracking/',9999,1704193937),('new-zealand-post','New Zealand Post','','0800 501 501 / +64 9 977 0102','https://cdn.parcelpanel.com/assets/common/images/express/new-zealand-post.png','https://www.nzpost.co.nz/tools/tracking',115,1704193937),('neway','Neway','','','https://cdn.parcelpanel.com/assets/common/images/express/neway.png','https://esmart.newaytransport.com/v6/tracking/Track.external?refno=******',9999,1704193937),('newgistics','Newgistics','','+1 877-860-5997','https://cdn.parcelpanel.com/assets/common/images/express/newgistics.png','http://tracking.newgistics.com/',185,1704193937),('nexive','Nexive','','+39 02 50720011','https://cdn.parcelpanel.com/assets/common/images/express/nexive.png','https://tracking.nexive.it/?b=******&lang=IT',9999,1704193937),('nextsmartship','nextsmartship','','','https://cdn.parcelpanel.com/assets/common/images/express/nextsmartship.png','https://fulfill.nextsmartship.com/track',81,1704193937),('nhans-solutions','Nhans Solutions','','+65 66590749','https://cdn.parcelpanel.com/assets/common/images/express/nhans-solutions.png','http://www.nhans.worldsyntech.com/',9999,1704193937),('nicaragua-post','Nicaragua Post','','+ (505) 22558410','https://cdn.parcelpanel.com/assets/common/images/express/nicaragua-post.png','http://www.correos.gob.ni/',9999,1704193937),('nigeria-post','Nigeria Post','','+(234) 7055991758','https://cdn.parcelpanel.com/assets/common/images/express/nigeria-post.png','http://ips.nipost.gov.ng/ipswebtracking/',9999,1704193937),('nightline','Nightline','','+353 (0)1 883 5400','https://cdn.parcelpanel.com/assets/common/images/express/nightline.png','https://www.nightline.ie/',9999,1704193937),('ninjavan','Ninja Van Singapore','','+65 6602 8271','https://cdn.parcelpanel.com/assets/common/images/express/ninjavan.png','http://ninjavan.sg',199,1704193937),('ninjavan-my','Ninja Van Malaysia','','','https://cdn.parcelpanel.com/assets/common/images/express/ninjavan-my.png','https://www.ninjavan.co/en-my',100,1704193937),('ninjavan-ph','Ninja Van Philippines','','+632 729 9365','https://cdn.parcelpanel.com/assets/common/images/express/ninjavan-ph.png','https://www.ninjavan.co/en-ph',170,1704193937),('ninjavan-th','Ninja Van Thailand','','','https://cdn.parcelpanel.com/assets/common/images/express/ninjavan-th.png','https://www.ninjavan.co/th-th',9999,1704193937),('ninjavan-vn','Ninja Van Vietnam','','+84 1900 886 877','https://cdn.parcelpanel.com/assets/common/images/express/ninjavan-vn.png','https://www.ninjavan.co/vn-vn',9999,1704193937),('ninjaxpress','Ninja Van Indonesia','','085574670049','https://cdn.parcelpanel.com/assets/common/images/express/ninjaxpress.png','https://www.ninjaxpress.co/',115,1704193937),('nippon','Nippon Express','','','https://cdn.parcelpanel.com/assets/common/images/express/nippon.png','https://www.nittsu.co.jp/',9999,1704193937),('njfeibao','Flying Leopards Express','','86-025-52433090 ','https://cdn.parcelpanel.com/assets/common/images/express/njfeibao.png','http://www.njfeibao.com/',9999,1704193937),('norsk','Norsk Global','','','https://cdn.parcelpanel.com/assets/common/images/express/norsk.png','https://norsk.global/track-and-trace.html',9999,1704193937),('nova-poshta','Nova Poshta','','+380 50-4-500-609','https://cdn.parcelpanel.com/assets/common/images/express/nova-poshta.png','https://novaposhta.ua/tracking/index/cargo_number/******/no_redirect/1',158,1704193937),('nox-nighttimeexpress','NOX Night Time Express','','','https://cdn.parcelpanel.com/assets/common/images/express/nox-nighttimeexpress.png','https://tcs-ords.app.nox.express/ords/stcs/STCS_TRACK_AND_TRACE.Info?pBarcode=******',9999,1704193937),('ntlogistics-vn','NT Logistics VN','','','https://cdn.parcelpanel.com/assets/common/images/express/ntlogistics-vn.png','https://www.ntlogistics.vn/chi-tiet-van-don.html?bill=******',9999,1704193937),('ntlsgj','LvSe International','','','https://cdn.parcelpanel.com/assets/common/images/express/ntlsgj.png','http://www.ntlsgj.com/',9999,1704193937),('nzcouriers','NZCouriers','','','https://cdn.parcelpanel.com/assets/common/images/express/nzcouriers.png','https://www.nzcouriers.co.nz/nzc/servlet/ITNG_TAndTServlet?barcode_data=******&page=1&VCCA=Enabled&Key_Type=BarCode#Detail_0',9999,1704193937),('ocs','OCS India','','','https://cdn.parcelpanel.com/assets/common/images/express/ocs.png','https://webcsw.ocs.co.jp/csw/ECSWG0201R00003P.do',9999,1704193937),('ocs-worldwide','OCS Worldwide','','0845 678 9800','https://cdn.parcelpanel.com/assets/common/images/express/ocs-worldwide.png','http://www.ocsworldwide.co.uk',9999,1704193937),('ocschina','OCS Express','','+86 400-1188-588','https://cdn.parcelpanel.com/assets/common/images/express/ocschina.png','http://www.ocschina.com/track.html',9999,1704193937),('ogilogistic','Guangzhou Onegoal International Logistics','','020-36299453','https://cdn.parcelpanel.com/assets/common/images/express/ogilogistic.png','http://www.ogilogistic.com/',9999,1704193937),('old-dominion','Old Dominion Freight Line','','+1-800-432-6335','https://cdn.parcelpanel.com/assets/common/images/express/old-dominion.png','https://www.odfl.com/Trace/standardResult.faces?pro=******',9999,1704193937),('oman-post','Oman Post','','+ (968) 24769925','https://cdn.parcelpanel.com/assets/common/images/express/oman-post.png','http://www.omanpost.om/',9999,1704193937),('omgoexpress','OmgoExpress','','','https://cdn.parcelpanel.com/assets/common/images/express/omgoexpress.png','https://omgoexpress.cn/tracking.html?documentCode=******',66,1704193937),('omni2','Omni2','','400-6885-666','https://cdn.parcelpanel.com/assets/common/images/express/omni2.png','https://omni2.cn/#',9999,1704193937),('omniparcel','Omni Parcel','','','https://cdn.parcelpanel.com/assets/common/images/express/omniparcel.png','http://track.omniparcel.com/?id=******',9999,1704193937),('omniva','Estonia Post','','372 661 6616','https://cdn.parcelpanel.com/assets/common/images/express/omniva.png','https://www.omniva.ee/abi/jalgimine',166,1704193937),('oneworldexpress','One World Express','','+44 208 867 6060','https://cdn.parcelpanel.com/assets/common/images/express/oneworldexpress.png','https://oneworldexpress.co.uk/tracking/en/results_multitrack.php',9999,1704193937),('ontrac','OnTrac','','+1 800 334 5000','https://cdn.parcelpanel.com/assets/common/images/express/ontrac.png','https://www.ontrac.com/tracking.asp',118,1704193937),('opek','FedEx Poland Domestic','','+48 22 732 79 99','https://cdn.parcelpanel.com/assets/common/images/express/opek.png','https://www.fedex.com/apps/fedextrack/?action=track&trackingnumber=******&cntry_code=pl&locale=pl_PL',9999,1704193937),('orangeconnex','ORANGE CONNEX','','86-21-60556068','https://cdn.parcelpanel.com/assets/common/images/express/orangeconnex.png','http://www.orangeconnex.com.cn/tracking',9999,1704193937),('orangeds','OrangeDS','','','https://cdn.parcelpanel.com/assets/common/images/express/orangeds.png','https://tracking.orangedsinc.com/',9999,1704193937),('osmworldwide','OSM Worldwide','','','https://cdn.parcelpanel.com/assets/common/images/express/osmworldwide.png','https://www.osmworldwide.com/tracking/?trackingNumbers=BTHEPK00271976',9999,1704193937),('overseas-logistics','Overseas Logistics','','+91-11-47244444','https://cdn.parcelpanel.com/assets/common/images/express/overseas-logistics.png','http://www.overseaslogistics.in/tracking.aspx',9999,1704193937),('overseas-territory-fr-ems','Overseas Territory FR EMS','','','https://cdn.parcelpanel.com/assets/common/images/express/overseas-territory-fr-ems.png','http://www.chronopost.fr/',9999,1704193937),('overseas-territory-us-post','Overseas Territory US Post','','1/800-275-8777','https://cdn.parcelpanel.com/assets/common/images/express/overseas-territory-us-post.png','https://tools.usps.com/go/TrackConfirmAction_input',9999,1704193937),('packeta','Packeta','','','https://cdn.parcelpanel.com/assets/common/images/express/packeta.png','https://tracking.packeta.com/en/?id=******',218,1704193937),('packfleet','Packfleet','','','https://cdn.parcelpanel.com/assets/common/images/express/packfleet.png','https://packfleet.com/',184,1704193937),('packlink','Packlink','','','https://cdn.parcelpanel.com/assets/common/images/express/packlink.png','https://www.packlink.es/seguimiento-envios/',212,1704193937),('padtf','Padtf','','0769-85712366','https://cdn.parcelpanel.com/assets/common/images/express/padtf.png','http://www.padtf.com/',9999,1704193937),('pakistan-post','Pakistan Post','','+(92) 51-4102906','https://cdn.parcelpanel.com/assets/common/images/express/pakistan-post.png','https://ep.gov.pk/emtts/EPTrack_Live.aspx?ArticleIDz=******',219,1704193937),('palletways','Palletways','','','https://cdn.parcelpanel.com/assets/common/images/express/palletways.png','https://www.palletwaysonline.com/en-gb/tracking/******',9999,1704193937),('pan-asia','Pan-Asia International','','','https://cdn.parcelpanel.com/assets/common/images/express/pan-asia.png','http://www.panasiachina.com',9999,1704193937),('pandulogistics','Pandu Logistics','','+62 (021) 461 6007','https://cdn.parcelpanel.com/assets/common/images/express/pandulogistics.png','http://pandulogistics.com/',9999,1704193937),('paquet','Paquet Express','','800-821-0208','https://cdn.parcelpanel.com/assets/common/images/express/paquet.png','https://www.paquetexpress.com.mx/',185,1704193937),('parcel-force','Parcelforce','','0345 774 0740','https://cdn.parcelpanel.com/assets/common/images/express/parcel-force.png','https://www.parcelforce.com/track-trace',147,1704193937),('parcll','PARCLL','','','https://cdn.parcelpanel.com/assets/common/images/express/parcll.png','https://www.parclltrack.com/parcelTracking?id=******',9999,1704193937),('pargo','Pargo','','021 447 3636','https://cdn.parcelpanel.com/assets/common/images/express/pargo.png','https://pargo.co.za/track-trace/',9999,1704193937),('passport-shipping','Passport Shipping','','','https://cdn.parcelpanel.com/assets/common/images/express/passport-shipping.png','https://passportshipping.com/track/******',150,1704193937),('passtheparcel','Pass The Parcel','','','https://cdn.parcelpanel.com/assets/common/images/express/passtheparcel.png','https://www.passtheparcel.co.nz/Pass/Track/******',9999,1704193937),('payo','Payo','','+63285555208','https://cdn.parcelpanel.com/assets/common/images/express/payo.png','https://payo.asia/parcel-tracking/',9999,1704193937),('payport','Parcelport','','','https://cdn.parcelpanel.com/assets/common/images/express/payport.png','https://parcelport.co.nz/',9999,1704193937),('pca','PCA','','1800 518 000','https://cdn.parcelpanel.com/assets/common/images/express/pca.png','https://www.pcaexpress.com.au/tracking/?c=******',9999,1704193937),('pfcexpress','PFC Express','','+86-755-83727415','https://cdn.parcelpanel.com/assets/common/images/express/pfcexpress.png','http://www.pfcexpress.com/Manage/WebManage/Inquire.aspx?txtID=No',9999,1704193937),('pflogistics','Parcel Freight Logistics','','+ 61 2 9746 9997','https://cdn.parcelpanel.com/assets/common/images/express/pflogistics.png','http://www.pflogistics.com.au/',187,1704193937),('phlpost','PhilPost','','+ (63) 854-9825','https://cdn.parcelpanel.com/assets/common/images/express/phlpost.png','https://tracking.phlpost.gov.ph/',9999,1704193937),('pickrr','Pickrr','','','https://cdn.parcelpanel.com/assets/common/images/express/pickrr.png','https://pickrr.com/tracking/#/?tracking_id=******',169,1704193937),('pickupp','Pickupp','','','https://cdn.parcelpanel.com/assets/common/images/express/pickupp.png','https://hk.pickupp.io/en/tracking',9999,1704193937),('pickupp-mys','Pickupp','','','https://cdn.parcelpanel.com/assets/common/images/express/pickupp-mys.png','https://gateway.my.pickupp.io/v2/public/orders/******/detail',9999,1704193937),('pidge','Pidge','','+91-9319482670','https://cdn.parcelpanel.com/assets/common/images/express/pidge.png','https://tracking.pidge.in/login',9999,1704193937),('piggycars','Piggycars','','','https://cdn.parcelpanel.com/assets/common/images/express/piggycars.png','https://dsp-tracking.piggyship.com/?tracking=******',9999,1704193937),('pilot','Pilot','','','https://cdn.parcelpanel.com/assets/common/images/express/pilot.png','https://www.pilotdelivers.com/pilot-shipment-detail/?Pro=******',9999,1704193937),('pingda56','PINGDA EXPRESS','','','https://cdn.parcelpanel.com/assets/common/images/express/pingda56.png','http://www.pingda56.com.cn:8082/trackIndex.htm',9999,1704193937),('pitneybowes','Pitney Bowes','','844-256-6444','https://cdn.parcelpanel.com/assets/common/images/express/pitneybowes.png','https://pitneybowes.shipment.co/track/',9999,1704193937),('pittohio','Pitt Ohio','','','https://cdn.parcelpanel.com/assets/common/images/express/pittohio.png','https://works.pittohio.com/myPittOhio/',9999,1704193937),('pkd-express','PKD Express','','','https://cdn.parcelpanel.com/assets/common/images/express/pkd-express.png','http://49.234.139.190:8082/trackIndex.htm?documentCode=******',9999,1704193937),('poczta-polska','Poland Post','','(48) 43 842 06 00','https://cdn.parcelpanel.com/assets/common/images/express/poczta-polska.png','https://www.envelo.pl/?s=******',215,1704193937),('polarexpress','Polar Express','','','https://cdn.parcelpanel.com/assets/common/images/express/polarexpress.png','https://www.polarexpress.com.au/track?post_num=******',9999,1704193937),('pony-express','Pony Express','','+7 495 937 77 77','https://cdn.parcelpanel.com/assets/common/images/express/pony-express.png','http://www.ponyexpress.ru',9999,1704193937),('poslaju','Pos Malaysia','','1300 300 300 / +603 2705 9900','https://cdn.parcelpanel.com/assets/common/images/express/poslaju.png','https://www.poslaju.com.my/track-trace-v2/',9999,1704193937),('posta-crne-gore','Montenegro Post','','19801','https://cdn.parcelpanel.com/assets/common/images/express/posta-crne-gore.png','https://e-racuni.postacg.me/PracenjePosiljaka/',9999,1704193937),('posta-romana','Romania Post','','+ (40) 021 9393 111','https://cdn.parcelpanel.com/assets/common/images/express/posta-romana.png','https://www.posta-romana.ro/en/track-trace.html',9999,1704193937),('posta-shqiptare','Albania Post','','0800 4141','https://cdn.parcelpanel.com/assets/common/images/express/posta-shqiptare.png','https://www.postashqiptare.al/',9999,1704193937),('postaplus','PostaPlus','','1881881','https://cdn.parcelpanel.com/assets/common/images/express/postaplus.png','https://www.postaplus.com/',9999,1704193937),('poste-italiane','Poste Italiane','','+39 803 160','https://cdn.parcelpanel.com/assets/common/images/express/poste-italiane.png','https://www.poste.it/cerca/index.html#/risultati-spedizioni/******',67,1704193937),('poste-maroc','Maroc Poste','','+ (212) 0537 210 202','https://cdn.parcelpanel.com/assets/common/images/express/poste-maroc.png','http://www.poste.ma/',9999,1704193937),('posten-norge','Posten Norge','','+(47) 21 31 62 60','https://cdn.parcelpanel.com/assets/common/images/express/posten-norge.png','https://sporing.posten.no/sporing.html?q=******',155,1704193937),('postex','PostEX','','','https://cdn.parcelpanel.com/assets/common/images/express/postex.png','https://merchant.postex.pk/track-order',189,1704193937),('posthaste','Post Haste','','','https://cdn.parcelpanel.com/assets/common/images/express/posthaste.png','https://www.posthaste.co.nz/phl/servlet/ITNG_TAndTServlet?page=1&VCCA=Enabled&Key_Type=BarCode&barcode_data=******',212,1704193937),('postnl-3s','PostNL','','+31 (0)900 0990','https://cdn.parcelpanel.com/assets/common/images/express/postnl-3s.png','https://www.internationalparceltracking.com/#/search',91,1704193937),('postnl-parcels','PostNL International','','+31 88 868 6161','https://cdn.parcelpanel.com/assets/common/images/express/postnl-parcels.png','https://postnl.post/tracktrace',95,1704193937),('postone','Post One','','+359 0700 200 40','https://cdn.parcelpanel.com/assets/common/images/express/postone.png','https://postone.eu/en/track?code=******',9999,1704193937),('postpng','Papua New Guinea Post','','(675) 305 3700','https://cdn.parcelpanel.com/assets/common/images/express/postpng.png','http://www.postpng.com.pg/track_trace',9999,1704193937),('ppl-cz','PPL CZ','','','https://cdn.parcelpanel.com/assets/common/images/express/ppl-cz.png','https://www.ppl.cz/en/track-a-shipment',9999,1704193937),('pressiode','Pressiode','','','https://cdn.parcelpanel.com/assets/common/images/express/pressiode.png','http://pressiode.de/sendungsverfolgung',9999,1704193937),('professional-couriers','The Professional Couriers (TPC)','','+91-22-278 13309','https://cdn.parcelpanel.com/assets/common/images/express/professional-couriers.png','https://www.tpcindia.com/',120,1704193937),('promeddelivery','ProMed Deliversy','','','https://cdn.parcelpanel.com/assets/common/images/express/promeddelivery.png','https://promeddel.e-courier.com/promeddel/home/wizard_tracking.asp?AllRef=******',9999,1704193937),('purolator','Purolator','','1-888-744-7123','https://cdn.parcelpanel.com/assets/common/images/express/purolator.png','https://www.purolator.com/purolator/ship-track/tracking-summary.page',130,1704193937),('pushpak-courier','Pushpak Courier','','+91 9214097167','https://cdn.parcelpanel.com/assets/common/images/express/pushpak-courier.png','https://www.pushpakcourier.net/query.php',9999,1704193937),('qatar-post','Qatar Post','','(974)/44464000/44464277','https://cdn.parcelpanel.com/assets/common/images/express/qatar-post.png','http://www.qpost.com.qa/',9999,1704193937),('qexlogistics','Qexlogistics','','09-8388681','https://cdn.parcelpanel.com/assets/common/images/express/qexlogistics.png','http://www.qexlogistics.com/',9999,1704193937),('qexpress','QEXPRESS','','09-8388681','https://cdn.parcelpanel.com/assets/common/images/express/qexpress.png','http://www.qexpress.co.nz/tracking.aspx',219,1704193937),('qfkd','QFKD Express','','4001000001','https://cdn.parcelpanel.com/assets/common/images/express/qfkd.png','http://www.qfkd.com.cn/',9999,1704193937),('qhxyyg','Qhxyyg','','0971-7733777','https://cdn.parcelpanel.com/assets/common/images/express/qhxyyg.png','http://www.qhxyyg.com/',9999,1704193937),('qi-eleven','7-ELEVEN','','1-800-255-0711','https://cdn.parcelpanel.com/assets/common/images/express/qi-eleven.png','https://eservice.7-11.com.tw/E-Tracking/search.aspx',9999,1704193937),('qichen','venucia','','00852-31166708','https://cdn.parcelpanel.com/assets/common/images/express/qichen.png','http://www.qichen.hk/',9999,1704193937),('qiyue','Qiyue Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/qiyue.png','http://47.115.152.56:8883/BestECOnline_QY/',9999,1704193937),('qlinyun','QLINYUN','','','https://cdn.parcelpanel.com/assets/common/images/express/qlinyun.png','https://www.qlinyun.com/',9999,1704193937),('quantium','Quantium','','+852 2318 1213','https://cdn.parcelpanel.com/assets/common/images/express/quantium.png','https://quantiumsolutions.com/search.html?searchphrase=all&searchword=******',9999,1704193937),('quickway','QuicKway','','','https://cdn.parcelpanel.com/assets/common/images/express/quickway.png','http://www.quickway-sc.com/TRACK.html',9999,1704193937),('quikenmx','QuikenMx','','','https://cdn.parcelpanel.com/assets/common/images/express/quikenmx.png','https://api.quiken.mx/track',9999,1704193937),('quiqup','Quiqup','','04 512 6212','https://cdn.parcelpanel.com/assets/common/images/express/quiqup.png','https://www.quiqup.com/',9999,1704193937),('qwintry','Qwintry Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/qwintry.png','https://logistics.qwintry.com/track?tracking=******',9999,1704193937),('qxpress','Qxpress','','+86 755-8829 7707','https://cdn.parcelpanel.com/assets/common/images/express/qxpress.png','http://www.qxpress.asia/chi/html/customer_tracking_view.html?value=******',171,1704193937),('qyexp','QYEXP','','','https://cdn.parcelpanel.com/assets/common/images/express/qyexp.png','http://www.qyexp.cn/',9999,1704193937),('qyunexpress','QYUN GLOBAL','','','https://cdn.parcelpanel.com/assets/common/images/express/qyunexpress.png','http://106.52.192.65:8082/trackIndex.htm',74,1704193937),('raben-group','Raben Group','','','https://cdn.parcelpanel.com/assets/common/images/express/raben-group.png','https://oftc.myraben.com/index.html',9999,1704193937),('raf','RAF Philippines','','(632) 820-2920 to 25','https://cdn.parcelpanel.com/assets/common/images/express/raf.png','http://www.raf.ph/beta/',9999,1704193937),('raiderex','RaidereX','','+65 8666 5481','https://cdn.parcelpanel.com/assets/common/images/express/raiderex.png','https://app.detrack.com/w/#/tracking/s/c2ed7ab0c381d61e1959731ff286cbb0ba590cb4',9999,1704193937),('ram','Ram','','','https://cdn.parcelpanel.com/assets/common/images/express/ram.png','https://www.ram.co.za/Track/******',9999,1704193937),('redchains','RedC','','0755-26942727','https://cdn.parcelpanel.com/assets/common/images/express/redchains.png','https://www.redchains.cc/',9999,1704193937),('redpack-mexico','Redpack Mexico','','+52 1800-013-3333','https://cdn.parcelpanel.com/assets/common/images/express/redpack-mexico.png','http://www.redpack.com.mx/',111,1704193937),('redur-es','Redur Spain','','+34 93 263 16 16','https://cdn.parcelpanel.com/assets/common/images/express/redur-es.png','http://redlink.redur.es/RedLink/jsp/jsp_esp/listadoExpedicionesB.jsp?idioma=uk',9999,1704193937),('renrenex','Renrenex','','','https://cdn.parcelpanel.com/assets/common/images/express/renrenex.png','http://www.renrenex.com/',9999,1704193937),('rl-carriers','RL Carriers','','800-543-5589','https://cdn.parcelpanel.com/assets/common/images/express/rl-carriers.png','https://www.rlcarriers.com/shiptrace.asp',214,1704193937),('roadbull','Roadbull Logistics','','(+65) 6812 9797','https://cdn.parcelpanel.com/assets/common/images/express/roadbull.png','https://www.roadbull.com/',9999,1704193937),('rosan','ROSAN EXPRESS','','+86 134 342 72270','https://cdn.parcelpanel.com/assets/common/images/express/rosan.png','https://t.meest-group.com/',9999,1704193937),('royal-international','Royal International','','852-53401851','https://cdn.parcelpanel.com/assets/common/images/express/royal-international.png','http://www.royal-international.cc/',9999,1704193937),('royal-mail','UK Royal Mail','','03457 641 641','https://cdn.parcelpanel.com/assets/common/images/express/royal-mail.png','https://www.royalmail.com/track-your-item#/tracking-results/******',34,1704193937),('royal-shipments','Royal Shipments','','22 122 12 18','https://cdn.parcelpanel.com/assets/common/images/express/royal-shipments.png','http://royalshipments.com',9999,1704193937),('rpx','RPX Indonesia','','+62 0-800-1-888-900','https://cdn.parcelpanel.com/assets/common/images/express/rpx.png','https://www.rpx.co.id/en/your-assistant/domestic-tracking/',9999,1704193937),('rpxonline','RPX Online','','+852 2620 0289','https://cdn.parcelpanel.com/assets/common/images/express/rpxonline.png','http://www.rpx.com.cn/',9999,1704193937),('rrdonnelley','RR Donnelley','','','https://cdn.parcelpanel.com/assets/common/images/express/rrdonnelley.png','https://internationalservices.rrd.com/ParcelTracker/HomePageTracker',219,1704193937),('rrs','RRS Logistics','','400-800-9999','https://cdn.parcelpanel.com/assets/common/images/express/rrs.png','https://www.rrswl.com',9999,1704193937),('rrts','Roadrunner Freight','','','https://cdn.parcelpanel.com/assets/common/images/express/rrts.png','http://tools.rrts.com/LTLTrack/?searchValues=******',219,1704193937),('rufengda','Rufengda','','400-010-6660','https://cdn.parcelpanel.com/assets/common/images/express/rufengda.png','http://www.rufengda.com/page/twoPage/waybill.html',9999,1704193937),('runbail','Run Bai Internation','','','https://cdn.parcelpanel.com/assets/common/images/express/runbail.png','http://www.runbail.com/',9999,1704193937),('russian-post','Russian Post','','+7 (495) 956-20-67','https://cdn.parcelpanel.com/assets/common/images/express/russian-post.png','https://www.pochta.ru/tracking#******',212,1704193937),('ruston','Ruston','','400-656-0077','https://cdn.parcelpanel.com/assets/common/images/express/ruston.png','http://www.ruston.cc/customer/xiaojianchaxun.html',9999,1704193937),('rzyexpress','RZY Express','','+65 96982006','https://cdn.parcelpanel.com/assets/common/images/express/rzyexpress.png','http://rzyexpress.com.sg/track.php',9999,1704193937),('safexpress','Safexpress','','+911800113113','https://cdn.parcelpanel.com/assets/common/images/express/safexpress.png','http://www.safexpress.com/Portal/faces/TrackShipment.jspx?',9999,1704193937),('sagawa','Sagawa','','','https://cdn.parcelpanel.com/assets/common/images/express/sagawa.png','http://k2k.sagawa-exp.co.jp/p/sagawa/web/okurijosearcheng.jsp',174,1704193937),('sagawa-global','Sagawa Global','','','https://cdn.parcelpanel.com/assets/common/images/express/sagawa-global.png','https://tracking.sagawa-sgx.com/sgx/trackeng.asp?enc=ENG&cat=AWB&awb=******',219,1704193937),('saia-freight','Saia LTL Freight','','1-800-765-7242','https://cdn.parcelpanel.com/assets/common/images/express/saia-freight.png','https://www.saia.com/',9999,1704193937),('saicheng','Sai Cheng Logistics','','+61 1300 883 856','https://cdn.parcelpanel.com/assets/common/images/express/saicheng.png','http://www.saichenglogistics.com/a/waybill/',9999,1704193937),('sailpost','Sailpost','','800933311','https://cdn.parcelpanel.com/assets/common/images/express/sailpost.png','https://www.sailpost.it',9999,1704193937),('saint-lucia-post','Saint Lucia Post','','1 (758) 452-2671','https://cdn.parcelpanel.com/assets/common/images/express/saint-lucia-post.png','http://www.stluciapostal.com/global-track-trace/',9999,1704193937),('sameday','sameday','','','https://cdn.parcelpanel.com/assets/common/images/express/sameday.png','https://sameday.ro/#awb=******',212,1704193937),('samoa-post','Samoa Post','','+ 685-27640','https://cdn.parcelpanel.com/assets/common/images/express/samoa-post.png','http://samoapost.ws/',9999,1704193937),('san-marino-post','San Marino Post','','(378) 0549-882564','https://cdn.parcelpanel.com/assets/common/images/express/san-marino-post.png','https://www.poste.sm/on-line/home/servizi/servizi-on-line/tracciatura-oggetti-a-firma.html#service',9999,1704193937),('sap-express','SAP Express','','021 2280 6611','https://cdn.parcelpanel.com/assets/common/images/express/sap-express.png','https://www.sap-express.id/layanan/tracking/track',9999,1704193937),('saudi-post','Saudi Post','','19992','https://cdn.parcelpanel.com/assets/common/images/express/saudi-post.png','https://splonline.com.sa/en/shipmentdetailsstatic/?tid=******',199,1704193937),('scaexpress','Sca Express','','','https://cdn.parcelpanel.com/assets/common/images/express/scaexpress.png','https://scaexpress.com.au/tracking/',9999,1704193937),('scg-express','SCG Express','','','https://cdn.parcelpanel.com/assets/common/images/express/scg-express.png','https://www.scgexpress.co.th/tracking/index',9999,1704193937),('sdhexpress','SDH Express','','','https://cdn.parcelpanel.com/assets/common/images/express/sdhexpress.png','https://www.sdh-scm.com/',80,1704193937),('sdk-express','SDK Express','','','https://cdn.parcelpanel.com/assets/common/images/express/sdk-express.png','http://www.sdk-express.cn/track.aspx',9999,1704193937),('sdto','Sdto','','0082 10-6860-8188','https://cdn.parcelpanel.com/assets/common/images/express/sdto.png','http://www.sdto.hk/',9999,1704193937),('se-freightlines','Southeastern Freightlines','','','https://cdn.parcelpanel.com/assets/common/images/express/se-freightlines.png','https://www.sefl.com/Tracing/index.jsp',9999,1704193937),('segmail','Segmail','','','https://cdn.parcelpanel.com/assets/common/images/express/segmail.png','https://track.myeship.co/es/track/track?no=******',9999,1704193937),('seino','SEINO(西濃運輸)','','','https://cdn.parcelpanel.com/assets/common/images/express/seino.png','https://track.seino.co.jp/cgi-bin/gnpquery.pgm?*****',9999,1704193937),('sendex','Sendex','','01 800 841 41 41','https://cdn.parcelpanel.com/assets/common/images/express/sendex.png','http://www.sendex.mx/Rastreo/Rastreo/',9999,1704193937),('sendle','Sendle','','','https://cdn.parcelpanel.com/assets/common/images/express/sendle.png','https://try.sendle.com/tracking',77,1704193937),('senegal-post','Senegal Post','','(221) 33 839 34 34','https://cdn.parcelpanel.com/assets/common/images/express/senegal-post.png','http://www.laposte.sn/laposte/tracking.php',9999,1704193937),('serbia-post','Serbia Post','','381 700 100 300','https://cdn.parcelpanel.com/assets/common/images/express/serbia-post.png','http://www.posta.rs/struktura/eng/aplikacije/alati/posiljke.asp',214,1704193937),('serpost','Serpost','','(51) 511-5000','https://cdn.parcelpanel.com/assets/common/images/express/serpost.png','http://www.serpost.com.pe/',9999,1704193937),('setel','Setel Express','','','https://cdn.parcelpanel.com/assets/common/images/express/setel.png','https://track.setel.com/t/******',9999,1704193937),('seychelles-post','Seychelles Post','','(248) 428 85 55','https://cdn.parcelpanel.com/assets/common/images/express/seychelles-post.png','http://www.seychelles-post.com/globaltrack.php',9999,1704193937),('sf-express','SF Express','','+86 95338','https://cdn.parcelpanel.com/assets/common/images/express/sf-express.png','http://www.sf-express.com/us/en/dynamic_function/waybill/#search/bill-number/******',9999,1704193937),('sfb2c','SF International','','(+86) 9533883','https://cdn.parcelpanel.com/assets/common/images/express/sfb2c.png','http://www.sf-express.com/us/en/dynamic_function/waybill/#search/bill-number/******',59,1704193937),('sfcservice','SFC Service','','+86 400-881-8106','https://cdn.parcelpanel.com/assets/common/images/express/sfcservice.png','http://www.sfcservice.com/track/track/track',110,1704193937),('sfwl','sfwl','','4008-556688','https://cdn.parcelpanel.com/assets/common/images/express/sfwl.png','http://www.sfwl.com.cn/',9999,1704193937),('sfydexpress','SFYD Express','','','https://cdn.parcelpanel.com/assets/common/images/express/sfydexpress.png','http://www.sfydexpress.com/track.html?c=******',102,1704193937),('sgt-it','SGT Corriere Espresso','','+39 02 580751','https://cdn.parcelpanel.com/assets/common/images/express/sgt-it.png','https://my.sgt.it/Shippings/QuickActions/QuickTracking_Shippings?LdvQuickSearch=******',9999,1704193937),('sgtwl','SGT Express','','+86 0755-82811186','https://cdn.parcelpanel.com/assets/common/images/express/sgtwl.png','http://www.sgtwl.cn/',9999,1704193937),('shadowfax','Shadowfax','','','https://cdn.parcelpanel.com/assets/common/images/express/shadowfax.png','https://tracker.shadowfax.in/#/',201,1704193937),('shangqiao56','Shang Qiao','','','https://cdn.parcelpanel.com/assets/common/images/express/shangqiao56.png','http://www.shangqiao56.com/page/query/logQuery.html?orderId=******',9999,1704193937),('ship-it-asia','Ship It Asia','','','https://cdn.parcelpanel.com/assets/common/images/express/ship-it-asia.png','https://viewider.com/labs/shipment/track',9999,1704193937),('shipa','Shipa','','80074472','https://cdn.parcelpanel.com/assets/common/images/express/shipa.png','https://tracking.shipadelivery.com/?bc=******',196,1704193937),('shipentegra','ShipEntegra','','0（850）550 5859','https://cdn.parcelpanel.com/assets/common/images/express/shipentegra.png','https://shipentegra.com',216,1704193937),('shipgce','Shipgce Express','','626-527-5800','https://cdn.parcelpanel.com/assets/common/images/express/shipgce.png','https://express.shipgce.com/postcheck.htm?checkvalue=******&type=identity',9999,1704193937),('shippit','shippit','','','https://cdn.parcelpanel.com/assets/common/images/express/shippit.png','https://www.shippit.com/',9999,1704193937),('shiprocket','Shiprocket','','','https://cdn.parcelpanel.com/assets/common/images/express/shiprocket.png','https://www.shiprocket.in/shipment-tracking/',187,1704193937),('showl','Showl','','0769-8561-8358','https://cdn.parcelpanel.com/assets/common/images/express/showl.png','http://www.showl.com/chajian/',9999,1704193937),('shree-mahabali-express','Shree Mahabali Express','','+91 (0261)2410414','https://cdn.parcelpanel.com/assets/common/images/express/shree-mahabali-express.png','http://www.shreemahabaliexpress.com/',9999,1704193937),('shree-nandan','Shree Nandan Courier','','','https://cdn.parcelpanel.com/assets/common/images/express/shree-nandan.png','http://www.shreenandancourier.com/TrackingInfo.aspx?cn=******',9999,1704193937),('shree-tirupati','Shree Tirupati Courier','','+9102613995227','https://cdn.parcelpanel.com/assets/common/images/express/shree-tirupati.png','http://www.trackcourier.in/tracking-shreetirupati.php',194,1704193937),('shreeanjanicourier','Shree Anjani Courier','','','https://cdn.parcelpanel.com/assets/common/images/express/shreeanjanicourier.png','http://anjanicourier.in/Doc_Track.aspx?No=******',9999,1704193937),('shreemaruticourier','Shree Maruti Courier','','+91 9712 666 666','https://cdn.parcelpanel.com/assets/common/images/express/shreemaruticourier.png','https://shreemaruti.com/',202,1704193937),('shunchangguoji','Shun Chang International','','','https://cdn.parcelpanel.com/assets/common/images/express/shunchangguoji.png','http://shunchang.kingtrans.net/WebTrack',9999,1704193937),('sicepat','Sicepat Ekspres','','','https://cdn.parcelpanel.com/assets/common/images/express/sicepat.png','https://www.sicepat.com/checkAwb',142,1704193937),('singapore-post','Singapore Post','','1605 / +65 6222 5777','https://cdn.parcelpanel.com/assets/common/images/express/singapore-post.png','https://www.singpost.com/',168,1704193937),('sinoair','SINOAIR','','010-80418808','https://cdn.parcelpanel.com/assets/common/images/express/sinoair.png','https://www.sinoex.com.cn/track?nums=',9999,1704193937),('siodemka','Siodemka','','','https://cdn.parcelpanel.com/assets/common/images/express/siodemka.png','https://tracktrace.dpd.com.pl',9999,1704193937),('sj-kd','SJ KD','','','https://cdn.parcelpanel.com/assets/common/images/express/sj-kd.png','http://ywlj.rtb56.com/track_query.aspx',9999,1704193937),('sja56','Sja56','','400-707-1158','https://cdn.parcelpanel.com/assets/common/images/express/sja56.png','http://www.sja56.cn/',9999,1704193937),('sjtsz','SJTSZ Express','','0755-27775501','https://cdn.parcelpanel.com/assets/common/images/express/sjtsz.png','http://47.52.141.31:8089/',9999,1704193937),('skr56','SKR InterNational','','0755-8465-2253','https://cdn.parcelpanel.com/assets/common/images/express/skr56.png','http://www.skr56.com/',9999,1704193937),('sky-postal','SKY Postal','','','https://cdn.parcelpanel.com/assets/common/images/express/sky-postal.png','https://tracking.skypostal.com/single-tracking.aspx?trck_number=******',9999,1704193937),('skybox','skybox','','','https://cdn.parcelpanel.com/assets/common/images/express/skybox.png','https://get.attskybox.com/tracking',9999,1704193937),('skyex','Sky Express','','','https://cdn.parcelpanel.com/assets/common/images/express/skyex.png','https://skyexpressinternational.com/Home/Tracking',192,1704193937),('skynet','SkyNet Malaysia','','603- 56239090','https://cdn.parcelpanel.com/assets/common/images/express/skynet.png','http://www.skynet.com.my/track',9999,1704193937),('skynet-za','Skynet South Africa','','','https://cdn.parcelpanel.com/assets/common/images/express/skynet-za.png','https://api.skynet.co.za:3227/api/waybill/getWaybillTracking/?waybillReference=******',9999,1704193937),('skynetworldwide','SkyNet Worldwide Express','','+44 (0) 20 8538 1988','https://cdn.parcelpanel.com/assets/common/images/express/skynetworldwide.png','http://sky.skynet.net/public/Tracking.aspx?guide=******',219,1704193937),('skynetworldwide-uk','Skynet Worldwide Express UK','','+44 20 8538 1988','https://cdn.parcelpanel.com/assets/common/images/express/skynetworldwide-uk.png','https://www.skynetworldwide.com/services/track-and-trace',9999,1704193937),('slovakia-post','Slovakia Post','','(421) 48 437 87 77','https://cdn.parcelpanel.com/assets/common/images/express/slovakia-post.png','https://tandt.posta.sk/en',208,1704193937),('slovenia-post','Slovenia Post','','386 080 14 00','https://cdn.parcelpanel.com/assets/common/images/express/slovenia-post.png','https://sledenje.posta.si/Default.aspx',173,1704193937),('smart-delivery','Smart Delivery','','','https://cdn.parcelpanel.com/assets/common/images/express/smart-delivery.png','https://www.smartdelivery.kz/',9999,1704193937),('smartcat','Smartcat','','','https://cdn.parcelpanel.com/assets/common/images/express/smartcat.png','',9999,1704193937),('smartr','Smartr Logistics','','1860-210-1999','https://cdn.parcelpanel.com/assets/common/images/express/smartr.png','http://www.smartr.in/',170,1704193937),('smooth','Smooth Parcel','','','https://cdn.parcelpanel.com/assets/common/images/express/smooth.png','https://app.smoothparcel.com/trackmyshipments',9999,1704193937),('smsa-express','SMSA Express','','+966 92000 9999','https://cdn.parcelpanel.com/assets/common/images/express/smsa-express.png','http://www.smsaexpress.com/Track.aspx?tracknumbers=******',219,1704193937),('solidlogistics','Solid Logistcs','','+86 13681759975','https://cdn.parcelpanel.com/assets/common/images/express/solidlogistics.png','http://39.108.136.109:8066/OrderSearch/index.html#/',9999,1704193937),('solomon-post','Solomon Post','','','https://cdn.parcelpanel.com/assets/common/images/express/solomon-post.png','https://www.ems.post/en/global-network/tracking',9999,1704193937),('sonapost','Burkina Faso Post','','(226) 25 30 64 20','https://cdn.parcelpanel.com/assets/common/images/express/sonapost.png','http://webtracking.sonapost.bf/webtracking/',9999,1704193937),('south-africa-post','South African Post Office','','+(27) 0860 111 502','https://cdn.parcelpanel.com/assets/common/images/express/south-africa-post.png','http://www.postoffice.co.za/',9999,1704193937),('southamericapost','South American Post','','','https://cdn.parcelpanel.com/assets/common/images/express/southamericapost.png','',9999,1704193937),('specialised-freight','Specialised Freight','','+27 21 528 1000','https://cdn.parcelpanel.com/assets/common/images/express/specialised-freight.png','http://tracking.parcelperfect.com/login.php',9999,1704193937),('speed-post','Speed Post','','+91 1800 11 2011','https://cdn.parcelpanel.com/assets/common/images/express/speed-post.png','http://www.indiapost.gov.in/',9999,1704193937),('speedaf','Speedaf Express','','','https://cdn.parcelpanel.com/assets/common/images/express/speedaf.png','https://speedaf.com/cn-cn',9999,1704193937),('speedee','Spee-Dee Delivery','','800-862-5578','https://cdn.parcelpanel.com/assets/common/images/express/speedee.png','http://speedeedelivery.com/',215,1704193937),('speedexcourier','Speedex Courier','','+965 1881881','https://cdn.parcelpanel.com/assets/common/images/express/speedexcourier.png','https://mybox.postaplus.com/#track-shipments',9999,1704193937),('speedpak','SpeedPAK','','86-21-60556068','https://cdn.parcelpanel.com/assets/common/images/express/speedpak.png','http://www.orangeconnex.com.cn/tracking',9999,1704193937),('speedy','SPEEDY','','','https://cdn.parcelpanel.com/assets/common/images/express/speedy.png','https://www.speedy.bg/en/track-shipment',9999,1704193937),('spoton','Spoton Logistics','','1800 102 1414','https://cdn.parcelpanel.com/assets/common/images/express/spoton.png','https://web1.spoton.co.in/spotoncontracker.html',9999,1704193937),('spring-gds','Spring GDS','','','https://cdn.parcelpanel.com/assets/common/images/express/spring-gds.png','https://mailingtechnology.com/tracking/',217,1704193937),('sprintpack','SprintPack','','+86 10 67762567','https://cdn.parcelpanel.com/assets/common/images/express/sprintpack.png','http://track.sprintpack.com.cn/',9999,1704193937),('sps-sro','Slovak Parcel Service','','','https://cdn.parcelpanel.com/assets/common/images/express/sps-sro.png','https://www.sps-sro.sk/',9999,1704193937),('spsr','SPSR','','+7 (495) 981-10-10','https://cdn.parcelpanel.com/assets/common/images/express/spsr.png','https://www.spsr.ru/ru/service/monitoring?search=******',9999,1704193937),('spx-id','SPX ID','','1500702','https://cdn.parcelpanel.com/assets/common/images/express/spx-id.png','https://spx.co.id/#/detail/******',9999,1704193937),('spx-my','Shopee Express Malaysia','','+603 2777-9222','https://cdn.parcelpanel.com/assets/common/images/express/spx-my.png','https://shopeexpress.com.my',9999,1704193937),('spx-ph','Shopee Express Philipines','','0288805200','https://cdn.parcelpanel.com/assets/common/images/express/spx-ph.png','https://spx.ph/#/detail/******',9999,1704193937),('spx-vn','Shopee Express Vietnam','','19001221','https://cdn.parcelpanel.com/assets/common/images/express/spx-vn.png','https://spx.vn',9999,1704193937),('srekorea','SRE Korea','','+82 02 2661 0055','https://cdn.parcelpanel.com/assets/common/images/express/srekorea.png','http://www.srekorea.co.kr/home/index.html',9999,1704193937),('sri-lanka-post','Sri Lanka Post','','(94) 011 2325111','https://cdn.parcelpanel.com/assets/common/images/express/sri-lanka-post.png','http://www.slpost.gov.lk/',215,1704193937),('ssd','Ssd','','0472-8598668','https://cdn.parcelpanel.com/assets/common/images/express/ssd.png','https://ssd.nmrhzk.cn/deliver/ssd/index.html',9999,1704193937),('stallionexpress','Stallion Express','','','https://cdn.parcelpanel.com/assets/common/images/express/stallionexpress.png','https://stallionexpress.ca/tracking/',9999,1704193937),('star-track','StarTrack','','+61 13 2345','https://cdn.parcelpanel.com/assets/common/images/express/star-track.png','https://startrack.com.au/',191,1704193937),('star-wish','StarWish','','','https://cdn.parcelpanel.com/assets/common/images/express/star-wish.png','http://www.star-wish.cn/',70,1704193937),('starglobal','Star Global','','','https://cdn.parcelpanel.com/assets/common/images/express/starglobal.png','',9999,1704193937),('starken','Starken','','','https://cdn.parcelpanel.com/assets/common/images/express/starken.png','https://www.starken.cl/',149,1704193937),('starlinks','Starlinks','','','https://cdn.parcelpanel.com/assets/common/images/express/starlinks.png','https://www.starlinks-me.com/track-your-shipment',9999,1704193937),('ste56','Suteng Logistics','','400-650-6666','https://cdn.parcelpanel.com/assets/common/images/express/ste56.png','http://www.ste56.com/kehu.aspx',9999,1704193937),('stepforwardfs','Step Forward Freight','','','https://cdn.parcelpanel.com/assets/common/images/express/stepforwardfs.png','https://stepforwardfs.com///?tracking=******',9999,1704193937),('sto','STO Express','','95543','https://cdn.parcelpanel.com/assets/common/images/express/sto.png','http://www.sto.cn',9999,1704193937),('stone3pl','STONE3PL','','','https://cdn.parcelpanel.com/assets/common/images/express/stone3pl.png','https://www.exfresh.com.cn/',9999,1704193937),('sudan-post','Sudan Post','','+1-345-949-6263','https://cdn.parcelpanel.com/assets/common/images/express/sudan-post.png','http://www.sudapost.com/',9999,1704193937),('sumxpress','Sum Xpress','','+86-0755-84869607','https://cdn.parcelpanel.com/assets/common/images/express/sumxpress.png','http://www.sumxpress.com',9999,1704193937),('suning','SUNING','','95315','https://cdn.parcelpanel.com/assets/common/images/express/suning.png','http://wuliu.suning.com/slp/home/home.htm',9999,1704193937),('sunjex','Xinjie Logistics','','18616218802','https://cdn.parcelpanel.com/assets/common/images/express/sunjex.png','http://www.sunjex.com/',9999,1704193937),('sunyou','Sunyou','','400-607-5388','https://cdn.parcelpanel.com/assets/common/images/express/sunyou.png','https://www.sypost.net/search?orderNo=******',29,1704193937),('super-parcel','Super Parcel','','+86-19975321596','https://cdn.parcelpanel.com/assets/common/images/express/super-parcel.png','https://track-sp.com/tracking/detail',35,1704193937),('super-ton','Superton','','18688829756','https://cdn.parcelpanel.com/assets/common/images/express/super-ton.png','https://www.super-ton.com/',9999,1704193937),('superb-express','Superb Express','','01703076336','https://cdn.parcelpanel.com/assets/common/images/express/superb-express.png','http://www.superb-express.com/',9999,1704193937),('superoz','SuperOZ Logistics','','+61 07-31942954','https://cdn.parcelpanel.com/assets/common/images/express/superoz.png','http://www.superoz.com.au/track.html',9999,1704193937),('sure56','Sure56','','400-158-9888','https://cdn.parcelpanel.com/assets/common/images/express/sure56.png','http://www.sure56.com/Demo_contatc.asp',9999,1704193937),('suyd56','SYD Express','','0755-86265929','https://cdn.parcelpanel.com/assets/common/images/express/suyd56.png','http://sud.kingtrans.cn/WebTrack',9999,1704193937),('svgpost','Saint Vincent And The Grenadines','','(784) 4571744','https://cdn.parcelpanel.com/assets/common/images/express/svgpost.png','http://www.gpost.ge/?site-lang=ka&site-path=help/tracking/',9999,1704193937),('sweden-posten','PostNord','','+46 771 33 33 10','https://cdn.parcelpanel.com/assets/common/images/express/sweden-posten.png','https://www.postnord.se/sok/sok?searchquery=******',109,1704193937),('swiship-au','FBA AU Swiship','','','https://cdn.parcelpanel.com/assets/common/images/express/swiship-au.png','https://www.swiship.com.au/track/?id=******',177,1704193937),('swiship-ca','FBA CA Swiship','','','https://cdn.parcelpanel.com/assets/common/images/express/swiship-ca.png','https://www.swiship.ca/track/?loc=zh-CN&id=*****',219,1704193937),('swiship-de','FBA DE Swiship','','','https://cdn.parcelpanel.com/assets/common/images/express/swiship-de.png','https://www.swiship.de/track/?id=******',194,1704193937),('swiship-es','FBA ES Swiship','','','https://cdn.parcelpanel.com/assets/common/images/express/swiship-es.png','https://www.swiship.es/track/?id=******',219,1704193937),('swiship-fr','FBA FR Swiship','','','https://cdn.parcelpanel.com/assets/common/images/express/swiship-fr.png','https://www.swiship.fr/track?id=******',9999,1704193937),('swiship-it','FBA IT Swiship','','','https://cdn.parcelpanel.com/assets/common/images/express/swiship-it.png','https://www.swiship.it/track?loc=it-IT&id=******',214,1704193937),('swiship-jp','FBA JP Swiship','','','https://cdn.parcelpanel.com/assets/common/images/express/swiship-jp.png','https://www.swiship.jp/track/?loc=ja-JP&id=******',9999,1704193937),('swiship-uk','FBA UK Swiship','','','https://cdn.parcelpanel.com/assets/common/images/express/swiship-uk.png','https://www.swiship.co.uk/track/?id=******',44,1704193937),('swiship-usa','FBA USA Swiship','','','https://cdn.parcelpanel.com/assets/common/images/express/swiship-usa.png','https://www.swiship.com/track/?id=******',53,1704193937),('swiss-post','Swiss Post','','0848 888 888','https://cdn.parcelpanel.com/assets/common/images/express/swiss-post.png','https://www.post.ch/swisspost-tracking?formattedParcelCodes=******',69,1704193937),('sxexpress','SX-Express','','+61 420319144','https://cdn.parcelpanel.com/assets/common/images/express/sxexpress.png','http://www.sxexpress.com.au/Search.aspx',9999,1704193937),('sxjdfreight','SXJD','','','https://cdn.parcelpanel.com/assets/common/images/express/sxjdfreight.png','https://www.sxjdfreight.com/',9999,1704193937),('syrian-post','Syrian Post','','(963) 2247563','https://cdn.parcelpanel.com/assets/common/images/express/syrian-post.png','http://www.syrianpost.gov.sy/',9999,1704193937),('sz-linkexpress','Link Supply Chain','','','https://cdn.parcelpanel.com/assets/common/images/express/sz-linkexpress.png','http://www.sz-linkexpress.com:8082/trackIndex.htm',9999,1704193937),('szdpex','DPEX China','','+86 4000633198','https://cdn.parcelpanel.com/assets/common/images/express/szdpex.png','https://dpex.com/track-and-trace/',9999,1704193937),('szendex','Szendex','','93 790 15 15','https://cdn.parcelpanel.com/assets/common/images/express/szendex.png','https://www.szendex.com',9999,1704193937),('szjiuz','JIUZHOU Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/szjiuz.png','http://szjiuz.sah.nextsls.com/tracking/app#/tracking',9999,1704193937),('szpago','Pago Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/szpago.png','http://pago.itdida.com/query.xhtml',9999,1704193937),('szuem','Szuem','','0755-27775333','https://cdn.parcelpanel.com/assets/common/images/express/szuem.png','http://www.szuem.com/',9999,1704193937),('szyn','YingNuo Supply Chain','','','https://cdn.parcelpanel.com/assets/common/images/express/szyn.png','',9999,1704193937),('t-cat','T Cat','','412-8888','https://cdn.parcelpanel.com/assets/common/images/express/t-cat.png','https://www.t-cat.com.tw/inquire/explain.aspx',9999,1704193937),('taijin-logistics','Taijin-logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/taijin-logistics.png','https://taijin-logistics.tuhu.cn/',9999,1704193937),('taimek','Taimek','','(510)984-3783','https://cdn.parcelpanel.com/assets/common/images/express/taimek.png','http://www.taimek.com/',9999,1704193937),('taiwan-post','Chunghwa POST','','0800-700-365','https://cdn.parcelpanel.com/assets/common/images/express/taiwan-post.png','http://postserv.post.gov.tw/pstmail/main_mail.html',211,1704193937),('takesend','Takesend Logistics','','+86 400-640-5699','https://cdn.parcelpanel.com/assets/common/images/express/takesend.png','http://k5.takesend.com:8180/WebTrack',125,1704193937),('tanzania-post','Tanzania Post','','+(255) 22-2118280','https://cdn.parcelpanel.com/assets/common/images/express/tanzania-post.png','https://postashoptz.post/search?q=******',9999,1704193937),('taoplus','Taoplus','','0755-23211445','https://cdn.parcelpanel.com/assets/common/images/express/taoplus.png','http://www.taoplus.cc/',9999,1704193937),('taqbin-hk','TAQBIN Hong Kong','','(852) 2829-2222','https://cdn.parcelpanel.com/assets/common/images/express/taqbin-hk.png','http://www.bizlogi.com/WWTSGeneral/TrackingGeneral/Search.aspx',9999,1704193937),('taqbin-jp','Yamato Japan','','0120 01 9625','https://cdn.parcelpanel.com/assets/common/images/express/taqbin-jp.png','http://track.kuronekoyamato.co.jp/english/tracking',158,1704193937),('taqbin-my','TAQBIN Malaysia','','+60 1800-8-827246','https://cdn.parcelpanel.com/assets/common/images/express/taqbin-my.png','http://myhuiai.com/mytrack/taqbin/',9999,1704193937),('tarrive','TONGDA Global','','0532-80990826','https://cdn.parcelpanel.com/assets/common/images/express/tarrive.png','http://www.tarrive.com/',133,1704193937),('tascourier','TAScourier','','210 8846000','https://cdn.parcelpanel.com/assets/common/images/express/tascourier.png','https://www.tascourier.gr/',9999,1704193937),('taxydromiki','Geniki Taxydromiki','','+30 210 4851100','https://cdn.parcelpanel.com/assets/common/images/express/taxydromiki.png','https://www.taxydromiki.com/track/******',215,1704193937),('tci','TCI Express','','+91 1800 2000 977','https://cdn.parcelpanel.com/assets/common/images/express/tci.png','https://www.tciexpress.in/trackingdocket.asp',9999,1704193937),('tcs-express','TCS Express','','','https://cdn.parcelpanel.com/assets/common/images/express/tcs-express.png','https://www.tcsexpress.com/tracking',176,1704193937),('tele-post','Greenland Post','','89 15 55','https://cdn.parcelpanel.com/assets/common/images/express/tele-post.png','https://tracktrace.telepost.services/?lang=kl&q=******',9999,1704193937),('test-carrier','Test Carrier','','','https://cdn.parcelpanel.com/assets/common/images/express/test-carrier.png','https://www.trackingmore.com/carriers.html',9999,1704193937),('tforce','TForce Final Mile','','','https://cdn.parcelpanel.com/assets/common/images/express/tforce.png','https://direct.tfesg.com/finalmiletrack/Track',212,1704193937),('tgx','TGX','','','https://cdn.parcelpanel.com/assets/common/images/express/tgx.png','http://hk.kerryexpress.com/track?track=******',9999,1704193937),('thabit-logistics','Thabit Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/thabit-logistics.png','https://thabit-logistics.com/track-shipment',9999,1704193937),('thailand-post','Thailand Post','','+ (66) 0 2831 3131','https://cdn.parcelpanel.com/assets/common/images/express/thailand-post.png','http://track.thailandpost.co.th/tracking/default.aspx',198,1704193937),('thecourierguy','The Courier Guy','','010 222 2300','https://cdn.parcelpanel.com/assets/common/images/express/thecourierguy.png','http://www.thecourierguy.co.za/tracking_home.php',173,1704193937),('thecourierguy-co','The Courier Guy Co','','010 222 2300','https://cdn.parcelpanel.com/assets/common/images/express/thecourierguy-co.png','https://portal.thecourierguy.co.za',193,1704193937),('thelorry','The Lorry','','','https://cdn.parcelpanel.com/assets/common/images/express/thelorry.png','https://thelorry.com/v3/my/tracking/******',9999,1704193937),('tianyun','Tianyun International','','','https://cdn.parcelpanel.com/assets/common/images/express/tianyun.png','http://47.115.152.56:8883/BestECOnline/',9999,1704193937),('timelytitan','Timelytitan','','+31(0)10 7371 864','https://cdn.parcelpanel.com/assets/common/images/express/timelytitan.png','https://www.timelytitan.com/',9999,1704193937),('timisc','TIMISC','','134-1399-6641','https://cdn.parcelpanel.com/assets/common/images/express/timisc.png','http://www.timisc.com/orderTracking.htm',191,1704193937),('tip-sa','TIPSA','','902 10 10 47','https://cdn.parcelpanel.com/assets/common/images/express/tip-sa.png','http://www.tip-sa.com/',9999,1704193937),('tk-kit','Tk Kit','','8 (800) 23456-50','https://cdn.parcelpanel.com/assets/common/images/express/tk-kit.png','https://tk-kit.ru/',9999,1704193937),('tmw-express','Tmw Express','','','https://cdn.parcelpanel.com/assets/common/images/express/tmw-express.png','http://www.tmw-express.com.au/#/',9999,1704193937),('tnt','TNT','','1 800 558 5555','https://cdn.parcelpanel.com/assets/common/images/express/tnt.png','http://www.tnt.com/',57,1704193937),('tnt-au','TNT Australia','','131150','https://cdn.parcelpanel.com/assets/common/images/express/tnt-au.png','https://www.tntexpress.com.au/interaction/trackntrace.aspx',216,1704193937),('tnt-click','TNT Click','','+39 199 803 868','https://cdn.parcelpanel.com/assets/common/images/express/tnt-click.png','https://www.tnt-click.it/',9999,1704193937),('tnt-fr','TNT France','','0825071071','https://cdn.parcelpanel.com/assets/common/images/express/tnt-fr.png','http://www.tnt.fr/',128,1704193937),('tnt-it','TNT Italy','','+39 199 803 868','https://cdn.parcelpanel.com/assets/common/images/express/tnt-it.png','https://www.tnt.it/tracking/Tracking.do',144,1704193937),('tnt-lt','TNT LT','','','https://cdn.parcelpanel.com/assets/common/images/express/tnt-lt.png','http://www.tnt.com',9999,1704193937),('tnt-reference','TNT Reference','','+1 800 558 5555','https://cdn.parcelpanel.com/assets/common/images/express/tnt-reference.png','http://www.tnt.com/webtracker/tracker.do?navigation=1&respLang=en',9999,1704193937),('tnt-uk','TNT UK','','0800 100 600','https://cdn.parcelpanel.com/assets/common/images/express/tnt-uk.png','https://www.tnt.com/express/en_gb/site/shipping-tools/tracking.html?searchType=con&cons=******',206,1704193937),('togo-post','Togo Post','','(228) 22214403','https://cdn.parcelpanel.com/assets/common/images/express/togo-post.png','http://41.207.181.70/webtracking/',9999,1704193937),('toll','TOLL','','+61 13 15 31 / +852 8106 3232','https://cdn.parcelpanel.com/assets/common/images/express/toll.png','https://www.mytoll.com/?externalSearchQuery=******&op=Search',167,1704193937),('toll-ipec','Team Global Express (Toll IPEC)','','+61 1300 865 547','https://cdn.parcelpanel.com/assets/common/images/express/toll-ipec.png','https://teamglobalexp.com/',163,1704193937),('tonga-post','Tonga Post','','+(676) 21700','https://cdn.parcelpanel.com/assets/common/images/express/tonga-post.png','http://tongapost.to/',9999,1704193937),('topdser','TD Express','','','https://cdn.parcelpanel.com/assets/common/images/express/topdser.png','https://www.tdexpress.net/?tn=******',178,1704193937),('toptrans','Toptrans','','','https://cdn.parcelpanel.com/assets/common/images/express/toptrans.png','https://apis.toptrans.cz/search',9999,1704193937),('topyou','TopYou','','0755-28222577','https://cdn.parcelpanel.com/assets/common/images/express/topyou.png','http://www.szty56.com/',159,1704193937),('tracknator','Tracknator','','','https://cdn.parcelpanel.com/assets/common/images/express/tracknator.png','https://www.tracknator.com/#/track/******',201,1704193937),('trackon','Trackon Courier','','079 - 40242100 /101 /102 /103','https://cdn.parcelpanel.com/assets/common/images/express/trackon.png','http://trackoncourier.com/default.aspx',213,1704193937),('trackyourparcel','Trackyourparcel','','','https://cdn.parcelpanel.com/assets/common/images/express/trackyourparcel.png','https://www.trackyourparcel.eu/track/form',83,1704193937),('trakpak','P2P TrakPak','','+44 (0) 1268 533114','https://cdn.parcelpanel.com/assets/common/images/express/trakpak.png','https://fcbtracking.fedex.com/?MyFICNumber=******',218,1704193937),('transrush','Transrush','','4008311333','https://cdn.parcelpanel.com/assets/common/images/express/transrush.png','http://member.transrush.com/Transport/LogisticsTransferTrace.aspx?code=******&vcode=&source=undefined',9999,1704193937),('trunkrs-nl','Trunkrs','','','https://cdn.parcelpanel.com/assets/common/images/express/trunkrs-nl.png','https://parcel.trunkrs.nl',9999,1704193937),('tstexp','Tstexp','','400-012-9139 718-939-2023','https://cdn.parcelpanel.com/assets/common/images/express/tstexp.png','https://www.tstexp.com/',9999,1704193937),('ttkd','TTKD Express','','4001-888888','https://cdn.parcelpanel.com/assets/common/images/express/ttkd.png','http://www.ttkdex.com/staticFiles/pages/queryExpress.html',9999,1704193937),('ttkeurope','Ttkeurope','','+44(0)161 223 2300','https://cdn.parcelpanel.com/assets/common/images/express/ttkeurope.png','',9999,1704193937),('tunisia-post','Tunisia Post','','(+216) 71 839 000','https://cdn.parcelpanel.com/assets/common/images/express/tunisia-post.png','http://www.poste.tn/',9999,1704193937),('turkey-post','Turkish Post (PTT)','','90312509 50 00','https://cdn.parcelpanel.com/assets/common/images/express/turkey-post.png','http://gonderitakip.ptt.gov.tr/en/',219,1704193937),('turkmenistan-post','Turkmenistan Post','','(99312) 398936','https://cdn.parcelpanel.com/assets/common/images/express/turkmenistan-post.png','http://www.turkmenpost.gov.tm/about_index.php',9999,1704193937),('tuvalu-post','Tuvalu Post','','','https://cdn.parcelpanel.com/assets/common/images/express/tuvalu-post.png','http://www.tuvalupost.tv/',9999,1704193937),('twth','TT Sucha','','','https://cdn.parcelpanel.com/assets/common/images/express/twth.png','http://www.ttsucha.com',9999,1704193937),('tzgjwl','Tianzheng International Freight','','','https://cdn.parcelpanel.com/assets/common/images/express/tzgjwl.png','http://zstz.kingtrans.cn//WebTrack',9999,1704193937),('tzky','Tzky','','400-6666-386','https://cdn.parcelpanel.com/assets/common/images/express/tzky.png','http://www.tzky.cn/',9999,1704193937),('u-speedex','U-Speed Express','','','https://cdn.parcelpanel.com/assets/common/images/express/u-speedex.png','http://www.u-speedex.com/en/queryTracks?no=******',9999,1704193937),('ubi-logistics','UBI Smart Parcel','','','https://cdn.parcelpanel.com/assets/common/images/express/ubi-logistics.png','http://smartparcel.gotoubi.com',49,1704193937),('ubonex','UBon Express','','+86 4008306050','https://cdn.parcelpanel.com/assets/common/images/express/ubonex.png','http://www.ubonex.cn/f/list-71.html?orderNum=******',9999,1704193937),('ubx-uk','UBX Express','','+44 01753 762 860','https://cdn.parcelpanel.com/assets/common/images/express/ubx-uk.png','https://www.ubx.uk.net/tracking/',9999,1704193937),('uc-express','UC Express','','+86 400 111 1119','https://cdn.parcelpanel.com/assets/common/images/express/uc-express.png','http://www.uce.cn/service/expressTracking.html',9999,1704193937),('udel','UDEL','','','https://cdn.parcelpanel.com/assets/common/images/express/udel.png','http://www.u-del.com/tracking',9999,1704193937),('uds56','UDS','','','https://cdn.parcelpanel.com/assets/common/images/express/uds56.png','http://www.uds56.com/postdh.php?lan=',9999,1704193937),('ueq','UEQ','','020-37639835','https://cdn.parcelpanel.com/assets/common/images/express/ueq.png','http://www.ueq.com',9999,1704193937),('uganda-post','Uganda Post','','(256) 414 -255511','https://cdn.parcelpanel.com/assets/common/images/express/uganda-post.png','http://www.ugapost.co.ug/',9999,1704193937),('uhiexpress','Youhai International Express','','（0049）17647833350','https://cdn.parcelpanel.com/assets/common/images/express/uhiexpress.png','http://www.uhiexpress.com/',9999,1704193937),('ukmail','UK Mail','','','https://cdn.parcelpanel.com/assets/common/images/express/ukmail.png','https://www.ukmail.com',9999,1704193937),('ukraine-ems','Ukraine EMS','','(380) 44 245-43-15','https://cdn.parcelpanel.com/assets/common/images/express/ukraine-ems.png','http://dpsz.ua/track/ems',9999,1704193937),('ukraine-post','Ukraine Post','','+380 44 323 20 99','https://cdn.parcelpanel.com/assets/common/images/express/ukraine-post.png','https://track.ukrposhta.ua/tracking_UA.html?barcode=******',169,1704193937),('uktracking-asendia','UK Asendia','','','https://cdn.parcelpanel.com/assets/common/images/express/uktracking-asendia.png','https://uktracking.asendia.com',9999,1704193937),('un-line','Un-line','','','https://cdn.parcelpanel.com/assets/common/images/express/un-line.png','http://www.un-line.com/index.asp',9999,1704193937),('uni','UniUni','','(604) 288-0006','https://cdn.parcelpanel.com/assets/common/images/express/uni.png','https://uniexpress.ca/tracking?no=******',116,1704193937),('uniteddeliveryservice','United Delivery Services','','','https://cdn.parcelpanel.com/assets/common/images/express/uniteddeliveryservice.png','http://www.uniteddeliveryservice.com/packageTrack.php',106,1704193937),('ups','UPS','','+1 800 742 5877','https://cdn.parcelpanel.com/assets/common/images/express/ups.png','https://www.ups.com/track?loc=en_US&tracknum=******&requester=WT/',24,1704193937),('ups-freight','TForce Freight (UPS Freight)','','+1 800-333-7400','https://cdn.parcelpanel.com/assets/common/images/express/ups-freight.png','https://www.tforcefreight.com/ltl/apps/Tracking?proNumbers=******',9999,1704193937),('ups-ground','UPS Ground','','1 800 742 5877','https://cdn.parcelpanel.com/assets/common/images/express/ups-ground.png','https://www.ups.com/track?loc=en_US&tracknum=******&requester=WT',9999,1704193937),('ups-mi','UPS Mail Innovations','','+1 800-500-2224','https://cdn.parcelpanel.com/assets/common/images/express/ups-mi.png','https://www.ups-mi.net/packageID/default.aspx',122,1704193937),('upu','UPU','','','https://cdn.parcelpanel.com/assets/common/images/express/upu.png','http://globaltracktrace.ptc.post/gtt.web/',9999,1704193937),('uruguay-post','Uruguay Post','','(598) 29160200','https://cdn.parcelpanel.com/assets/common/images/express/uruguay-post.png','http://www.correo.com.uy/seguimientodeenvios',9999,1704193937),('urvaam','urvaam','','','https://cdn.parcelpanel.com/assets/common/images/express/urvaam.png','https://www.urvaam.es/track',9999,1704193937),('usasd','Usasd','','718-886-5508','https://cdn.parcelpanel.com/assets/common/images/express/usasd.png','https://www.usasd.com/',9999,1704193937),('uskyexpress','Usky','','020-31230719','https://cdn.parcelpanel.com/assets/common/images/express/uskyexpress.png','http://www.uskyexpress.com:8082/trackIndex.htm',172,1704193937),('usps','USPS','','+1 800-275-8777','https://cdn.parcelpanel.com/assets/common/images/express/usps.png','https://tools.usps.com/go/TrackConfirmAction?tLabels=******',21,1704193937),('utec','utec','','+38(044)228 53 03','https://cdn.parcelpanel.com/assets/common/images/express/utec.png','https://www.utec.info/en/',9999,1704193937),('uvan','UVAN Express','','0755-23347927','https://cdn.parcelpanel.com/assets/common/images/express/uvan.png','http://www.uvan56.com',9999,1704193937),('uzbekistan-ems','Uzbekistan EMS','','00998 / (371) 233-5747','https://cdn.parcelpanel.com/assets/common/images/express/uzbekistan-ems.png','http://www.ems.post/operators/uzbekistan',9999,1704193937),('uzbekistan-post','Uzbekistan Post','','(371) 233-6474','https://cdn.parcelpanel.com/assets/common/images/express/uzbekistan-post.png','http://www.pochta.uz/en/2014-06-09-08-50-39/track-trace.html',143,1704193937),('v-xpress','V-Xpress','','9870 242 243','https://cdn.parcelpanel.com/assets/common/images/express/v-xpress.png','http://www.vxpress.in/track/',9999,1704193937),('valueway','VALUEWAY','','','https://cdn.parcelpanel.com/assets/common/images/express/valueway.png','http://www.valueway.net/',9999,1704193937),('vanuatu-post','Vanuatu Post','','678 22000','https://cdn.parcelpanel.com/assets/common/images/express/vanuatu-post.png','http://www.vanuatupost.vu/index.php/en/track-and-trace',9999,1704193937),('venipak','Venipak','','+370 5 2107717','https://cdn.parcelpanel.com/assets/common/images/express/venipak.png','https://www.venipak.lt/en/',217,1704193937),('vietnam-post','Vietnam Post','','+84 1900 54 54 81','https://cdn.parcelpanel.com/assets/common/images/express/vietnam-post.png','http://www.vnpost.vn/en-us/dinh-vi/buu-pham?key=******',162,1704193937),('viettelpost','Viettel Post','','+84 1900 8095','https://cdn.parcelpanel.com/assets/common/images/express/viettelpost.png','http://en.viettelpost.com.vn/',202,1704193937),('vncpost','VNCPost','','1900 1031','https://cdn.parcelpanel.com/assets/common/images/express/vncpost.png','https://vncpost.com/hanh-trinh-don-hang',9999,1704193937),('vova-logistics','VOVA Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/vova-logistics.png','https://www.vovalogistics.com/index.php?q=admin/main/index/',9999,1704193937),('wahana','Wahana','','+62217341688','https://cdn.parcelpanel.com/assets/common/images/express/wahana.png','https://www.wahana.com/index#track',9999,1704193937),('wanbexpress','Wanb Express','','0755-28918827','https://cdn.parcelpanel.com/assets/common/images/express/wanbexpress.png','http://www.wanbexpress.com/',31,1704193937),('wanyuyuntong','Wan Yu Yun Tong','','','https://cdn.parcelpanel.com/assets/common/images/express/wanyuyuntong.png','http://120.78.220.225:8086/xms/client/getTrack.htm?trackingNo=******',9999,1704193937),('wcxex','WCXEX','','','https://cdn.parcelpanel.com/assets/common/images/express/wcxex.png','https://www.wcxex.com/search_order.aspx',9999,1704193937),('wearepro','Pro Carrier','','','https://cdn.parcelpanel.com/assets/common/images/express/wearepro.png','https://tracking.weareprocarrier.com/?tn=******',182,1704193937),('weaship','Weaship','','','https://cdn.parcelpanel.com/assets/common/images/express/weaship.png','http://www.weaship.com.cn/',9999,1704193937),('wedo','WeDo Logistics','','+86 (0779)2050300','https://cdn.parcelpanel.com/assets/common/images/express/wedo.png','https://www.wedo.cz/',208,1704193937),('weworld-express','We World Express','','+852 2957 2700','https://cdn.parcelpanel.com/assets/common/images/express/weworld-express.png','https://www.weworldexpress.com/wwe/track',9999,1704193937),('wexsu','WEI XIANG SU','','','https://cdn.parcelpanel.com/assets/common/images/express/wexsu.png','https://wexsu.com/en/track',9999,1704193937),('whatsship','Whats Ship','','','https://cdn.parcelpanel.com/assets/common/images/express/whatsship.png','https://www.whatsship.com/',48,1704193937),('whistl','Whistl','','+44 1628 891 644','https://cdn.parcelpanel.com/assets/common/images/express/whistl.png','https://trackmyitem.whistl.co.uk/tracking/******',206,1704193937),('winit','Winit','','+86 400-996-0766','https://cdn.parcelpanel.com/assets/common/images/express/winit.png','http://track.winit.com.cn/tracking/index.php?s=/Index/result',9999,1704193937),('winlink','Winlink logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/winlink.png','http://www.winlinklogistics.com/trackIndex.html',201,1704193937),('wise-express','Wise Express','','4008-206-207','https://cdn.parcelpanel.com/assets/common/images/express/wise-express.png','http://www.shwise.cn/home/index.html#home-lnquire',218,1704193937),('wiseloads','Wiseloads','','+353749101911','https://cdn.parcelpanel.com/assets/common/images/express/wiseloads.png','https://wiseloads.dmsmatrix.net/trackings/get_info',9999,1704193937),('wishpost','WishPost','','13917283454','https://cdn.parcelpanel.com/assets/common/images/express/wishpost.png','https://wishpost.wish.com/tracking',210,1704193937),('wizmo','Wizmo','','','https://cdn.parcelpanel.com/assets/common/images/express/wizmo.png','https://shipwizmo.com/tracking',217,1704193937),('wmycc','Wanmeng','','0755-27080350','https://cdn.parcelpanel.com/assets/common/images/express/wmycc.png','https://wms.wmycc.com/tracking.aspx',9999,1704193937),('wndirect','wnDirect','','(+44) 1753 561 262','https://cdn.parcelpanel.com/assets/common/images/express/wndirect.png','https://wndirect.com/tracking.php?type=OR&ref=******&submit=#',9999,1704193937),('world-express','World Express','','','https://cdn.parcelpanel.com/assets/common/images/express/world-express.png','http://www.sedel.com/',9999,1704193937),('worldwide-logistics','Worldwide Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/worldwide-logistics.png','https://www.worldwide-logistics.cn',9999,1704193937),('wsgd-logistics','WSGD Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/wsgd-logistics.png','http://www.worldshipgd.com/',9999,1704193937),('wyngs','Wyngs','','','https://cdn.parcelpanel.com/assets/common/images/express/wyngs.png','http://www.wyngs-my.com/track?order=******',9999,1704193937),('x-eagle','EAGLE CROSS BORDER','','','https://cdn.parcelpanel.com/assets/common/images/express/x-eagle.png','https://shipeag.hk/index.html#contact',9999,1704193937),('xde','XDE Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/xde.png','https://www.xde.com.ph/track-trace',9999,1704193937),('xdexpress','XDEXPRESS','','03 9544 7322','https://cdn.parcelpanel.com/assets/common/images/express/xdexpress.png','http://www.xdexpress.com.au/Express.aspx',9999,1704193937),('xdp-uk','XDP Express','','+44 843 1782222','https://cdn.parcelpanel.com/assets/common/images/express/xdp-uk.png','https://www.xdp.co.uk/track.php?c=00000&code=000',215,1704193937),('xend','Xend Express','','+63.2.806.9363','https://cdn.parcelpanel.com/assets/common/images/express/xend.png','http://tracker.xend.com.ph/?waybill=******',9999,1704193937),('xf-lt56','XF-lt56','','0592-5679666','https://cdn.parcelpanel.com/assets/common/images/express/xf-lt56.png','http://xf-lt56.com/',9999,1704193937),('xingyunyi','XingYunYi','','','https://cdn.parcelpanel.com/assets/common/images/express/xingyunyi.png','http://wms.xingyunyi.cn/tracking?numbers',124,1704193937),('xlobo','Xlobo','','626-269-2912','https://cdn.parcelpanel.com/assets/common/images/express/xlobo.png','http://www.xlobo.com/',9999,1704193937),('xpoweb','XPO Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/xpoweb.png','https://track.xpoweb.com/ltl-shipment/******',9999,1704193937),('xpresspost','xpresspost','','1-866-607-6301','https://cdn.parcelpanel.com/assets/common/images/express/xpresspost.png','https://www.canadapost.ca/trackweb/en#/search?searchFor=******',9999,1704193937),('xqwl','XQ Express','','020-2917 2361','https://cdn.parcelpanel.com/assets/common/images/express/xqwl.png','http://121.40.73.213:8082/trackIndex.htm',9999,1704193937),('xru','XRU','','400-688-0611','https://cdn.parcelpanel.com/assets/common/images/express/xru.png','http://www.xru.com/',9999,1704193937),('xs-exp','Xin Shu Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/xs-exp.png','http://106.52.18.124:8082/trackIndex.htm',9999,1704193937),('xtl','Xun Tian International','','020-36833002','https://cdn.parcelpanel.com/assets/common/images/express/xtl.png','https://xtl.itdida.com',9999,1704193937),('xyslogistics','XYS Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/xyslogistics.png','http://xyslogistics.com/track.html?c=******',9999,1704193937),('yadex','Yadex','','0769-85157789','https://cdn.parcelpanel.com/assets/common/images/express/yadex.png','http://www.yadex.com.cn/',9999,1704193937),('yakit','yakit','','+1 408 645 0086','https://cdn.parcelpanel.com/assets/common/images/express/yakit.png','https://www.yakit.com/shipment-tracking/',9999,1704193937),('yanwen','Yanwen','','86 400-108-5656','https://cdn.parcelpanel.com/assets/common/images/express/yanwen.png','https://track.yw56.com.cn/cn/querydel?nums=******',23,1704193937),('ybdexpress','Ybd Express','','+86 18058848333','https://cdn.parcelpanel.com/assets/common/images/express/ybdexpress.png','http://www.ybdexpress.com',183,1704193937),('ydexp','Yide International Freight Forwarder','','400-820-0153','https://cdn.parcelpanel.com/assets/common/images/express/ydexp.png','http://www.ydexp.com/',9999,1704193937),('ydhex','YDH','','+86 400-888-1378','https://cdn.parcelpanel.com/assets/common/images/express/ydhex.png','http://www.ydhex.com/tools/inquire?number=******',62,1704193937),('yemen-post','Yemen Post','','( 967) 771000202','https://cdn.parcelpanel.com/assets/common/images/express/yemen-post.png','http://www.yemenpost.net/',9999,1704193937),('yfhex','YFHEX LOGISTICS','','0769-87001100','https://cdn.parcelpanel.com/assets/common/images/express/yfhex.png','http://www.yfhex.com',132,1704193937),('yht','Eshipping Gateway','','+86 0755-83257748','https://cdn.parcelpanel.com/assets/common/images/express/yht.png','https://www.eshippinggateway.com/uexpress/cargo-tracking.html?orderNo=******',139,1704193937),('yhtlogistics','Hanghangtong Logistics','','4001-6868-56','https://cdn.parcelpanel.com/assets/common/images/express/yhtlogistics.png','www.yhtlogistics.com',9999,1704193937),('yidingmu','Monotetrad','','','https://cdn.parcelpanel.com/assets/common/images/express/yidingmu.png','',9999,1704193937),('yimidida','YMDD','','4008-311-311','https://cdn.parcelpanel.com/assets/common/images/express/yimidida.png','https://www.yimidida.com/online/waybilltrack.jsp',9999,1704193937),('yixiang','YIXIANG','','','https://cdn.parcelpanel.com/assets/common/images/express/yixiang.png','http://www.szdhl.cn/',9999,1704193937),('yiyuan','YiYuan','','','https://cdn.parcelpanel.com/assets/common/images/express/yiyuan.png','http://139.196.166.242/search_order.aspx?trackNumber=******&BtnSearch=+',218,1704193937),('yji','YJI','','','https://cdn.parcelpanel.com/assets/common/images/express/yji.png','http://www.yanjin-gj.com/track.aspx',209,1704193937),('yjs-china','Yjs-China','','+0476-5602057','https://cdn.parcelpanel.com/assets/common/images/express/yjs-china.png','http://www.yjs-china.com/#',9999,1704193937),('ylexp','Yi Long Exp','','021- 54323229','https://cdn.parcelpanel.com/assets/common/images/express/ylexp.png','http://www.ylexp.com/',9999,1704193937),('ymy','Yong Man Yi','','','https://cdn.parcelpanel.com/assets/common/images/express/ymy.png','http://www.2ezi-ymy.com',9999,1704193937),('yodel','Yodel','','0844 755 0117','https://cdn.parcelpanel.com/assets/common/images/express/yodel.png','https://www.yodel.co.uk/track?error=5&parcel_id=31312414&postcode=1321',105,1704193937),('yoseus','Yousheng International Express','','765-688-0099','https://cdn.parcelpanel.com/assets/common/images/express/yoseus.png','https://www.yoseus.com',9999,1704193937),('youban','Postal State International','','02203-8095414','https://cdn.parcelpanel.com/assets/common/images/express/youban.png','http://www.youban.de/',9999,1704193937),('ysdpost','YSD Post','','','https://cdn.parcelpanel.com/assets/common/images/express/ysdpost.png','http://c.ysdpost.com:8082/trackIndex.htm',114,1704193937),('yto','YTO Express','','95554','https://cdn.parcelpanel.com/assets/common/images/express/yto.png','http://www.yto.net.cn/gw/service/Shipmenttracking.html',9999,1704193937),('yue777','Yuema Express','','（831）337 4444','https://cdn.parcelpanel.com/assets/common/images/express/yue777.png','http://www.yue777.com/',9999,1704193937),('yujtong','Yujietong','','','https://cdn.parcelpanel.com/assets/common/images/express/yujtong.png','',9999,1704193937),('yunda','Yunda Express','','+86 95546','https://cdn.parcelpanel.com/assets/common/images/express/yunda.png','http://www.udalogistic.com/index',9999,1704193937),('yunexpress','YunExpress','','4000-2621-26','https://cdn.parcelpanel.com/assets/common/images/express/yunexpress.png','http://www.yuntrack.com/track/detail?id=******',20,1704193937),('yunhui','YunHui Express','','','https://cdn.parcelpanel.com/assets/common/images/express/yunhui.png','http://www.ayh56.com',157,1704193937),('yunlu','YL express','','+86 18688668111','https://cdn.parcelpanel.com/assets/common/images/express/yunlu.png','http://www.yl-scm.com/Express-index.html?m=Express&a=index&waybill_number=******&doexp=',9999,1704193937),('yuteng','YuTeng Worldwide','','','https://cdn.parcelpanel.com/assets/common/images/express/yuteng.png','http://www.yutengguoji.com/register.html?documentCode=******',9999,1704193937),('ywbzexpress','Bai Zhou Huo Yun','','','https://cdn.parcelpanel.com/assets/common/images/express/ywbzexpress.png','http://www.ywbzexpress.com/search_order.aspx?trackNumber=******&BtnSearch=+',9999,1704193937),('yxilogistics','Yue Xi Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/yxilogistics.png','http://www.yxilogistics.com/cn/track-trace/',9999,1704193937),('yypost','YYPOST','','0755 8522 5125','https://cdn.parcelpanel.com/assets/common/images/express/yypost.png','http://www.yypostal.com:8082/trackIndex.htm',9999,1704193937),('yz-ex','SLICITY','','0579-85869329','https://cdn.parcelpanel.com/assets/common/images/express/yz-ex.png','http://www.yz-ex.com/',9999,1704193937),('zajil','Zajil','','920000177','https://cdn.parcelpanel.com/assets/common/images/express/zajil.png','https://zajil-express.com/en/',9999,1704193937),('zambia-post','Zambia Post','','(260) 0978 118881','https://cdn.parcelpanel.com/assets/common/images/express/zambia-post.png','http://www.postglobalonline.com/track/zm/track.aspx',9999,1704193937),('zeleris','Zeleris','','+34 91 707 4001','https://cdn.parcelpanel.com/assets/common/images/express/zeleris.png','https://www.zeleris.com/seguimiento_envio.aspx',126,1704193937),('zes-express','ESHUN International Logistics','','0579-85400510','https://cdn.parcelpanel.com/assets/common/images/express/zes-express.png','http://120.26.82.200:8080/track_query.aspx?track_number=******',9999,1704193937),('zhiguil','Zhigu special goods','','0755-28269492','https://cdn.parcelpanel.com/assets/common/images/express/zhiguil.png','http://www.zhiguil.com/',9999,1704193937),('zhiteng','Zhi Teng Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/zhiteng.png','http://zhiteng.biz/',9999,1704193937),('zhonghuanus','Central Transit','','400-673-9555','https://cdn.parcelpanel.com/assets/common/images/express/zhonghuanus.png','http://www.zhonghuanus.com/',9999,1704193937),('zhongsu','ZHONGSU International','','+86 13705882229','https://cdn.parcelpanel.com/assets/common/images/express/zhongsu.png','http://zsgjky.com/',9999,1704193937),('zhuozhi','Top Ideal Express','','020 62262811','https://cdn.parcelpanel.com/assets/common/images/express/zhuozhi.png','https://www.esdex.com/',9999,1704193937),('zim','ZIM Logistics','','+86 (21) 23278000','https://cdn.parcelpanel.com/assets/common/images/express/zim.png','https://www.zim-logistics.com.cn/',94,1704193937),('zimbabwe-post','Zimbabwe Post','','(263) 4 783 583-94','https://cdn.parcelpanel.com/assets/common/images/express/zimbabwe-post.png','http://ips-webtracking.zimpost.co.zw/trackit/',9999,1704193937),('zinc','Zinc','','','https://cdn.parcelpanel.com/assets/common/images/express/zinc.png','https://tracking.link/tracking?tracking_id=******',206,1704193937),('zip-ph','Zip Philippines','','','https://cdn.parcelpanel.com/assets/common/images/express/zip-ph.png','https://zip-ph.com/tracking?no=******',9999,1704193937),('zis-one','ZIS','','','https://cdn.parcelpanel.com/assets/common/images/express/zis-one.png','http://112.74.73.203:8086/xms/client/wnoView.htm',9999,1704193937),('zjcy56','zjcy56','','','https://cdn.parcelpanel.com/assets/common/images/express/zjcy56.png','',9999,1704193937),('zjs-express','ZJS International','','400-6789-000','https://cdn.parcelpanel.com/assets/common/images/express/zjs-express.png','http://www.zjs.com.cn/yscp/index.jhtml',9999,1704193937),('zlwww','ZhongLu Logistics','','','https://cdn.parcelpanel.com/assets/common/images/express/zlwww.png','http://www.zlwww.vip/',9999,1704193937),('zmcexpress','ZMC EXPRESS','','','https://cdn.parcelpanel.com/assets/common/images/express/zmcexpress.png','https://www.zmcexpress.com',9999,1704193937),('zmetaport','ZMETAPORT','','','https://cdn.parcelpanel.com/assets/common/images/express/zmetaport.png','https://www.zmetaport.com/#/home',9999,1704193937),('zrtl','Zhongrong Tailong','','400-021-6900','https://cdn.parcelpanel.com/assets/common/images/express/zrtl.png','http://www.zrtl.com/',9999,1704193937),('ztcce','Midway Express','','','https://cdn.parcelpanel.com/assets/common/images/express/ztcce.png','',9999,1704193937),('ztky','Zhongtie Logistics','','400-000-5566','https://cdn.parcelpanel.com/assets/common/images/express/ztky.png','http://www.ztky.com/GoodsTrace?funcid=14&companyid=1',9999,1704193937),('zto','ZTO Express','','4008-270-270','https://cdn.parcelpanel.com/assets/common/images/express/zto.png','https://www.zto.com/express/expressCheck.html?txtBill=******',213,1704193937),('zto-international','ZTO International','','95311','https://cdn.parcelpanel.com/assets/common/images/express/zto-international.png','https://www.ztoglobal.com/',9999,1704193937),('zy100-express','Cosco Express','','(+0852) 3062 2628','https://cdn.parcelpanel.com/assets/common/images/express/zy100-express.png','http://www.zy100-express.com/',9999,1704193937);
/*!40000 ALTER TABLE `wpj7_parcelpanel_courier` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_parcelpanel_location`
--

DROP TABLE IF EXISTS `wpj7_parcelpanel_location`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_parcelpanel_location` (
  `id` char(32) NOT NULL,
  `data` text DEFAULT NULL,
  `expired_at` int(10) unsigned NOT NULL DEFAULT 0,
  `updated_at` int(10) unsigned NOT NULL DEFAULT 0,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_parcelpanel_location`
--

LOCK TABLES `wpj7_parcelpanel_location` WRITE;
/*!40000 ALTER TABLE `wpj7_parcelpanel_location` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpj7_parcelpanel_location` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_parcelpanel_tracking`
--

DROP TABLE IF EXISTS `wpj7_parcelpanel_tracking`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_parcelpanel_tracking` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `order_id` bigint(20) DEFAULT NULL,
  `order_item_id` bigint(20) unsigned DEFAULT 0,
  `tracking_number` varchar(50) NOT NULL DEFAULT '',
  `courier_code` varchar(191) NOT NULL DEFAULT '',
  `shipment_status` tinyint(3) NOT NULL DEFAULT 1,
  `last_event` text DEFAULT NULL,
  `original_country` varchar(10) NOT NULL DEFAULT '',
  `destination_country` varchar(10) NOT NULL DEFAULT '',
  `origin_info` text DEFAULT NULL,
  `destination_info` text DEFAULT NULL,
  `trackinfo` text DEFAULT NULL,
  `transit_time` tinyint(4) DEFAULT 0,
  `stay_time` tinyint(4) DEFAULT 0,
  `sync_times` tinyint(4) NOT NULL DEFAULT 0,
  `received_times` tinyint(4) NOT NULL DEFAULT 0,
  `fulfilled_at` int(10) unsigned NOT NULL DEFAULT 0,
  `updated_at` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `tracking_number` (`tracking_number`),
  KEY `order_id` (`order_id`),
  KEY `shipment_status` (`shipment_status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_parcelpanel_tracking`
--

LOCK TABLES `wpj7_parcelpanel_tracking` WRITE;
/*!40000 ALTER TABLE `wpj7_parcelpanel_tracking` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpj7_parcelpanel_tracking` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_parcelpanel_tracking_items`
--

DROP TABLE IF EXISTS `wpj7_parcelpanel_tracking_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_parcelpanel_tracking_items` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint(20) unsigned NOT NULL,
  `order_item_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `quantity` smallint(5) unsigned NOT NULL DEFAULT 0,
  `tracking_id` int(10) unsigned NOT NULL DEFAULT 0,
  `shipment_status` tinyint(1) unsigned NOT NULL DEFAULT 1,
  `custom_shipment_status` smallint(5) unsigned NOT NULL DEFAULT 0,
  `custom_status_time` varchar(191) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  KEY `tracking_id` (`tracking_id`),
  KEY `order_id` (`order_id`),
  KEY `shipment_status` (`shipment_status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_parcelpanel_tracking_items`
--

LOCK TABLES `wpj7_parcelpanel_tracking_items` WRITE;
/*!40000 ALTER TABLE `wpj7_parcelpanel_tracking_items` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpj7_parcelpanel_tracking_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpj7_pmxe_exports`
--

DROP TABLE IF EXISTS `wpj7_pmxe_exports`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpj7_pmxe_exports` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `parent_id` bigint(20) NOT NULL DEFAULT 0,
  `attch_id` bigint(20) NOT NULL DEFAULT 0,
  `options` longtext DEFAULT NULL,
  `scheduled` varchar(64) NOT NULL DEFAULT '',
  `registered_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `friendly_name` text NOT NULL DEFAULT '',
  `exported` bigint(20) NOT NULL DEFAULT 0,
  `canceled` tinyint(1) NOT NULL DEFAULT 0,
  `canceled_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `settings_update_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `last_activity` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `processing` tinyint(1) NOT NULL DEFAULT 0,
  `executing` tinyint(1) NOT NULL DEFAULT 0,
  `triggered` tinyint(1) NOT NULL DEFAULT 0,
  `iteration` bigint(20) NOT NULL DEFAULT 0,
  `export_post_type` text NOT NULL DEFAULT '',
  `client_mode_enabled` tinyint(4) NOT NULL DEFAULT 0,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `created_at_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `rte_last_row` mediumtext NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpj7_pmxe_exports`
--

LOCK TABLES `wpj7_pmxe_exports` WRITE;
/*!40000 ALTER TABLE `wpj7_pmxe_exports` DISABLE KEYS */;
INSERT INTO `wpj7_pmxe_exports` VALUES (1,0,0,'a:97:{s:14:\"is_user_export\";b:0;s:22:\"is_woo_customer_export\";b:0;s:17:\"is_comment_export\";b:0;s:18:\"is_taxonomy_export\";b:0;s:20:\"is_woo_review_export\";b:0;s:3:\"cpt\";a:1:{i:0;s:4:\"post\";}s:11:\"whereclause\";s:0:\"\";s:10:\"joinclause\";a:0:{}s:11:\"exportquery\";O:8:\"WP_Query\":57:{s:5:\"query\";a:5:{s:9:\"post_type\";a:1:{i:0;s:4:\"post\";}s:11:\"post_status\";s:3:\"any\";s:7:\"orderby\";s:2:\"ID\";s:5:\"order\";s:3:\"ASC\";s:14:\"posts_per_page\";i:10;}s:10:\"query_vars\";a:67:{s:9:\"post_type\";a:1:{i:0;s:4:\"post\";}s:11:\"post_status\";s:3:\"any\";s:7:\"orderby\";s:2:\"ID\";s:5:\"order\";s:3:\"ASC\";s:14:\"posts_per_page\";i:10;s:5:\"error\";s:0:\"\";s:1:\"m\";s:0:\"\";s:1:\"p\";i:0;s:11:\"post_parent\";s:0:\"\";s:7:\"subpost\";s:0:\"\";s:10:\"subpost_id\";s:0:\"\";s:10:\"attachment\";s:0:\"\";s:13:\"attachment_id\";i:0;s:4:\"name\";s:0:\"\";s:8:\"pagename\";s:0:\"\";s:7:\"page_id\";i:0;s:6:\"second\";s:0:\"\";s:6:\"minute\";s:0:\"\";s:4:\"hour\";s:0:\"\";s:3:\"day\";i:0;s:8:\"monthnum\";i:0;s:4:\"year\";i:0;s:1:\"w\";i:0;s:13:\"category_name\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:3:\"cat\";s:0:\"\";s:6:\"tag_id\";s:0:\"\";s:6:\"author\";s:0:\"\";s:11:\"author_name\";s:0:\"\";s:4:\"feed\";s:0:\"\";s:2:\"tb\";s:0:\"\";s:5:\"paged\";i:0;s:8:\"meta_key\";s:0:\"\";s:10:\"meta_value\";s:0:\"\";s:7:\"preview\";s:0:\"\";s:1:\"s\";s:0:\"\";s:8:\"sentence\";s:0:\"\";s:5:\"title\";s:0:\"\";s:6:\"fields\";s:0:\"\";s:10:\"menu_order\";s:0:\"\";s:5:\"embed\";s:0:\"\";s:12:\"category__in\";a:0:{}s:16:\"category__not_in\";a:0:{}s:13:\"category__and\";a:0:{}s:8:\"post__in\";a:0:{}s:12:\"post__not_in\";a:0:{}s:13:\"post_name__in\";a:0:{}s:7:\"tag__in\";a:0:{}s:11:\"tag__not_in\";a:0:{}s:8:\"tag__and\";a:0:{}s:12:\"tag_slug__in\";a:0:{}s:13:\"tag_slug__and\";a:0:{}s:15:\"post_parent__in\";a:0:{}s:19:\"post_parent__not_in\";a:0:{}s:10:\"author__in\";a:0:{}s:14:\"author__not_in\";a:0:{}s:14:\"search_columns\";a:0:{}s:19:\"ignore_sticky_posts\";b:0;s:16:\"suppress_filters\";b:0;s:13:\"cache_results\";b:1;s:22:\"update_post_term_cache\";b:1;s:22:\"update_menu_item_cache\";b:0;s:19:\"lazy_load_term_meta\";b:1;s:22:\"update_post_meta_cache\";b:1;s:8:\"nopaging\";b:0;s:17:\"comments_per_page\";s:2:\"50\";s:13:\"no_found_rows\";b:0;}s:9:\"tax_query\";O:12:\"WP_Tax_Query\":6:{s:7:\"queries\";a:0:{}s:8:\"relation\";s:3:\"AND\";s:16:\"\0*\0table_aliases\";a:0:{}s:13:\"queried_terms\";a:0:{}s:13:\"primary_table\";s:9:\"qdx_posts\";s:17:\"primary_id_column\";s:2:\"ID\";}s:10:\"meta_query\";O:13:\"WP_Meta_Query\":9:{s:7:\"queries\";a:0:{}s:8:\"relation\";N;s:10:\"meta_table\";N;s:14:\"meta_id_column\";N;s:13:\"primary_table\";N;s:17:\"primary_id_column\";N;s:16:\"\0*\0table_aliases\";a:0:{}s:10:\"\0*\0clauses\";a:0:{}s:18:\"\0*\0has_or_relation\";b:0;}s:10:\"date_query\";b:0;s:14:\"queried_object\";N;s:17:\"queried_object_id\";N;s:7:\"request\";s:243:\"\n			SELECT SQL_CALC_FOUND_ROWS  qdx_posts.*\n			FROM qdx_posts \n			WHERE 1=1  AND qdx_posts.post_type = \'post\' AND ((qdx_posts.post_status <> \'trash\' AND qdx_posts.post_status <> \'auto-draft\'))\n			\n			ORDER BY qdx_posts.ID ASC\n			LIMIT 0, 10\n		\";s:5:\"posts\";a:10:{i:0;O:7:\"WP_Post\":24:{s:2:\"ID\";i:152;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-11-30 15:32:18\";s:13:\"post_date_gmt\";s:19:\"2022-11-30 21:32:18\";s:12:\"post_content\";s:7559:\"<!-- wp:flatsome/uxbuilder -->\n[ux_text text_align=\"left\"]\n\n<div>Chinese lanterns perfectly embody the culture of China, discover through this article their history and their meaning, but also the different types of lanterns and their uses.</div>\n[/ux_text]\n[gap]\n\n<h2>History of Chinese Lanterns</h2>\n<p>Chinese lanterns first appeared during the Han Dynasty, and more precisely during the Eastern Hans Dynasty (25-220). Historians believe that they were mainly used as lamps, long before the invention of electricity or the use of gas. To make them, several <strong>craft techniques</strong> were used, such as painting, paper cutting or sewing. The materials used varied and included bamboo, wood, wheat straw, or metal. However, the most common materials used were paper and silk.</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"568\" image_size=\"original\" height=\"56.25%\"]\n\n[gap height=\"50px\"]\n\n<div>Then, the monks began to light lanterns <strong>to worship Buddha</strong>, especially on the twelfth day of the first month of the lunar calendar. During the Eastern Hans Dynasty, Emperor Liu Zhuang, who was a Buddhist, ordered the Chinese to use lanterns to imitate the monks, and thus popularized the Chinese lanterns.</div>\n<div>&nbsp;</div>\n<div>Later, during the Tang Dynasty (618-907), the Chinese made and lit lanterns to show their <strong>gratitude</strong> for the happy life they led. These illuminations symbolized the strength, power and prosperity of China.</div>\n<div>&nbsp;</div>\n<div>Finally, historians have also concluded that Chinese lanterns were used during <strong>wars</strong>, as a means of communication to transmit secret messages or to signal an intruder.</div>\n[gap]\n\n<h2>Ancient Types of Chinese Lanterns</h2>\n<p>In ancient times, the types of lanterns were quite varied. One of them was the royal lanterns, which, as the name suggests, were generally used for lighting purposes in castles and palaces. They are known to evoke a very <strong>delicate Chinese craftsmanship</strong>.</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"572\" image_size=\"original\" height=\"56.25%\"]\n\n[gap height=\"50px\"]\n\n<p>Lanterns were also used to cast shadows, usually for entertainment purposes. These <strong>lanterns</strong> had the same shape as the royal lanterns, except that they were covered with not one, but two layers of paper or silk.</p>\n<p>Then, additional paper cuts were glued into the inner layer to <strong>create shadows</strong> when lit. The heat caused the paper to rotate, causing the shadows to spin and move across the walls.</p>\n[gap]\n\n<h2>Modern Chinese Lanterns</h2>\n<p>Nowadays, more and more types of lanterns are available. There is still a wide variety of lanterns in a traditional style: paper lanterns, candle lanterns, gauze lanterns, tissue paper lanterns, rice paper lanterns... But technology is sometimes also used, and the traditional candles are sometimes replaced by LED bulbs.</p>\n<p>So we find electric lanterns, sometimes with a multicolored light, and even musical lanterns. The shape of Chinese lanterns has evolved and diversified. Thus, we find in the shape of animals, cartoon characters, signs of the Chinese zodiac or flowers such as the sacred lotus.</p>\n<p>In addition, lanterns are evolving with the times, and we find more and more lanterns that are entirely biodegradable, with a vegetable wax burner, or other celestial lanterns designed to go down gently when the burner is extinguished.</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"574\" image_size=\"original\" height=\"56.25%\"]\n\n[gap height=\"50px\"]\n\n<h2>Use of Chinese Lanterns</h2>\n<div>Generally speaking, Chinese people use lanterns in three ways: the most common is to hang the lantern. In remote areas, one can even find <strong>hanging lanterns</strong> adorning street lamps. These hanging lanterns, often decorated with tassels, are not always bright and are often hung in front of stalls as good luck charms, or decoratively in front of houses.</div>\n<div>&nbsp;</div>\n<div>Flying lanterns, also called sky lanterns, are particularly popular during the Spring Festival, celebrated during the first full moon of the Chinese calendar. They are then released into the sky by thousands, propelled by hot air, like balloons.&nbsp; This <strong>Asian lantern</strong> is not only the apparat of China, and there is also a wide variety of Thai flying lanterns.</div>\n<div>&nbsp;</div>\n<div>Finally, the <a href=\"https://www.nightlightsevent.com/\">floating lanterns</a>, equipped with waterproof burners, are especially used during the Dragon Boat Festival, where they are placed on rivers and lakes during the celebrations. Each one creates a light reflection on the water, for a totally fairy-like atmosphere.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"576\" height=\"56.25%\"]\n\n[gap height=\"50px\"]\n\n<div>Very festive, the Chinese lantern is generally used during celebrations and holidays. Chinese families like to light them during the Chinese New Year or any other celebration where everyone goes for a lantern release (Discover the festivals and celebrations in China).</div>\n<div>&nbsp;</div>\n<div>The <strong>Chinese New Year</strong> ends on the fifteenth day of the first lunar month with the Spring Festival, also called the Lantern Festival. On this day, thousands of paper lanterns are released all over the country for a very romantic and poetic air show. Families light up hundreds of lanterns, often with calligraphy riddles for the children to solve.</div>\n<div>&nbsp;</div>\n<div>If they succeed, they are rewarded with small gifts or sweets. It is also customary for uncles to buy lanterns for their nephews, if they are under twelve, before the <strong>festival</strong>. This shows that they wish their nephew the best, especially that they are in excellent health for the coming year.</div>\n<div>&nbsp;</div>\n<div>In China, apart from national celebrations, lanterns are also common at weddings, birth ceremonies, or any other event to which one wishes to bring <strong>good fortune</strong>. It is then customary to hang lanterns in front of one\'s house or in the wedding hall, as decorations and good luck charms.</div>\n<div>&nbsp;</div>\n<div>In the West, the Asian lanterns have conquered by their festive and decorative side. The <strong>celestial lantern</strong>, in particular, is very popular for a wedding or a birthday party and will impress the guests. Lanterns garlands or lights, then in the shape of balls more round than traditional lanterns, are also very common in Western homes.</div>\n[gap]\n\n<h2>Meaning of Chinese Lanterns</h2>\n<p>Generally speaking, Chinese lanterns symbolize <strong>vitality</strong>, <strong>social status</strong>, and especially <strong>good fortune</strong>. They are found in a multitude of colors. Red lanterns are the most popular, because in China, the color red is a sign of good luck and happiness. In Chinese culture, red is also a symbol of vitality and energy.</p>\n<p>On the other hand, using a blue lantern means that a family member is sick, because in <strong>Chinese culture</strong>, blue is a symbol of illness and low energy. White lanterns, on the other hand, represent death and mourning.</p>\n<p>A white lantern at the entrance of a house will show that a death has occurred in the family, and announce a mourning. Finally, purple will tend to bring bad luck, and is a rather rare lantern color. The material is not important, whether you use a <strong>paper or silk lantern</strong> depends on your taste.</p>\n[ux_products cat=\"42\" products=\"4\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->\";s:10:\"post_title\";s:39:\"History and Meaning of Chinese Lanterns\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:32:\"history-meaning-chinese-lanterns\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2023-03-11 19:31:05\";s:17:\"post_modified_gmt\";s:19:\"2023-03-12 01:31:05\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:28:\"https://teng-shop.com/?p=152\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:1;O:7:\"WP_Post\":24:{s:2:\"ID\";i:598;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-12-17 23:52:28\";s:13:\"post_date_gmt\";s:19:\"2022-12-18 05:52:28\";s:12:\"post_content\";s:11802:\"<!-- wp:flatsome/uxbuilder -->\n<p>The Chinese character \"箸\" is translated as \"chopsticks\", which are unique eating utensils invented by the ancient Chinese civilizations during the Neolithic Age, 7,000 to 6,000 BC. The ancient chopsticks were mainly made of animal bones. Today, among the various tableware available, chopsticks perfectly embody Chinese cultural characteristics, becoming an important symbol of Chinese tradition.</p>\n[gap]\n\n<h2>Meaning of Chinese Chopsticks</h2>\n<div>Chopsticks originated in China. Although simple, they are a great invention in human history. \"Chopsticks, although they are only two pieces of wood, represent the theory of leverage in physics,\" said Dr. Li Zhengdao, a famous Chinese physicist.</div>\n<div>&nbsp;</div>\n<div>According to modern science, long-time use of chopsticks makes the fingers flexible, which is beneficial to physical and mental health. Chopsticks are available in all kinds. So, among the various kitchen utensils available today, chopsticks with a lucky charm are very popular with the Chinese.</div>\n<div>&nbsp;</div>\n<div>Chopsticks symbolize the centuries-old Chinese civilization and embody the 5,000-year history of China. Whether Chinese people live in China or abroad, they cherish their connection with chopsticks.</div>\n[gap height=\"50px\"]\n\n[ux_image]\n\n[gap height=\"50px\"]\n\n<div>\"One chopstick can be easily broken, ten pairs of chopsticks stand firmly together.\" People are familiar with this beautiful and enlightened song by Fu Disheng, a well-known singer in China.</div>\n<div>&nbsp;</div>\n<div>Indeed, a chopstick is so delicate that it can be easily broken. However, ten pairs of chopsticks possess a strength that is indestructible under any circumstances. This symbol of chopsticks reflects a spirit of unity, perseverance and power, which are strong values in China. This spirit that lives in the chopsticks will always influence, inspire and encourage people.</div>\n<div>&nbsp;</div>\n<div>In a word, chopsticks are part of the Chinese gastronomic culture, rich of many centuries.</div>\n[gap height=\"50px\"]\n\n[ux_image]\n\n[gap height=\"50px\"]\n\n<h2>The history of Chinese chopsticks</h2>\n<p>One of the main features of China\'s culinary custom is the use of chopsticks. Chopsticks, also called \"zhu\" (箸) in ancient times, have a long history in China. In fact, the Book of Rites advocated, \"You cannot have a meal without chopsticks\". These objects, rich in several centuries of history appeared during the Sang Dynasty.</p>\n[gap]\n\n<h3>The Origin of Chinese Chopsticks</h3>\n<p>Lan Xiang, the curator of the Folk Chopsticks Pavilion, said that historical records date the ivory chopsticks to 3,100 years ago. As it is written in the records, \"Zhou\" (the emperor at the end of the Sang Dynasty) used the ivory chopsticks while Ji Zi, Zhou\'s uncle, worried \"because it was too luxurious\".</p>\n<p>After the emperor killed the elephant to impose his power, he sawed the ivory to make chopsticks that are known as the first chopsticks in history. However, historically they were not the first chopsticks but the first ones made of ivory in China. That is why Chinese ivory chopsticks have a strong symbolism.</p>\n[gap height=\"50px\"]\n\n[ux_image]\n\n[gap height=\"50px\"]\n\n<div>The existence of Chinese chopsticks dates back to almost 1,000 years before the existence of ivory chopsticks. The first chopsticks were made of bamboo because China was then covered with primeval forests.</div>\n<div>&nbsp;</div>\n<div>Branches were broken to cook food in a pot. It was impossible to grasp the food by hand because the food was very hot. So the Chinese found a way to use the bamboo branches to pick up the food. We suppose that the ancient chopsticks had a different size from each other.&nbsp;</div>\n<div>&nbsp;</div>\n<div>Since the Sang Dynasty, the chopsticks are the same length and size.</div>\n<div>&nbsp;</div>\n<div>In ancient times, chopsticks were made from local materials such as branches, sticks, animal bones and horns. Chopsticks were mainly made of wood and bamboo in primitive society.</div>\n<div>&nbsp;</div>\n<div>Ivory and jade chopsticks appeared in Xiang and Sang dynasties, while copper and iron chopsticks appeared in spring and autumn and warring states (from 770 to 221 BC), flaming lacquer chopsticks, delicate silver and gold chopsticks in Han-Wei and six dynasties (the kingdom of Wu, Jing, Song, Qi, Liang, Chen). Today, there are chopsticks made of various materials, including ivory, rhinoceros horn, golden ebony and assorted jades.</div>\n[gap height=\"50px\"]\n\n[ux_image]\n\n[gap height=\"50px\"]\n\n<h3>Legends about Chinese chopsticks</h3>\n<p>People who use chopsticks, including the Chinese, admire the invention, but nobody knows who invented it. There is no precise data as to the creator of this invention that has made significant contributions to human civilization.</p>\n<p>Some believe that the increase in illiteracy, among other reasons, explains this lack of information. There are, however, myths surrounding the birth of chopsticks. Here is a summary of two legends, centered on the origin of chopsticks:</p>\n[gap]\n\n<h4>The legend of Jiang Ziya</h4>\n<div>The legend has spread to areas such as Sichuan province. It was said that Jiang Ziya was capable of nothing but fishing. He was so poor that his wife could not bear to live with him and planned to kill him to marry another man.</div>\n<div>&nbsp;</div>\n<div>One day, Jiang returned home empty-handed after fishing. His wife said, \"You must be hungry. I made some meat for you. Come and eat!\" He was hungry, so he reached out his hands to take the meat. Suddenly, a bird on window pecked his hand. The pain made him scream. In his pain, Jiang tried to chase the bird away from the window but the bird pecked him a second time.</div>\n<div>&nbsp;</div>\n<div>Jiang was so confused, he didn\'t understand why the bird kept pecking him. To understand, he tried to pick up the meat but the same thing happened. He understood that it was because the bird was a divine bird and he chased it to a hill so that no one could see it.</div>\n[gap height=\"50px\"]\n\n[ux_image]\n\n[gap height=\"50px\"]\n\n<p>Standing on a bamboo branch, the divine bird sang, \"Jiang Ziya, don\'t eat the meat with your bare hands, use what is under my feet.\" Hearing this, Jiang took two small sticks from the bamboo and went home. Then he took the meat with the two sticks. After doing this, smoke came out of the bamboo. Jiang understood that the sticks were reacting to the poison that his wife had poured into his food.</p>\n[gap height=\"50px\"]\n\n[ux_image]\n\n[gap height=\"50px\"]\n\n<p>Jiang Ziya knew that the magic bamboo given by the divine bird could detect the poison. So he ate all his meals with them. After the incident, his wife did not dare to poison his food and his neighbors learned to eat with a bamboo branch. Later, more and more people followed this habit, so the custom of eating with chopsticks was passed on from generation to generation.</p>\n[gap]\n\n<h4>The legend of Da Yu</h4>\n<p>This legend has spread throughout northeast China. It is said that Yao and Shun, mythical rulers of ancient China, ordered Da Yu to control a flood. After receiving the order, Yu vowed to eliminate the flood disaster. He did his best to fight the flood day and night, to the point of not eating and sleeping, let alone resting.</p>\n[gap height=\"50px\"]\n\n[ux_image]\n\n[gap height=\"50px\"]\n\n<p>Yu went to an island by boat where he was so hungry that he used an earthen pot to cook the meat. Once the meat was well cooked in the boiling water, he couldn\'t take it by hand and didn\'t want to waste time waiting for it to cool, so he took two branches to pick up the meat from the soup.</p>\n<p>He kept this habit to the point of becoming skilled at picking up food with small sticks, which was imitated by his subordinates who understood that this way of eating could allow them to avoid touching the hot and greasy food with their hands. Thus, the first types of chopsticks were born.</p>\n[gap height=\"50px\"]\n\n[ux_image]\n\n[gap height=\"50px\"]\n\n<p>Although these legends are not historically accurate, they show the way people thought in the past.</p>\n[gap]\n\n<h2>How to use chopsticks?</h2>\n<p>The correct use of chopsticks can be described as follows: the right hand holds the chopsticks with the thumb and forefinger pinching the upper end of the chopsticks and the other three fingers naturally hold the chopsticks, so the two ends of the chopsticks should remain aligned. Before the meal, the chopsticks are carefully placed on the right side of the bowl and after the meal, in the middle of the bowl, in a vertical direction.</p>\n[gap height=\"50px\"]\n\n[ux_image]\n\n[gap height=\"50px\"]\n\n<h2>Taboos on Chopsticks</h2>\n<p>Chinese chopsticks have their share of good, but also bad manners that you should not do at the risk of bringing you bad luck:</p>\n<ul>\n<li><strong>Unexpected bad luck</strong>: Arranging chopsticks of unequal lengths on the table is considered an omen of bad luck.</li>\n<li><strong>Immortal guidance</strong>: If the chopsticks are pinched by the thumb, middle finger, ring finger and little finger while the index finger reaches out, this is considered bad luck.</li>\n<li><strong>Sucking on chopsticks with a sound</strong>: Having a piece of chopstick in your mouth and repeatedly sucking on it with a sound is rude behavior.</li>\n<li><strong>Hitting the cup</strong>: Hitting plates and bowls is considered disrespectful and is looked down upon by others.</li>\n<li><strong>Shaking to make choices</strong>: Taking chopsticks to \"dig\" into plates is a bad way to \"dig the grave\".</li>\n<li><strong>Sinking food</strong>: Dropping soup on other dishes or on the table when picking up food with chopsticks is considered disrespectful.</li>\n<li><strong>Upside down heaven and earth</strong>: Using chopsticks upside down means you are a beggar.</li>\n<li><strong>Key ring</strong>: Using a chopstick to stick food on plates is seen as humiliating to others at the table.</li>\n<li><strong>Burning incense in public</strong>: Chopsticks should not be left upright in a bowl of rice, as this is similar to the incense ritual that symbolizes \"feeding\" the dead.</li>\n<li><strong>Cross</strong>: During the meal, chopsticks should not be crossed on a table as this is perceived negatively.</li>\n<li><strong>Falling chopsticks disturbs the immortal</strong>: During a meal, it is discourteous for chopsticks to accidentally fall on the floor, as falling chopsticks represent a disturbance of the buried ancestors.</li>\n</ul>\n[gap]\n\n<h2>The materials of Chinese chopsticks</h2>\n<div>Chopsticks seem simple and flexible, but they vary in type and composition. There are more than 100 types in Chinese history, the most common being wood, bamboo and melamine.</div>\n<div>&nbsp;</div>\n<div>Lan Xiang has divided Chinese chopsticks into five types based on his collection and research. They are: bamboo chopsticks, metal chopsticks, ivory and bone chopsticks, jade chopsticks and chemical chopsticks.</div>\n<div>&nbsp;</div>\n<div>The earliest and most primitive chopsticks, the wooden and bamboo chopsticks, remain popular today (Discover our Chinese Bamboo Chopsticks and our Wooden Chopsticks).</div>\n<div>&nbsp;</div>\n<div>Bamboo chopsticks are made from different types of bamboo including nandina bamboo, spotted bamboo and phyllostachys pubescens, among others. Bamboo is considered a symbol of traditional Chinese values. It is an example of the harmony between nature and human beings. There are many accessories made of bamboo, especially at Bambou Calme with its collection of bags.</div>\n[gap]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n<!-- /wp:flatsome/uxbuilder -->\";s:10:\"post_title\";s:41:\"Chinese Chopsticks: Origins &amp; History\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:34:\"chinese-chopsticks-origins-history\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2023-03-11 19:30:30\";s:17:\"post_modified_gmt\";s:19:\"2023-03-12 01:30:30\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:28:\"https://teng-shop.com/?p=598\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:2;O:7:\"WP_Post\":24:{s:2:\"ID\";i:666;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-12-18 13:59:28\";s:13:\"post_date_gmt\";s:19:\"2022-12-18 19:59:28\";s:12:\"post_content\";s:14843:\"<!-- wp:flatsome/uxbuilder -->\n<div><strong>China</strong>, as well as many other Eastern cultures, is deeply rooted in Eastern philosophy, with symbolism playing a very large role in today\'s Chinese culture especially in the form of Feng Shui.</div>\n<div>&nbsp;</div>\n<div>An important feature of Feng Shui is the use of <strong>Chinese good luck charms</strong> and decorations to enhance the harmony of your home with its surroundings, improving positive energy while protecting it from bad luck.</div>\n<div>&nbsp;</div>\n<div><strong>As we will see through the 15 most popular good luck charms in Chinese culture, Chinese good luck symbols take many forms. These good luck symbols can also be used with specific elements to enhance various Feng Shui applications.</strong></div>\n<div>&nbsp;</div>\n<h2>1) Dzi Beads</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"725\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Dzi beads are actually not from China but from <strong>Tibet</strong>. The Tibetan word Dzi translates to \"brilliance\" or \"shine\" and in China, Dzi beads are also known as 天珠, literally translated as \"pearl of heaven\".</div>\n<div>&nbsp;</div>\n<div>Usually made of agate carved in unique patterns, Dzi beads are also popular in Chinese Feng Shui practices as good luck charms. Dzi stones are believed to be effective not only in repelling negative energy but also in storing positive energy for the owner\'s good fortune.</div>\n<div>&nbsp;</div>\n<div><strong>Dzi stones</strong> can come in different shapes and patterns: circles, stripes, wave patterns, etc. They are commonly worn as bracelets, or necklaces.</div>\n<div>&nbsp;</div>\n<h2>2) Chinese Lucky Coins</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"723\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>You can easily distinguish the ancient <strong>Chinese coins</strong> with their square hole in the middle. The round shape of the coin symbolizes the sky, while the square hole represents the earth.</div>\n<div>&nbsp;</div>\n<div>The faces of the coins are usually inscribed with four characters around the four sides of the square hole. This is the yang side of the coin. On the other side, the yin side, there are up to two characters.</div>\n<div>&nbsp;</div>\n<div>There are different ways to use these coins as a good luck charm, usually by tying three coins with a string or ribbon in red, which is a <strong>lucky color</strong> in China. It is believed that coin necklaces attract financial luck.</div>\n<div>&nbsp;</div>\n<h2>3) Laughing Buddha</h2>\n[gap height=\"50px\"]\n\n[ux_products cat=\"45\" products=\"4\"]\n\n[gap height=\"50px\"]\n\n<div>One of the most common good luck charms in Chinese Feng Shui is the Laughing <strong>Buddha</strong> or Buddha of Happiness. This lucky charm symbolizes good fortune, prosperity, fertility, health and wealth.</div>\n<div>&nbsp;</div>\n<div>The Laughing Buddha is based on the story of a Buddhist monk who lived in 10th century China. This monk was rather eccentric and did not fit the typical characteristics of serenity and peace of a <strong>Buddhist monk</strong>, but he was always happy with a loving heart, so he was loved by many. This monk was then considered the reincarnation of <a href=\"https://tricycle.org/magazine/who-was-the-buddha/\">Gautama Buddha</a>, and is now believed to symbolize joy, laughter and happiness.</div>\n<div>&nbsp;</div>\n<div>As a good luck charm, the <strong>Laughing Buddha</strong> can be placed anywhere in the house except in the bathroom or toilet. However, it is usually placed in the living room or any other place in your home or business where there is money.</div>\n<div>&nbsp;</div>\n<h2>4) Chinese Luck Cat</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"720\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>The <strong>lucky cat</strong> is based on the Japanese <strong>Maneki-Neko</strong>. It is a very common lucky charm in Feng Shui. The different colors of the cat can symbolize different things, and the fact that the cat raises its paw to the left or right also changes the symbolism.</div>\n<div>&nbsp;</div>\n<div>If the <strong>cat raises its left paw</strong>, it usually symbolizes a male cat that attracts wealth, fortune and professional success in business. So you can place it in your office or in the area where you usually work to enhance your success.</div>\n<div>&nbsp;</div>\n<div>If, on the other hand, the cat raises its right paw, then it is a female cat that symbolizes prosperity, fertility and family happiness, as well as <strong>good health</strong>.</div>\n<div>&nbsp;</div>\n<h2>5) Great Chinese Ship of Fortune</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"729\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>The ship of fortune is also a very important good luck charm in Chinese Feng Shui. As the name suggests, it is a ship-shaped decoration of various shapes and sizes. They usually carry gems and mini treasures to <strong>symbolize</strong> wealth and are very popular placed in homes and businesses.</div>\n<div>&nbsp;</div>\n<div>The fortune ship is believed to attract wealth and good fortune. For proper Feng Shui, the boat usually has sails that fully catch the wind to symbolize moving towards a better future.</div>\n<div>&nbsp;</div>\n<div>There are fortune ships built entirely of precious stones and even gold, and others that are constructed of real wood and <strong>silk fabric</strong>, like a genuine ship.</div>\n<div>&nbsp;</div>\n<h2>6) Three-legged Frog</h2>\n[gap height=\"50px\"]\n\n[products ids=\"6000\" columns=\"1\"]\n\n[gap height=\"50px\"]\n\n<div>The three-legged lucky frog, also called Jin Chanou or Chan Chu is also a very popular and powerful <strong>Chinese Feng Shui lucky charm</strong>. It is believed to attract and protect your fortune, while protecting you and your family from bad luck.</div>\n<div>&nbsp;</div>\n<div>The three-legged frog symbolizes the flow of money, and Feng Shui dictates that this statue should not be placed facing your main door. It should also not be placed in your kitchen and toilet or bathroom.</div>\n<div>&nbsp;</div>\n<div>The common practice is to place the three-legged frog statue in the main entrance, while another <strong>statue</strong> next to it has its back to the entrance. This configuration is meant to protect the flow of money coming and going outside the home or business.</div>\n<div>&nbsp;</div>\n<h2>7) Amethyst Crystal Tree</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"715\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>In <strong>Chinese</strong> Feng Shui, crystals are believed to contain positive healing energy, and many people use them as objects of concentration in their meditation practice.&nbsp;</div>\n<div>&nbsp;</div>\n<div>In this case, amethyst crystals are arranged like a tree (with a resin or plastic tree branch) and are believed to have healing properties to calm the mind. They are also considered a good luck charm for wealth and prosperity. The amethyst crystal tree is said to improve memory while maintaining calm and can also help with insomnia. It has the same functions as <a href=\"http://www.dream-catchers.org/\">dream catchers</a> to chase away evil spirits and help you sleep better.</div>\n<div>&nbsp;</div>\n<div>There are also crystal trees made from other materials like agate, citrine, rose quartz, and others.</div>\n<div>&nbsp;</div>\n<h2>8. Dragon Turtle</h2>\n[gap height=\"50px\"]\n\n[ux_products ids=\"5994\"]\n\n[gap height=\"50px\"]\n\n<div>The dragon and the <strong>turtle</strong> are symbols of protection, wisdom and nobility in Chinese culture. They are two of the four heavenly animals (dragon, tiger, phoenix and turtle).</div>\n<div>&nbsp;</div>\n<div>The dragon turtle, as its name suggests, has the body of a turtle but the head of a dragon, and is believed to symbolize good health, longevity, power, courage and <strong>success</strong>. A dragon turtle statue is believed to protect its owner from betrayal in business and promote healthy harmony at home and in the workplace.</div>\n<div>&nbsp;</div>\n<div>There are several types of dragon turtle statues used as good luck charms, including three of the most important:</div>\n<div>&nbsp;</div>\n<div>Turtle dragon carrying a pagoda (the Wen Chang Pagoda) on its back. It is a good luck charm for <strong>academic success</strong></div>\n<div>Turtle dragon with a baby (or a couple of babies) sitting on its shell. It is believed to improve fertility and family harmony</div>\n<div>Dragon turtle sitting on coins and gold bars, as you may have guessed, symbolizes financial fortune</div>\n<div>&nbsp;</div>\n<h2>9) Pi Xiu</h2>\n[gap height=\"50px\"]\n\n[products ids=\"5996\" columns=\"1\"]\n\n[gap height=\"50px\"]\n\n<div>Pi Xiu also known as Pi Yao, Tian Lu, Bai Jie or Bi Xie, is a mythical Chinese chimera resembling a winged lion with dragon elements. As good luck charms in <strong>Feng Shui</strong>, Pi Xiu statues are believed to protect their owner from evil spirits and negative energy, thus preventing bad luck.&nbsp;</div>\n<div>&nbsp;</div>\n<div>Pi Xiu like to eat gold, jewelry, silver and water. Therefore, it is believed that they get rich from all sides for their owner. The Pi Xiu is thought to be a very loyal and obedient mythological animal, making it a favorite as a <strong>good luck charm for personal protection</strong>. You can find Pi Xiu good luck charms in various forms, such as keychains, bracelets or even statues.</div>\n<div>&nbsp;</div>\n<h2>10) Chi Lin</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"711\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Chi Lin is another mythological chimera from <strong>ancient China</strong>, a creature with the head of a dragon but the body of a horse. In addition, Chi Lin has the scales of a carp fish. Chi Lin is also often called the dragon horse or sometimes the Chinese unicorn.</div>\n<div>&nbsp;</div>\n<div>The Chi Lin is believed to bring protection to its owner, and also improve the health and wealth of the owner. In addition, it is also known to be a protector against various relationship problems to promote a harmonious household. However, it is mostly associated with the <strong>luck</strong> of fertility. If you want to learn more about this creature and many others click here.</div>\n<div>&nbsp;</div>\n<div>As a good luck charm, you can place the Chi Lin sculpture near the main entrance of your home or workplace or in your living room. It can also come in various other forms such as embroidery, statue, keychain, amulets, etc. There are also many different materials, finishes and sizes.</div>\n<div>&nbsp;</div>\n<h2>11) Chinese Guardian Lion</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"709\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>The Chinese guardian lion or Fu dog, is another <strong>Chinese mythological creature</strong>. Traditionally, they are placed in front of imperial palaces, government offices in ancient China, and also temples.</div>\n<div>&nbsp;</div>\n<div>Nowadays, Fu dogs are considered a symbol of a family\'s wealth and social status, so they are often placed in front of large houses in China and <strong>Asia</strong>.</div>\n<div>&nbsp;</div>\n<div>Generally, imperial <strong>guardian lion statues</strong> are displayed in pairs, with the female holding a cub under her left paw, symbolizing maternal protection, and the male holding a globe under his right paw, signifying the protection of his domain (home).</div>\n<div>&nbsp;</div>\n<h2>12) Lucky Bamboo Feng Shui</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"707\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Lucky <strong>Bamboo</strong>, also known as Lucky Bamboo, is a very important plant in Feng Shui and is believed to bring positive and peaceful energy to the home it is in. Bamboo is a flexible plant that is also hollow inside, and in Chinese philosophy, this symbolizes the flexibility and openness of the individual.</div>\n<div>&nbsp;</div>\n<div>Lucky bamboo can be placed inside the house, or you can also grow real bamboo plants in your <strong>garden</strong>. There are also various accessories made from bamboo stalks that are believed to produce the same effect.</div>\n<div>&nbsp;</div>\n<div>The number of stalks also plays an important role in the use of <strong>Lucky Bamboo</strong>. Three stems, for example, are believed to bring three kinds of luck: wealth, longevity and happiness. Seven stems, on the other hand, symbolize health, while eight stems bring good luck to fertility, as the word \"eight\" in Mandarin is very similar to the word used for \"grow\".</div>\n<div>&nbsp;</div>\n<h2>13) Symbol of Double Happiness</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"705\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>The <strong>Chinese symbol</strong> of double happiness is essentially the word (xi) which is written twice side by side so that two of its strokes are joined together.</div>\n<div>&nbsp;</div>\n<div>The meaning of this symbol is quite literal: double dose of happiness for its owner, and it is often used as a <strong>decoration</strong> for holidays and celebrations (e.g. Chinese New Year, birthday parties, birth of a child, etc.).</div>\n<div>&nbsp;</div>\n<div>The Double Happiness sign was first used as a wedding decoration, a symbol of prayer for the newlyweds to be happy and their marriage to last. However, over the years, it has made its way to other <strong>Chinese festivities</strong>.</div>\n<div>&nbsp;</div>\n<h2>14) Chinese Phoenix</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"703\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>It is one of the four guardians of China (Dragon, Turtle, Phoenix and Tiger), the <strong>Phoenix</strong> rules over all other birds in China.</div>\n<div>&nbsp;</div>\n<div>Male phoenixes are called Feng, while females are called Huang. However, the distinction between the sexes is not typically made today, and so the phoenix is often called Fenghuang, a female entity associating with the <strong>dragon</strong>, which is usually a male entity.</div>\n<div>&nbsp;</div>\n<div>As a <strong>good luck charm</strong>, phoenix carvings represent justice, obedience, and loyalty, and are often used as a good luck charm for those experiencing bad luck, as it is believed to be capable of reversal under bad circumstances.</div>\n<div>&nbsp;</div>\n<h2>15) Koi Carp</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"701\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div><strong>Koi</strong> is called 鲤鱼, Li Yu, or literally translated as \"carp fish\" in China. There are many applications to this lucky charm. For example, a carp statue placed on a study desk is believed to bring academic success.</div>\n<div>&nbsp;</div>\n<div>A common practice is to place 8 pieces of carp around the work desk, as 8 is the Chinese number for wealth and prosperity. A few <strong>carp statues</strong> placed in the bedroom are also believed to bring happiness in a marriage.</div>\n\n<!-- /wp:flatsome/uxbuilder -->\";s:10:\"post_title\";s:27:\"Top 15 Chinese Lucky Charms\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:23:\"15-chinese-lucky-charms\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2023-03-11 19:27:44\";s:17:\"post_modified_gmt\";s:19:\"2023-03-12 01:27:44\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:28:\"https://teng-shop.com/?p=666\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:3;O:7:\"WP_Post\":24:{s:2:\"ID\";i:731;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-12-18 15:41:17\";s:13:\"post_date_gmt\";s:19:\"2022-12-18 21:41:17\";s:12:\"post_content\";s:12813:\"<!-- wp:flatsome/uxbuilder -->\n<div>Are there any legendary <strong>Chinese warriors</strong>? What is their name and what is their history?&nbsp;</div>\n<div>&nbsp;</div>\n<div>At Teng Shop, we are passionate about <strong>Chinese culture</strong>, so we will bring you the answers as accurately as possible.</div>\n<div>&nbsp;</div>\n<div><strong>For thousands of years, China has known powerful dynasties and many wars. That\'s why great warriors like Sun Wu, Cao Cao or Xiang Yu were able to shine during these difficult periods.</strong></div>\n<div>&nbsp;</div>\n<div>In this article, you will discover :&nbsp;</div>\n<ul>\n<li>5 very famous Chinese warriors</li>\n<li>Their personal history</li>\n<li>The impact of these <strong>warriors</strong> on China</li>\n<li>After reading this article, these Chinese warriors will no longer hold any secrets for you!</li>\n</ul>\n<div>Without further ado, let\'s discover together the first warrior!</div>\n[gap]\n\n<h2>1. Sun Wu (Sun Tzu)</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"756\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Sun Wu, or <strong>Sun Tzu</strong> is probably the most famous Chinese warrior in the world. The reason for his fame is his famous book \"<strong>The Art of War</strong>\". This book helps war generals to better organize themselves during a battle or during a war in a more general way. This same book is used in many fields today such as business, where it is said that by replacing the word \"war\" by the word \"business\", so we find a whole new reading of the work.</div>\n<div>&nbsp;</div>\n<div>We don\'t have much information about the beginning of Sun Wu\'s life, but everything leads us to believe that he would have been born in the Chinese state of Ch\'i and that he would have served the king Ho-lu of Wu as a <strong>military specialist</strong> at the end of the Zhou dynasty (1046 to 256 B.C.).</div>\n<div>&nbsp;</div>\n<div>All the fame of this general was built on the fact that he focused on a war that was more psychological than brutal. At a time when people simply wanted to eliminate all their opponents during a war, Sun Tzu <strong>proposed alternatives that were much less violent but all the more formidable</strong>. He used human psychology to neutralize enemies and always tried to save as many innocent people as possible.</div>\n<div>&nbsp;</div>\n<div>Following the lessons of <a href=\"https://suntzusaid.com/\">the art of war</a>, you used deception and psychological pressure to crush your enemies. Surprise attacks and breaking enemy alliances are also part of this <strong>tactic</strong>, the important thing being to keep as many men as possible on your side.</div>\n[gap]\n\n<h2>2. Wu Qi</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"754\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Wu Qi (381 BC) was a native of Zuo in the state of Wei. He was one of the <strong>leading military, statesmen and reformers</strong> of the early Three Kingdom period in China.</div>\n<div>&nbsp;</div>\n<div>Wu Qi studied Confucianism under Zeng Shen in his early years, but later abandoned <strong>Confucianism</strong> to study military art. When he was in the state of Lu, he was ordered to command the emperor\'s army and defeat Qi, an enemy of the state. He then went to Wei, where he was highly regarded by the Marquis of Wei.&nbsp;</div>\n<div>&nbsp;</div>\n<div>He also reformed the military system and created the Wei Wu soldiers, who \"won 64 of 76 battles against the <strong>warlords</strong>.\" He was appointed magistrate by the king of Chu and led reforms.</div>\n<div>&nbsp;</div>\n<div>He was appointed magistrate of the state of Chu and implemented reforms that in a short time strengthened the state of Chu and allowed it to \"pacify Baiyue in the south, merge with Chen and Cai in the north, but conquer the three Jin dynasties and <strong>conquer</strong> Qin in the west.\" In 381 B.C., upon the death of the king, Wu Qi was assassinated for offending the old guard with his efforts to change the law.</div>\n<div>&nbsp;</div>\n<div>Wu Qi served in the states of Lu, Wei, and Chu, and was a master of the three schools of thought - <strong>military</strong>, legal, and Confucianism - and was known as \"Sun Wu.\" His work, Wu Zi, occupies an important place in the military canon of ancient China.&nbsp;</div>\n<div>&nbsp;</div>\n<div>During the reign of Emperor Su Zong of the Tang Dynasty, he was included in the King Wucheng Temple and became one of the ten philosophers of the Wushu Temple. During the reign of <strong>Emperor</strong> Huizong of the Song Dynasty, he was posthumously appointed Guangzongbo, one of the seventy-two generals of Wu Temple.</div>\n[gap]\n\n<h2>3. Qin Shi Huang</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"752\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Qin Shi Huang Ying Zheng (259-210 BC), nicknamed Ying, Zhao and also known as Zhao Zheng, was an outstanding statesman, strategist and reformer of <strong>ancient China</strong>. He was the first political figure to complete the unification of China and was the first Chinese monarch to call himself emperor. He is the very first reformer of China, ending ten years of brutal war.</div>\n<div>&nbsp;</div>\n<div>Ying Zheng was born in Handan, the capital of Zhao State. He succeeded to the throne in 247 BC, at the age of thirteen.&nbsp; From 230 to 221 BC, he destroyed the six states of Han, Zhao, Wei, Chu, Yan and Qi, completing the unification of <strong>China</strong> and establishing a centralized and unified multi-ethnic state, the Qin Dynasty. It is from this dynasty that the name of the country would come from, Qin being very similar to the word \"China\".</div>\n<div>&nbsp;</div>\n<div>At the same time, the central government adopted the system of three princes and nine ministers to manage the affairs of state; at the local level, the <strong>feudal system</strong> was abolished and replaced by the county system.&nbsp;</div>\n<div>&nbsp;</div>\n<div>He was also responsible for the construction of the <strong>Great Wall of China</strong>. The construction of this edifice, still standing today, was ordered by Ying Zheng in order to repel the nomadic and barbarian attacks coming from the north. This allowed the Middle Kingdom to remain in peace for more than 15 years, giving the country time to unify in peace.</div>\n[gap height=\"50px\"]\n\n[ux_products cat=\"43\" products=\"4\"]\n\n[gap height=\"50px\"]\n\n<div>Qin also established China\'s first centralized government institutions and replaced the outdated military system - which was normally composed of disorganized peasant fighters - with established <strong>military institutions</strong> that to this day produce career soldiers systematically trained in the most advanced defense tactics.&nbsp;</div>\n<div>&nbsp;</div>\n<div>Qin Shi Huang sought immortality and dreamed of becoming a god. His tyrannical rule and stifling of the wisdom of the people destabilized the foundations of Qin rule. In 210 BC, Qin Shi Huang died at Xingtai Shaqiu during his eastern tour.&nbsp;</div>\n<div>&nbsp;</div>\n<div>This <strong>Chinese warrior</strong> and emperor achieved the feat of defining the basic pattern of the Chinese political system for over 2,000 years. He was hailed by the Ming thinker Li Zhi as the \"only emperor of a thousand ages\".</div>\n[gap]\n\n<h2>4. Xiang Yu</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"9227\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Xiang Yu (232 BC - 202 BC), was a descendant of the Xiang State, a <strong>vassal</strong> state of the Zhou Dynasty.</div>\n<div>&nbsp;</div>\n<div>As a young man, Xiang Yu learned nothing about books and swords, but he had the great ambition to <strong>fight</strong> against the Qin. In September of the first year of the second Qin dynasty (209 BC), he accompanied Xiang Liang to fight at Huiji (now Suzhou, Jiangsu province) in response to the uprising of Chen Sheng and Wu Guang.</div>\n<div>&nbsp;</div>\n<div>After the death of Chen Sheng, he took the lead of the main anti-Qin forces and installed Xiong Xin, the grandson of King Huai of Chu, as king.&nbsp;</div>\n<div>&nbsp;</div>\n<div>In 206 BC, Xiang Yu divided the lords and made Liu Bang king of the Han, making himself king of western Chu and establishing his capital at Pengcheng (now Xuzhou, Jiangsu).&nbsp;</div>\n<div>&nbsp;</div>\n<div>Soon after, Tian Rong and Chen Yu raised their troops against Chu in Qi and Zhao, and Liu Bang took the opportunity to pacify the three <strong>Qin dynasties</strong> and advance into western Chu. Although Xiang Yu was victorious at the beginning of the war, the military situation became increasingly unfavorable due to the division of the lords and internal conflicts, as well as poor strategic decisions, and he was finally besieged at Gaixia.</div>\n<div>&nbsp;</div>\n<div>As a representative of the <strong>Chinese military school</strong> of thought, Xiang Yu was a warrior general known for his superior strength. Li Wanfang commented that \"Yu\'s courage has been unmatched for a thousand years.\"</div>\n[gap]\n\n<h2>5. Cao Cao</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"748\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Cao Cao, Wu <strong>emperor of Wei</strong> (155 - March 15, 220), came from Qiao county, Pei state (now Bozhou, Anhui province), with the surname Mengde. He was an outstanding politician, military man, literary scholar, calligrapher and poet in ancient China. He was a powerful minister in the late Eastern Han Dynasty, the son of Cao Song, the son of the first lieutenant and the founder of the Cao Wei Dynasty.</div>\n<div>&nbsp;</div>\n<div>Cao Cao was an alert, <strong>chivalrous</strong> and debauched young man who mastered his craft. At the age of only twenty, he was promoted to the rank of peer and was appointed lieutenant in the northern part of Luoyang. Later, he became a <strong>cavalry captain</strong> and participated in the suppression of the yellow turban army. He moved to Jinan, where he was responsible for eliminating corrupt officials and banning obscene rituals.&nbsp;</div>\n<div>&nbsp;</div>\n<div>When Dong Zhuo took power, he dispersed his family\'s money and raised an <strong>army</strong> to fight against him with Yuan Shao and others. In the third year of his reign (192), he was able to divide and defeat Yanzhou\'s yellow turban army of over 300,000 men and select the best of them to form the Qingzhou army.&nbsp;</div>\n<div>&nbsp;</div>\n<div>In the first year of Jian\'an (196), he hosted the Xian emperor in Xu (east of Xuchang, Henan province), where he became secretary general and took charge of the <strong>imperial</strong> administration. In the fifth year of Jian\'an (200), he defeated the main forces of Yuan Shao in the battle of Guandu, and eliminated Yuan Shang and Yuan Tan in succession.</div>\n<div>&nbsp;</div>\n<div>In the twelfth year of Jian\'an (207), he defeated Wuhuan and unified the north. The following year, he was promoted to prime minister, attacked Jingzhou and fought the battle of the Red Cliff with Sun Quan and Liu Bei, but was defeated. In the 18th year of Jian\'an (213), he was crowned Duke of Wei. In the 20th year of Jian\'an (215), he conquered Zhang Lu and took Hanzhong. The following year, he was crowned king of Wei.&nbsp;</div>\n<div>&nbsp;</div>\n<div>Finally, in 220, he died in Luoyang at the age of sixty-six. After his son Cao Pi became emperor on behalf of the Han, he was posthumously honored as emperor Taizu Wu and was buried in Gao Ling.</div>\n<div>&nbsp;</div>\n<div>Cao Cao was gifted in poetry and literature, knew the art of war, and created the Jian\'an style of writing. He is the author of many poems and essays. He also wrote a commentary on Sun Tzu, which has been transmitted to the world. His poems and writings were collected in a manuscript, Cao Cao ji (Complete Works of Cao Cao). He also excelled in calligraphy, and Zhang Huaiguan of the Tang Dynasty called him \"a wonderful masterpiece.</div>\n[gap]\n\n<h2>The place of these warriors in the life of the Chinese</h2>\n[gap]\n\n<div>As we have just seen, these 5 Chinese warriors have, in their own way, moved the Chinese world forward. Whether it is Sun Tzu who wrote the \"Art of War\" or Qin Shi Huang who ordered the construction of the Great Wall, all these <strong>legendary men</strong> have left their mark on the modern world.</div>\n<div>&nbsp;</div>\n<div>They are considered today as inspiring people, so that they can be found in many works such as books or movies. There are also very famous video games like <strong>Dynasty Warriors</strong> featuring some of these men during the War of the Three Kingdoms.</div>\n<div>&nbsp;</div>\n<div>We can also easily find in China the graves of these men, allowing us to discover beautiful <strong>Chinese cities</strong> waiting for your visit.</div>\n[gap]\n\n[featured_products]\n\n\n<!-- /wp:flatsome/uxbuilder -->\";s:10:\"post_title\";s:28:\"5 Legendary Chinese Warriors\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:28:\"5-legendary-chinese-warriors\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2023-03-11 19:22:34\";s:17:\"post_modified_gmt\";s:19:\"2023-03-12 01:22:34\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:28:\"https://teng-shop.com/?p=731\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:4;O:7:\"WP_Post\":24:{s:2:\"ID\";i:760;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-12-18 19:42:55\";s:13:\"post_date_gmt\";s:19:\"2022-12-19 01:42:55\";s:12:\"post_content\";s:13112:\"<!-- wp:flatsome/uxbuilder -->\n<div>Are you wondering what <strong>Hanfu</strong> is? Is it worn by men or women? Is it still worn today?</div>\n<div>&nbsp;</div>\n<div>Passionate about <strong>Chinese culture</strong> and traditional fashion, we will bring you the answer as precisely as possible.</div>\n<div>&nbsp;</div>\n<div><strong>The Hanfu is a traditional Chinese garment. It has been worn for more than 3000 years and has received some modifications through the dynasties. Forgotten for many decades, the Hanfu has come back in fashion and is now a symbol of China.</strong></div>\n<div>&nbsp;</div>\n<div>In this article, you will discover:</div>\n<ul>\n<li>What is the Hanfu</li>\n<li>When and how to wear it</li>\n<li>Is it still a worn and appreciated garment</li>\n</ul>\n<div>After reading this article, you will know exactly why this traditional garment is so important in <strong>China</strong>.</div>\n<div>&nbsp;</div>\n<div>Without further ado, let\'s get started.</div>\n[gap]\n\n<h2>The Hanfu, a traditional Chinese garment</h2>\n[gap height=\"50px\"]\n\n[ux_image id=\"804\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Hanfu 汉服 literally means \"clothing of the Han people\".&nbsp; It is the traditional clothing <strong>originally worn by the Han Chinese</strong>, the majority ethnic group in China.</div>\n<div>&nbsp;</div>\n<div>Hanfu is a traditional Chinese garment of very ancient origin. It would have more than 3000 years of history! It would even have been worn by the Yellow Emperor himself, a great civilizing sovereign considered even today as the father of China.</div>\n<div>&nbsp;</div>\n<div>The origin of this <strong>garment</strong> dates back to the Shang dynasty (1570 to 1045 BC). The Hanfu is composed as follows:</div>\n<ul>\n<li>the Yi 衣, a tunic with narrow sleeves, reaching down to the knees and fastened with a belt</li>\n<li>the Chang裳, a pleated skirt reaching the ankles</li>\n<li>the Bixi蔽膝, a piece of cloth covering the thighs, worn above the skirt.</li>\n</ul>\n<div>During the Zhou Dynasty (770 to 256 BC), the social status of the garment became highly codified and not everyone could wear Hanfu in the same way.</div>\n[gap]\n\n[gap height=\"50px\"]\n\n[ux_image id=\"834\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>According to the regulations, it was necessary to pay attention to the length of the <strong>skirt</strong> and the tunic, the width of the sleeves, the ornaments put on the dress... During this dynasty, the Hanfu changes slightly by becoming wider at the level of the sleeves and more decorated (hanging jade stones on the belt was very appreciated for example).</div>\n<div>&nbsp;</div>\n<div>Hanfu became a method of <strong>distinguishing social classes</strong>. The higher a person was placed, the more his Hanfu was decorated. In addition, there were also differences in the size of the sleeves, the length of the skirt or the fastening of the dress.</div>\n<div>&nbsp;</div>\n<div>The Zhou Dynasty invented the <a href=\"https://www.chinahighlights.com/travelguide/traditional-chinese-clothes.htm#:~:text=The%20Hanfu%2C%20Zhongshan%20suit%20(Mao,types%20of%20traditional%20Chinese%20clothing.\">Shengyi</a> 深衣, or \"deep garment\". It was actually a short tunic and skirt sewn together. This new garment could be worn by a man as well as a woman.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"808\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>As the technology was more modern, we saw on the <strong>Shengyi</strong> and Hanfu beautiful and complex patterns.</div>\n<div>&nbsp;</div>\n<div>With time and the different dynasties that followed, the Hanfu developed and became even more complex. For example, we find:</div>\n<ul>\n<li>The Yi衣, a short garment with a cross neck. Worn by both sexes</li>\n<li>The Pao袍, long dress or tunic closing sideways worn only by men</li>\n<li>The Ru襦, open shirt with a cross neck</li>\n<li>The Shan衫, open cross-necked jacket or jacket worn over the Yi</li>\n<li>The Chang裳, a new type of skirt worn by both men and women</li>\n<li>The Ku褲, a type of wide pants worn mostly by men</li>\n</ul>\n<div><strong>Hanfu is worn by almost all Chinese people for centuries</strong>. Court people, scholars, students, workers, all had a Hanfu adapted to their social class.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"836\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>It is at the beginning of the Qing dynasty (1644-1911) that the Hanfu disappears little by little. This dynasty, compared to all the others, was not founded by Han <strong>Chinese</strong>, who formed the majority of the Chinese population at that time, but by Manchu Chinese.</div>\n<div>&nbsp;</div>\n<div>The Manchus were a semi-nomadic people who made themselves known in Manchuria. Having taken power in China, they naturally brought back their own traditional clothes. Among them is for example the very famous <strong>Chinese dress QiPao</strong>, which will soon replace the Hanfu for women.</div>\n<div>&nbsp;</div>\n<div>The Qipao and the Hanfu have thus linked but very different histories. The <strong>Qipao</strong> are nowadays much more popular than the Hanfu, because the modern versions are much easier to wear in everyday life than the Hanfu which remains a rather imposing and complex garment. If you are interested in Qipao, a link to our collection can be found in the image below.</div>\n[gap height=\"50px\"]\n\n[ux_products cat=\"47\" products=\"4\"]\n\n[gap height=\"50px\"]\n\n<h2>When and how to wear Hanfu</h2>\n<p>Hanfu is a sophisticated and prestigious garment. It is obvious that nowadays, one does not go to work in Hanfu for example. However, there are many occasions to wear this beautiful garment.</p>\n[gap]\n\n<h3>When to wear Hanfu</h3>\n<p>For traditional celebrations, it is not surprising to wear a Hanfu. It shows respect for <strong>Chinese culture</strong> and puts you in the shoes of the Chinese of the time during the festivities. This obviously includes <a href=\"https://www.cchatty.com/Chinese-Traditional-Marriage-Culture-g-100013\">Chinese weddings</a>.</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"812\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>It is also possible to wear the Hanfu for historical commemorations or for a coming of age ceremony, an ancient tradition that some Chinese people are trying to revive.</div>\n<div>&nbsp;</div>\n<div>The Hanfu <strong>can be worn for an event</strong>, such as a <strong>school or theatrical performance</strong>. It can also be worn <strong>in the street</strong>.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"814\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<p>Finally, we can mention the Buddhist and Taoist <strong>religious clothes</strong> which are still today Hanfu. The Hanfu worn by believers are obviously very sober, of plain color and rarely with patterns.</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"816\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<p>Since 2010, there is even an <strong>official Hanfu festival</strong>, usually held in Chengdu. This <a href=\"http://en.people.cn/n3/2020/1123/c90000-9786322.html\">Hanfu festival</a> allows to perpetuate the tradition and to allow the participants to learn more about this mythical garment. Although Chinese people learn about Hanfu in school, it is especially during this kind of event that we learn interesting things.</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"818\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h3>How to wear Hanfu</h3>\n<div>Hanfu is a garment that is simpler to wear than you might think. It is as simple to dress in Hanfu as it is to dress in a <strong>modern garment</strong>. In summer, for example, Chinese women like to wear a Qixiong Ruqun齐胸襦裙, which is a <strong>simple dress</strong> with a belt above the chest.</div>\n<div>&nbsp;</div>\n<div>In winter, Qiyao-Ruqun齐腰襦裙 dresses from the Wei and Jin dynasties or Ma Mian Qun马面裙 dresses are going to be preferred. They are usually composed of more layers than other dresses, and keep warmer. They are more complex to put on.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"820\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<p>For men, the Hanfu is also very simple to wear. Even if the very traditional versions are a bit more complex, the majority of the Hanfu you will be able to try are very simple to put on: <strong>a simple dress, a jacket and a belt to buckle up</strong>.</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"822\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<p>If you come to China, it is quite normal <strong>to wonder if a non-Chinese person can wear Hanfu</strong>. Even if some rare nationalistic Chinese will have a hard time saying yes, <strong>the vast majority will not take it badly at all</strong> to see a foreigner wearing a Hanfu. As long as it is done with respect for tradition, <strong>it is accepted without any problem</strong>.</p>\n[gap]\n\n<h2>A traditional garment still appreciated by the Chinese</h2>\n<div>Despite the age of this garment, the <strong>Hanfu has been growing in popularity in China</strong> for a few years.</div>\n<div>&nbsp;</div>\n<div><strong>Fashion in China</strong> has really changed a lot in the last years. In the 80\'s and 90\'s, Chinese people used to dress in a very sober way, often in black or grey. Going outside the mold was rather frowned upon so \"everyone\" dressed the same way.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"824\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>With the years, the economic leap of China and the mentalities more and more westernized, the <strong>Chinese fashion</strong> changes very quickly. The Chinese no longer want to \"be like everyone else\" but \"be different\".</div>\n<div>&nbsp;</div>\n<div>We find all styles when we walk in China. We go from adults in sober suits to young people dressed in a much more excessive way. They can very well go from a streetwear outfit to a <strong>traditional outfit</strong>, like the Hanfu.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"826\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div><strong>Hanfu has become fashionable again since the 2000s</strong>. A man named Wag Letian, an energy worker, took to the streets in November 2003 wearing his homemade Hanfu. This is said to be the starting point of the Hanfu revival.</div>\n<div>&nbsp;</div>\n<div>More and more people dared to go out in the street in traditional dress. <strong>The followers of this practice are called TongPao同袍</strong>. They mostly use the internet to share this practice brought back to life.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"828\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>The <strong>TongPao</strong>, passionate about this garment, have deepened their knowledge and share daily a lot of information about Hanfu which allows to gather reliable sources and thus to know more about the traditional Chinese culture.</div>\n<div>&nbsp;</div>\n<div>It is really less and less surprising to see young people walking in town in <strong>traditional dress</strong>. Like princes or princesses, these young Chinese like to do this for respect of traditions, for photo shootings or to be noticed.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"830\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>You don\'t even have to go to China anymore to see them, on social networks like Instagram or even Tik Tok, it\'s pretty easy to find photos or videos of these <strong>Chinese people</strong> dressed in these beautiful traditional outfits.</div>\n<div>&nbsp;</div>\n<div>A very interesting report published by Tmall (a kind of extremely popular Chinese Amazon) released in 2018 tells us that the <strong>number of people buying Hanfu is increasing by 92% per year</strong> on average. Chinese born after 1995 represent 48% of the clientele. The interest in this garment is therefore growing over time.</div>\n<div>&nbsp;</div>\n<div>One might think that this is just a fashion effect, but the inhabitants of the Middle Kingdom seem to be much more attached to the history of their country than we are in Europe. Hanfu is<strong> an inseparable element of Chinese culture</strong>, that\'s why it is and will always be present in the life of the Chinese.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"832\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h2>A garment always in fashion</h2>\n<div>As we have just seen in this article, <strong>the Hanfu is a timeless garment</strong>, which never ceases to adapt to the centuries and the generations that wear it. Another Chinese invention that still seems to have a great future ahead of it.</div>\n<div>&nbsp;</div>\n<div>If the opportunity arises one day, <strong>do not hesitate to try the Hanfu</strong>. Even if today it is mainly used as a \"disguise\", you will be able to put yourself in the shoes of a Chinese during the ancient dynasties and get very nice pictures.</div>\n<div>&nbsp;</div>\n<div>Trying a Hanfu is nice, but having your own is even nicer. At Teng Shop, we offer you <strong>a beautiful collection of Hanfu</strong> directly imported from China. Link on the image below.</div>\n[gap height=\"50px\"]\n\n[ux_products cat=\"48\" products=\"4\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->\";s:10:\"post_title\";s:24:\"The Hanfu : What Is It ?\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:13:\"what-is-hanfu\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2023-03-11 19:16:27\";s:17:\"post_modified_gmt\";s:19:\"2023-03-12 01:16:27\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:28:\"https://teng-shop.com/?p=760\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:5;O:7:\"WP_Post\":24:{s:2:\"ID\";i:840;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-12-19 15:35:30\";s:13:\"post_date_gmt\";s:19:\"2022-12-19 21:35:30\";s:12:\"post_content\";s:19291:\"<!-- wp:flatsome/uxbuilder -->\n<div>What are the must-see monuments in <strong>China</strong>? What is their history? Where are they located?</div>\n<div>&nbsp;</div>\n<div><strong>Between the Great Wall of China and the Temple of Heaven in Beijing, the Bund in Shanghai, the Great Pagoda in Xian and many others, Chinese monuments are numerous and all filled with history and culture.</strong></div>\n<div>&nbsp;</div>\n<div>Passionate about Chinese culture and its monuments in particular, we are going to deliver our personal top of the <strong>must-see Chinese monuments</strong>!</div>\n<div>&nbsp;</div>\n<div>Without further ado, let\'s discover these 11 extraordinary monuments:</div>\n[gap]\n\n<h2>The Great Wall of China, Beijing</h2>\n<div>Address: Great Wall of China, Beijing</div>\n<div>&nbsp;</div>\n<div>Chinese name: 长城</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"981\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Considered as <strong>one of the wonders of the new world</strong>, the Great Wall of China is not only a Chinese attraction but also <strong>one of the most visited monuments in the world</strong>. This popular Chinese monument really needs no introduction. Although the total length of the Great Wall is not easy to discern, the beginning of its construction dates back to the 5th century BC.</div>\n<div>&nbsp;</div>\n<div>Most of the current wall, widely considered the \"<strong>Great Wall</strong>\", was built during the reign of the Qing Dynasty to defend the region from Mongol insurgents. The wall in its entirety is <strong>21196 km long</strong>. The Qing Wall itself is 8850 km long, of which 6259 km is the wall itself, the rest being trenches and natural defenses.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"979\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>This length of wall includes more than <strong>25,000 watchtowers</strong>. Although a significant part of the wall is now in ruins, about 30%, some parts of the wall around Beijing are maintained in excellent condition thanks to many actions taken in the past few decades, mainly because they are a <strong>huge tourist attraction</strong>.</div>\n<div>&nbsp;</div>\n<div>The areas near Beijing that receive the most tourists are <strong>Jinshanling</strong>, a famous hiking trail, and <strong>Mutianyu</strong>, the best preserved section of the wall. There are several tours of the Great Wall, and many sections you can visit according to your preferences.</div>\n[gap]\n\n<h2>Wild Goose Pagoda, Xi\'an</h2>\n<div>Address: Giant Wild Goose Pagoda, Xian</div>\n<div>&nbsp;</div>\n<div>Chinese name: 大雁塔</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"977\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Located in Xi\'an, Shaanxi Province, China, the Wild Goose Pagoda, or Great Wild Goose Pagoda, is a <strong>five-story pagoda</strong> built in the 7th century. The pagoda is located in the Da Ci\'en temple complex. It <strong>was originally built in 652</strong> during the Tang Dynasty, rebuilt again in 704, and renovated during the Ming Dynasty and in the 20th century.</div>\n<div>&nbsp;</div>\n<div>In the monument, there are <strong>sutras and Buddhist figurines</strong>. Built by Emperor Gaozong of the Tang Dynasty (617-907), the Wild Goose Pagoda was built to collect Buddhist works and relics brought from <strong>India by the scholar</strong>, monk, traveler and translator Xuanzang. Xuanzang traveled all over China to collect Buddhist sacred works.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"975\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>He became famous for his 17-year journey to India and the religious sites of what is now Nepal, Pakistan and Bangladesh. He traveled through these countries, collecting Buddhist scriptures and artifacts because he was concerned that the nature of Buddhism that had reached China was neither complete nor correctly interpreted. His journey is the origin of the famous Chinese story \"<strong>Journey to the West</strong>\", which is why many Chinese like to think that the starting point of his journey is in Xi\'an.</div>\n<div>&nbsp;</div>\n<div>This monument is very interesting to visit when you are in Xi\'an, especially since it is surrounded by a large park where it is particularly pleasant to stroll for hours. Many small stores and other services are present as well as nice cafes with a great view on the <strong>pagoda</strong>.</div>\n<div>&nbsp;</div>\n<div>In Xi\'an there is also the very famous Terracotta Army, which is actually the mausoleum of the Qin emperor.</div>\n[gap height=\"50px\"]\n\n[ux_products cat=\"40\" products=\"4\"]\n\n[gap height=\"50px\"]\n\n<h2>Summer Palace, Beijing</h2>\n<div>Address: 19 Xinjiangongmen Rd, Haidian District</div>\n<div>&nbsp;</div>\n<div>Chinese name: 颐和园</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"973\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>The Summer Palace was commissioned by the Qianlong Emperor of the Qing Dynasty in 1750. The first summer palace was called Qingyi Yuan or \"<strong>the garden of clear ripples</strong>\".</div>\n<div>&nbsp;</div>\n<div>However, this first summer palace was destroyed by the Franco-British allied forces in 1860 and was rebuilt in 1896. It was destroyed again in 1900 and rebuilt in 1912 to mark the last acts of the Qing Dynasty. In 1924, it was officially opened to the public as a <strong>tourist attraction</strong>.</div>\n<div>&nbsp;</div>\n<div>The Summer Palace is widely known as the largest existing imperial garden in China. In 1998, <strong>UNESCO</strong> added this complex to the World Heritage List. Covering an area of over 300 hectares, it is one of the largest and most captivating <strong>landscape gardens</strong> not only in China but also in the world.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"970\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>The complex combines man-made architecture of pavilions, palaces, temples and bridges with beautiful natural landscapes of hills and open water. The Summer Palace is located in<strong> the northwest of Beijing</strong> and is considered the best preserved imperial garden in the world. It is only a short drive from the center of Beijing, so it is quite easy to reach.</div>\n<div>&nbsp;</div>\n<div><strong>Tourists</strong> can enjoy a <strong>variety of activities</strong> in the Summer Palace complex, from walking on the famous Long Corridor, to boating on Kunming Lake, to watching traditional performances in the ancient theater. The Summer Palace was designed to achieve harmony with nature. It harmonizes plants and architectural paths, water and earth, and emphasizes the philosophy of Chinese garden landscapes in general.</div>\n[gap]\n\n<h2>Hanging Temple, Datong</h2>\n<div>Address: Xian of Hunyuan, Datong</div>\n<div>&nbsp;</div>\n<div>Chinese name: 悬空寺</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"968\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>The Xuankongsi Hanging Temple, located about <strong>60 kilometers southeast of Datong</strong>, China, in Shanxi Province, is <strong>one of the forgotten wonders of the world</strong>. Apparently defying gravity, it hangs on a rock of the Hengshan Mountain and comprises 40 rooms connected by a dizzying maze of passages. This ancient <strong>Chinese monument</strong> is said to have been built by a monk named Liao Ran at the end of the Northern Wei dynasty (386-534) and restored in 1900.</div>\n<div>&nbsp;</div>\n<div>It was built by drilling holes in the side of the cliff in which the posts that support the temples are fixed. It is interesting to note that the <strong>temple</strong> is dedicated to the three religions: Confucianism, Taoism and Buddhism, and not to a single religion. All three religions are practiced in the temple and represented by 78 statues and sculptures throughout the temple. This combination of factors makes the Hanging Temple one of the most interesting religious and historical sites in the <strong>Middle Kingdom</strong>.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"966\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h2>Forbidden City, Beijing</h2>\n<div>Address: 4 Jingshan Front St, Dongcheng</div>\n<div>&nbsp;</div>\n<div>Chinese name : 紫禁城</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"964\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>The Forbidden City served as the palace of the Emperor of China for 500 years, from 1420 to 1912, and spans <strong>a vast complex of 13 hectares</strong>. Glorifying ancient Chinese architecture, this sprawling complex contains <strong>980 buildings</strong>. It is recognized as a UNESCO monument in China. This monument is named as such because it was forbidden to enter the complex without the permission of the emperor.</div>\n<div>&nbsp;</div>\n<div>Today, the <strong>Forbidden City houses</strong> <a href=\"https://en.dpm.org.cn/\">the Palace Museum</a>. It is divided into two parts: the outer courtyard, to the south, where the emperor exercised his authority over his subjects, and the inner courtyard, to the north, which was his residence. The whole complex, with its amazing architecture and buildings, is one of <strong>the main attractions in China</strong>.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"962\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div><strong>With over a million collectibles</strong> in bronze, ceramics, paintings, jade and wear and tear, the Palace Museum\'s collections are incredibly vast. You will start your visit at the Meridian Gate and exit either through the Divine Prowess Gate or the Eastern Prosperity Gate.</div>\n<div>&nbsp;</div>\n<div>This complex is obviously a must do when visiting <strong>Beijing</strong>, especially when you know that it is <strong>located in the center of the city</strong>. The monument is very large, so plan a good morning or afternoon to fully enjoy it. Do not hesitate to come with a guide so that he can explain all the secrets and details of the construction. Many guides are present on the spot but I advise you all the same to take it in advance to avoid the scams.</div>\n[gap height=\"50px\"]\n\n[ux_products cat=\"43\" products=\"4\"]\n\n[gap height=\"50px\"]\n\n<h2>Kaifeng</h2>\n<div>Address: Kaifeng, Henan, China</div>\n<div>&nbsp;</div>\n<div>Chinese name: 开封</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"960\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Kaifeng was the most important metropolis not only in China but in the world at the peak of its glory. It is famous for being <strong>one of the most important ancient capitals</strong> in China. Kaifeng is located about <strong>72 km from Zhengzhou</strong>, in the east of Henan Province, covering an area of 6,444 km². It is located just south of the Yellow River, facing the Huanghuai Plain to the south. There are many attractions to explore in Kaifeng, including :</div>\n<div>&nbsp;</div>\n<div>In this city, there are not one but several monuments you can discover:</div>\n<ul>\n<li><strong>Kaifeng Iron Tower</strong>, a 13-story, 56-meter tower, which is known as the world\'s first iron tower (built in 1049).</li>\n<li><strong>Qingming River Scenery Garden</strong>, a large garden from the Northern Song Dynasty (960-1127).</li>\n<li><strong>Xiangguo Grand Temple</strong>, a Buddhist temple from the Northern Qi Dynasty (550-577).</li>\n</ul>\n[gap height=\"50px\"]\n\n[ux_image id=\"958\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Kaifeng is also famous for its <strong>chrysanthemums</strong>, and the chrysanthemum fair is famous since the 900s. The chrysanthemum flower fair is still held every year in October/November and features thousands of different types of chrysanthemums.</div>\n<div>&nbsp;</div>\n<div>The city is also <strong>the birthplace of Chinese calligraphy</strong> and Henan opera, home to four famous calligraphy schools.</div>\n[gap]\n\n<h2>10,000 Buddhas Monastery, Hong Kong</h2>\n<div>Address: 220, Pai Tau Village Sha Tin</div>\n<div>&nbsp;</div>\n<div>Chinese name : 萬佛寺</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"956\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>The Ten Thousand Buddhas Monastery, located on Po Fook Hill in Pai Tau Village, Sha Tin, New Territories, is one of <strong>the most famous Buddhist temples in Hong Kong</strong> and one of the most popular tourist attractions. The temple was founded in 1949 by Reverend Yuet Kai and completed in 1957. The monastery is not residential and is run by lay people.</div>\n<div>&nbsp;</div>\n<div>The <strong>monastery</strong> was extensively decorated in 1968, some of the pavilions were rebuilt and all the statues were painted or covered with pure gold. The monastery is built on two levels on a hillside, on a <strong>bamboo forest</strong> overlooking Sha Tin, and occupies an area of over eight hectares. It has five temples, four pavilions, a veranda and a pagoda. It is reached by a steep concrete path of 431 steps.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"954\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<p>There are many beautiful temples in <strong>Hong Kong</strong>, but this one is particularly original thanks to its <strong>12800 Buddha statues</strong>. This temple could well offer you a stroll that you will keep forever in your memory.</p>\n[gap]\n\n<h2>Great Buddha of Tian Tan</h2>\n<div>Address: Ngong Ping, Lantau Island, Hong Kong</div>\n<div>&nbsp;</div>\n<div>Chinese name: 天壇大佛</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"952\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>To stay in the vicinity of Hong Kong, you will find another monument that is clearly worth a visit: <strong>the great Buddha of Tian Tan</strong>. This one is located on Lantau Island, dominating the Ngong Ping hill.</div>\n<div>&nbsp;</div>\n<div>This <strong>34 meters high statue</strong> is made from <strong>250 tons of bronze</strong>. It was <strong>built between 1990 and 1993</strong> and stands on a lotus-shaped pedestal. This work of art represents China\'s pride in its Buddhist tradition.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"950\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<p>As this statue is near <strong>Po Lin monastery</strong>, you will have something to occupy a good part of your day with a zen and relaxing atmosphere.</p>\n[gap]\n\n<h2>White Horse Temple</h2>\n<div>Address: No. 6, Luoyang Road, Luolong District, Luoyang</div>\n<div>&nbsp;</div>\n<div>Chinese name: 白马寺</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"948\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>This temple is one of the most important in Asia as it is said to be <strong>the oldest temple in China</strong>. Built in the year 68, this temple built near Luoyang has its own rich history.</div>\n<div>&nbsp;</div>\n<div>According to <a href=\"http://en.chinaculture.org/library/2008-02/15/content_34384.htm\">the most popular legend</a>, two Indian monks, Kasyapamatanga and Dharmaratna, arrived in Luoyang with <strong>white horses</strong>. They carried with them many Buddhist statues and scriptures. They would be the ones who translated the Buddhist Sutras into Chinese for the first time. <strong>The first Buddhist temple in China</strong> and <strong>the first Chinese Buddhist scriptures</strong> were born.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"946\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<p>The temple is obviously composed of many rooms filled with ancient statues and other Buddhist relics. There are also beautiful gardens in the temple made up of multitudes of small foreign temples (Indian, Thai, Burmese...) and especially <strong>the oldest pagoda in China</strong>.</p>\n[gap]\n\n<h2>Potala Palace</h2>\n<div>Address: 35 Central Beijing Road, Lhasa, Tibet, China</div>\n<div>&nbsp;</div>\n<div>Chinese name: 布达拉宫</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"944\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>The <strong>Potala Palace</strong> is <strong>a huge religious and administrative complex located in Lhasa</strong>, in the south of the Tibet Autonomous Region. The monument is located at the top of Mar-po-ri (Red Mountain), 130 meters above the Lhasa River valley, and rises dramatically from its rocky base.</div>\n<div>&nbsp;</div>\n<div>The Potrang Karpo, or White Palace, <strong>was once the seat of the Tibetan government and the main residence of the Dalai Lama</strong>. From the middle of the 18th century, it was used as a winter palace. The Potrang Marpo, or Red Palace, houses several chapels, sacred statues and the tombs of eight Dalai Lamas and remains an important place of pilgrimage for <strong>Tibetan Buddhists</strong>.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"942\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>Among the more than 1,000 rooms of the Potala, the most sacred are the Chogyal Drubphuk and the Phakpa Lhakhang, the remains of the original palace of Srong-brtsan-sgam-po. The latter houses a sacred statue named Arya Lokeshvara. In the sacred complex, you will find <strong>more than 200,000 statues and 10,000 altars</strong>.</div>\n<div>&nbsp;</div>\n<div>Its value has been recognized by the China Cultural Relics Commission, and the palace was spared during the Cultural Revolution. The Potala <strong>was designated a UNESCO World Heritage Site</strong> in 1994.</div>\n[gap]\n\n<h2>The Bund, Shanghai</h2>\n<div>Address: Zhongshan East 1st Rd, Wai Tan, Huangpu, Shanghai</div>\n<div>&nbsp;</div>\n<div>Chinese name: 外灘</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"940\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<p>It is impossible to visit Shanghai without passing by <strong>the famous Bund</strong>. The name bund in Chinese means \"the bank of foreigners. This is mainly due to the fact that all along the Bund you will find beautiful European style buildings as well as banks and <strong>other colonial buildings</strong> dating from the 1930s. Today, many of these buildings are embassies.</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"938\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<p>All the interest of the <a href=\"https://www.travelchinaguide.com/attraction/shanghai/bund.htm\">bund</a> is not in the old foreign concession buildings along the shore, but in <strong>the view it offers on the new business district</strong> of Lujiazui. By day and by night, you can admire the Oriental Pearl, the Shanghai Tower, the Jin Mao Tower, the <strong>Shanghai</strong> World Financial Center and the Shanghai IFC Towers</p>\n[gap]\n\n<h2>China and its countless monuments</h2>\n<p>We have just presented the 8 Chinese monuments that we find inescapable, but there are actually many others!</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"936\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>The Temple of Heaven and the Bird\'s Nest in Beijing, the walls of Xian, Tiananmen Square, the Yonghe Lamasery, the Jade Buddha <strong>Temple in Shanghai</strong> or the Crescent Moon Oasis in DunHaung are as exciting as the monuments mentioned above.</div>\n<div>&nbsp;</div>\n<div>China has many monuments, ancient and modern. It\'s up to you if you prefer to travel in a modern or <strong>traditional China</strong>, even if we obviously advise you a mix of both!</div>\n<div>&nbsp;</div>\n<div>If you are interested in <strong>Chinese culture</strong>, you will find many products related to the Chinese world in our store, the link is on the image below!</div>\n[gap height=\"50px\"]\n\n[ux_products cat=\"39\" products=\"4\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->\";s:10:\"post_title\";s:29:\"11 Must-see Chinese Monuments\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:29:\"11-must-see-chinese-monuments\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2023-03-11 19:13:39\";s:17:\"post_modified_gmt\";s:19:\"2023-03-12 01:13:39\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:28:\"https://teng-shop.com/?p=840\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:6;O:7:\"WP_Post\":24:{s:2:\"ID\";i:985;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-12-19 16:46:53\";s:13:\"post_date_gmt\";s:19:\"2022-12-19 22:46:53\";s:12:\"post_content\";s:7995:\"<!-- wp:flatsome/uxbuilder -->\n<p>For thousands of years, <strong>Chinese chopsticks</strong> have been the utensil of choice in China and other East Asian countries because of their simplicity and versatility.</p>\n<p>However, in the rest of the world few people are able to handle them with dexterity.</p>\n<p>If you are used to using a <strong>fork</strong> and knife to handle your food, you may have a hard time getting used to <strong>chopsticks</strong> at first, but once you understand how to hold them, it will be much easier to master the mechanics!</p>\n<p>We explain everything in this article!</p>\n[gap]\n\n<h2>Correct positioning of the chopsticks</h2>\n[gap]\n\n<h3>Step 1: Grab the first stick</h3>\n<div>On a standard table, your chopsticks will be placed <strong>side by side in front of you</strong>, horizontally.</div>\n<div>&nbsp;</div>\n<div>It is usually easier to pick up your chopsticks using your first 2 or 3 fingers and your thumb.</div>\n<div>&nbsp;</div>\n<div>Make sure that the chopsticks <strong>do not clatter loudly</strong> when you pick them up. This could be considered rude in quiet restaurants and more formal settings.</div>\n<div>&nbsp;</div>\n<div>Use your dominant hand loosely. People who squeeze their chopsticks usually end up throwing their food around.</div>\n<div>&nbsp;</div>\n<div>Grab the first chopstick and place it in the hollow <strong>between your index finger and thumb</strong>. Balance it on your <strong>ring finger</strong>.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"1018\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h3>Step 2: Grab the second stick and adjust them</h3>\n<div>Place the second chopstick in the hollow between your index finger and thumb, <strong>just like the first chopstick</strong>, but place it on your middle finger instead of your ring finger.</div>\n<div>&nbsp;</div>\n<div>Make sure the narrow ends of the chopsticks <strong>are even with each other</strong> so they don\'t cross or \"pinch\" the food.</div>\n<div>&nbsp;</div>\n<div><strong>To even them out</strong>, you can touch them to the table. Uneven chopsticks will be very difficult to use.</div>\n<div>&nbsp;</div>\n<div>Use your thumb, forefinger and middle finger to grip the second chopstick <strong>a little more firmly</strong>.</div>\n[gap height=\"50px\"]\n\n[ux_image id=\"1016\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h3>Step 3: The wand mechanism</h3>\n<p>Now practice <strong>opening and closing the chopsticks</strong>. Make sure the wide ends of the chopsticks do not form an \"X\" as this will make it difficult to pick up food.</p>\n<p>If only the second chopstick is moving, well done! You are on the right track.<br>If it helps, move your hand up and down on the chopsticks, but <strong>keep the same position</strong>, experimenting with grip levels.</p>\n<p>Some find it easier to maneuver closer to the base, others higher.</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"1014\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<h3>Step 4: Start grabbing food</h3>\n<p><strong>Start grabbing food</strong>! For now, tilting the chopsticks 45 degrees may be easiest. Once the food is stable, lift it up. If it seems unstable, put it down and try again.</p>\n<p>Once you have mastered one type of food, move on to different sizes and textures. When you start to feel really confident, <strong>practice with noodles</strong>!</p>\n[gap height=\"50px\"]\n\n[ux_image id=\"1012\" image_size=\"original\"]\n\n[gap height=\"50px\"]\n\n<div>But <strong>to handle chopsticks</strong> properly, the first thing you really need to do is to get <strong>a proper</strong> pair of Chinese Chopsticks!</div>\n<div>&nbsp;</div>\n<div>In our Teng Shop, we offer<strong> a complete collection</strong> of chopsticks that can be used over and over again, ranging from <strong>varnished wooden</strong> chopsticks to very sophisticated <strong>stainless steel</strong> versions, some of which are decorated with elegant patterns, and <strong>learning chopsticks</strong>, which are ideal for children and adults who don\'t want to be bothered.</div>\n<div>&nbsp;</div>\n<div><strong>Will you be tempted by one of these?</strong></div>\n[gap height=\"50px\"]\n\n[featured_products]\n\n[gap height=\"50px\"]\n\n<h2>Different rules when using chopsticks</h2>\n<p>Chopsticks are <strong>symbolically and culturally important to China</strong> and other neighboring Asian countries. Like everywhere else in the world, the Chinese are strict about how you use chopsticks.</p>\n<p>A wrong use of their favorite utensil could offend them, which you obviously do not want. We therefore propose a list of <strong>8 basic rules</strong> that you must follow in China and elsewhere:</p>\n[gap]\n\n<h3>1 - When sharing food</h3>\n<div>Often, being at Asian tables (whether at home or in a restaurant), means <strong>sharing large plates of food</strong>. It\'s not appropriate to dive into the communal meal with chopsticks you\'ve just used.</div>\n<div>&nbsp;</div>\n<div><strong>You have two options:</strong></div>\n<ul>\n<li>Use a pair of <strong>public chopsticks</strong> that never touch your plate (or anyone else\'s)</li>\n<li>Choose <strong>with the other</strong> (non-eating) end of your chopsticks. This is the big end that hopefully you don\'t chew!</li>\n</ul>\n[gap]\n\n<h3>2 - Do not use your chopsticks to serve yourself</h3>\n<p>To serve food. If someone invites you for lunch or dinner, <strong>use your hands</strong> to pass the serving bowls instead of using your chopsticks. Never receive food <strong>with your chopsticks</strong> because it reminds the Chinese of a funeral rite they practice where the cremated bones of a loved one are passed behind family members with chopsticks.</p>\n[gap]\n\n<h3>3 - Don\'t prick the food</h3>\n<p>Don\'t poke your food <strong>with the ends</strong> of your chopsticks. If all else fails, this may seem like a good alternative, but it\'s considered rude.</p>\n[gap]\n\n<h3>4 - Never stick chopsticks in your food</h3>\n<p>Never put your chopsticks <strong>directly into a bowl of rice</strong>. This may seem like a harmless way to make them stay in place, but it is a cardinal sin in chopstick use. The position is similar to the incense sticks that the Chinese stick in rice to honor their dead.</p>\n[gap]\n\n<h3>5 - Do not cross your chopsticks</h3>\n<p>Do not cross your chopsticks. If you are done eating, put them <strong>on the side of your plate</strong> on the left.</p>\n<p><strong>Do not point your chopsticks at people</strong>. Pointing, in general, is a no-no in Asian cultures and the same is true with chopsticks.</p>\n[gap]\n\n<h3>6 - Keeping chopsticks together</h3>\n<p><strong>When placing the chopsticks</strong>, keep them on the side of your bowl or plate in their designated area. You will get a small block to rest them on, but if not, you should place the chopsticks with the ends meeting. <strong>Never keep them crossed on the plate</strong> as this is a sign of denial, meaning you don\'t like the host and are denying their kindness.</p>\n[gap]\n\n<h3>7 - Don\'t play with your sticks</h3>\n<p>Don\'t use them to drum, tap, spin or bang the chopsticks together. When you drum your plate with the chopsticks, it is associated with the act of begging.</p>\n[gap]\n\n<h3>8 - Always tilt your chopsticks</h3>\n<p>When you put the chopsticks down, make sure they never point directly at the person sitting across from you. This is considered a rude gesture, <strong>so tilt them slightly</strong>.</p>\n[gap]\n\n<h3>9 - When you eat rice</h3>\n<p>When you eat rice, <strong>be prepared to dig in</strong>. If a bowl of rice is placed in front of you and you only have two small bamboo poles, you may feel like you are in a stream without a paddle.</p>\n<p>But it\'s perfectly acceptable (pretty normal) <strong>to lift the rice bowl near your mouth</strong> and eat from there. You won\'t look silly, you\'ll look seasoned!</p>\n<p>Don\'t stick your bowl to your mouth either, but lift it close to you to keep the rice grains from accumulating around your dining area.</p>\n<!-- /wp:flatsome/uxbuilder -->\";s:10:\"post_title\";s:31:\"How to Hold Chinese Chopsticks?\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:30:\"how-to-hold-chinese-chopsticks\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2023-03-11 19:09:27\";s:17:\"post_modified_gmt\";s:19:\"2023-03-12 01:09:27\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:28:\"https://teng-shop.com/?p=985\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:7;O:7:\"WP_Post\":24:{s:2:\"ID\";i:1022;s:11:\"post_author\";s:1:\"5\";s:9:\"post_date\";s:19:\"2022-12-19 18:54:18\";s:13:\"post_date_gmt\";s:19:\"2022-12-20 00:54:18\";s:12:\"post_content\";s:7226:\"<!-- wp:flatsome/uxbuilder -->\n<div>Food culture is deeply rooted in China\'s history. As a visitor or guest in a Chinese home or restaurant, you will find that <strong>table manners</strong> are essential and that courtesy will invariably contribute to your enjoyment of the meal and your good mood!</div>\n<div>&nbsp;</div>\n<div>It is truly an admirable custom to <strong>respect others at the table</strong>, including the elderly, teachers and guests, while taking good care of children.</div>\n<div>&nbsp;</div>\n<div>The Chinese always insist on filial piety. The practice of <strong>presenting the best dishes</strong> to the oldest family members first has been observed for countless generations. <strong>In ancient times</strong>, the common people led a poor life, but they still did their best to support the elder mother or father, who took it for granted.</div>\n<div>&nbsp;</div>\n<div>Although the hosts in China are all friendly and hospitable, you <strong>should also show them respect</strong>. Before you start eating, the host may say a few words of welcome to you. Guests should not start eating until the host says, \"Enjoy your meal\" or something like that, otherwise it suggests disrespect and causes displeasure.</div>\n<div>&nbsp;</div>\n<div>When the hosts arrange the dishes on the table, they <strong>place the main dishes in the center</strong> and the side dishes around them. When the main dishes are <strong>prepared in a decorative form</strong>, either by cutting or by other means, they will be placed in front of the main guests and the elderly at the table.</div>\n<div>&nbsp;</div>\n<div>Now, let\'s move on to the different traditional Chinese cuisines.&nbsp;Discover it now!</div>\n[gap height=\"50px\"]\n\n[ux_products cat=\"36\" products=\"4\"]\n\n[gap height=\"50px\"]\n\n<h2>The best traditional cuisines of China</h2>\n<div><strong>Chinese cuisine</strong> is rich and diverse, varying in style and taste from region to region. Its history goes back thousands of years, evolving over time according to changes in the environment (such as climate) and local preferences. Chinese cuisine also varies by social class and ethnicity, and is often influenced by the cuisines of other <